Finding leaders who already know how to run a global sourcing program, not just read about one.
Supply Chain
Recruiting for supply chain and engineering leadership is different from general recruiting — and our Supply Chain Executive Search process reflects that: the candidate pool is smaller, the technical bar is higher, and a bad hire costs more than a filled seat. We run these searches the way we run sourcing programs: qualify hard, verify everything, and manage the process end to end.
Roles we typically support: VP/Director of Supply Chain, Procurement leadership, Manufacturing/Plant Engineering leadership, Quality leadership, and senior sourcing or commodity management positions.
These searches run through our sister company, Elite Leadership Search, where working executives not recruiters reading resumes pre-interview every candidate before they ever reach a client. We’re not just a pretty face.
How it works
Confidential role & requirements scoping
Targeted search across our industry network
Technical + cultural fit screening
Reference and background verification
Roles We Fill
Supply Chain & Engineering Leadership Roles
Every role Elite Leadership Search fills sits at the intersection of technical depth and organizational leadership. These are not general management positions, they require functional expertise that generalist recruiters cannot evaluate. Here is what we search for, and why each function matters.
C-Suite / VP Level
VP / Director of Supply Chain
End-to-end supply chain strategy, global sourcing oversight, 3PL and logistics management, S&OP leadership, and board-level reporting. Candidates must have managed multi-country supply chains not just domestic operations. ICT Manufacturing’s executive team pre-interviews candidates on total landed cost methodology, tariff risk management, and supplier qualification frameworks.
Director / VP Level
Procurement & Purchasing Leadership
Strategic sourcing, supplier development, category management, commodity strategy, and APQP/PPAP program oversight. Candidates are evaluated on spend under management, documented cost savings, supplier rationalization experience, and methodology, TPS/Lean Six Sigma credentials are weighted. Bad procurement leaders cost more than their salary every year in recoverable spend.
Plant Manager / VP Level
Manufacturing & Plant Engineering Leadership
Production operations, process engineering, capital equipment planning, lean transformation, and plant P&L. Candidates must demonstrate measurable operational improvement, not just managed steady-state. We look for leaders who have run kaizen programs, reduced scrap rates, and improved OEE in comparable manufacturing environments.
Director / Manager Level
Quality Leadership
APQP/PPAP program management, supplier quality engineering, customer quality, corrective action (CAR/8D) management, and QMS leadership (IATF 16949, ISO 9001, ISO 13485). Candidates are evaluated on PPM performance, first-pass yield improvement, and supplier development record not just certification ownership.
Executive Search — FAQ
Common Questions About Supply Chain Executive Search
Why is supply chain executive search different from general executive search?
Supply chain and engineering executive search requires functional expertise that general recruiters don’t have. Evaluating a VP of Supply Chain candidate requires understanding APQP/PPAP, total landed cost modeling, multi-country supplier qualification, TPS/Lean methodology, and what “managed $400M in spend” actually means versus what it says on a resume.
What roles does Elite Leadership Search fill?
Elite Leadership Search fills: VP / Director of Supply Chain (end-to-end supply chain strategy and global sourcing oversight), Procurement Director / VP of Purchasing (strategic sourcing, commodity management, APQP/PPAP oversight), Plant Manager / VP of Manufacturing Engineering (production operations, lean transformation, plant P&L), Director / VP of Quality (IATF 16949, ISO 13485, APQP/PPAP, supplier quality), and Senior Sourcing / Commodity Management.
How does Elite Leadership Search screen supply chain candidates technically?
Every candidate is pre-interviewed by a working executive with direct experience in the role function not an HR generalist. For procurement and supply chain candidates, the technical interview covers: methodology fluency (TPS/Lean, DMAIC, APQP/PPAP applied, not just certified), documented savings (actual dollar amount, spend base, timeline, and method), supplier management depth.
How is Elite Leadership Search related to ICT Manufacturing?
Elite Leadership Search is the sister company of ICT Manufacturing (formerly Indiana Trade & Consulting / ICT). Both companies sit under the same holding company, The Weathered Moose LLC. Elite Leadership Search works alongside ICT Manufacturing’s consulting practice to place procurement, operations, and engineering leaders when a client’s most pressing problem is the person leading the function not the sourcing program itself.
What industries does Elite Leadership Search recruit for?
Elite Leadership Search focuses on industries where ICT Manufacturing has direct executive experience: automotive OEM and Tier 1/2 suppliers (castings, machining, gears, seat tracks), industrial equipment and heavy manufacturing, medical device and orthopedic (ISO 13485-aligned operations), chemical industry, CPG and retail (high-SKU multi-category sourcing), and defense/aerospace-adjacent manufacturing.
Start a Search
Find the Supply Chain Leader Your Program Depends On
Contact ICT Manufacturing to start a confidential role scoping conversation or go directly to Elite Leadership Search. Responds within one business day.
",
* and restrict it to the us-govt-statistics page only (Custom Code lets you
* pick specific pages under Display Conditions).
*/document.addEventListener('DOMContentLoaded', () => {
// Map each box's id to its FRED series ID. `null` = no FRED series exists.
const SERIES_MAP = {
'fx-inr-home': 'DEXINUS',
'fx-cny-home': 'DEXCHUS',
'fx-thb-home': 'DEXTHUS',
'fx-idr-home': null, // Indonesian Rupiah isn't published in FRED's daily FX series
'fx-myr-home': 'DEXMAUS',
'fred-ppi': 'PCUOMFGOMFG',
'fred-oil': 'WPU056101',
'fred-cardboard': 'PCU322211322211',
'fred-lumber': 'WPU08',
'fred-aluminum': 'WPU102501',
'fred-steel': 'WPU081',
};// FX rates read better with more decimal places than PPI index values
const isFx = (seriesId) => seriesId && seriesId.startsWith('DEX');Object.entries(SERIES_MAP).forEach(([boxId, seriesId]) => {
const box = document.getElementById(boxId);
if (!box) return; // markup not on this page, skip quietlyconst set = (key, value, suffix = '') => {
const el = box.querySelector(`[data-f="${key}"]`);
if (!el) return;
el.textContent = value != null ? value + suffix : 'n/a';
};if (!seriesId) {
// No FRED series available (IDR) — say so plainly instead of hanging on "n/a" forever
set('today', 'not on FRED');
return;
}fetch(`/wp-json/ict/v1/fred/${seriesId}`)
.then((r) => r.json())
.then((data) => {
if (data.code) {
console.error('FRED proxy error for', seriesId, data.message);
return;
}
const todayFormatted = isFx(seriesId)
? Number(data.today).toFixed(4)
: Number(data.today).toFixed(2);set('today', todayFormatted);
set('ytd', data.ytd_growth, '%');
set('y1', data.vs_jan1_yr1, '%');
set('y5', data.vs_jan1_yr5, '%');
})
.catch((err) => console.error('FRED fetch failed for', seriesId, err));
});
});