Manufacturing Engineering Technician
$50k - $72.5kDanfoss LLC
${titleText} `); let grid = columnOne.querySelector('.job-grid'); let allTokens = Array.from(columnOne.querySelectorAll('.joblayouttoken')); // --- 1. CAPTURE VARIABLES FOR BUSINESS RULES --- let jobLocationValue = ""; let countryRegionValue = ""; let regionValue = ""; let ipeLevelValue = null; let employeeGroupValue = ""; // --- INTERNAL USER VALIDATION VIA CUSTOM PLUGIN --- // Reads global flags injected by the authentication plugin let pluginWindowCheck = !!window.isSFInternalUser; let pluginSessionCheck = sessionStorage.getItem('SF_Internal_User') === 'true'; let isInternalPortal = pluginWindowCheck || pluginSessionCheck; // Iterate through all tokens to capture their values before manipulating the DOM allTokens.forEach(el => { let labelEl = el.querySelector('.joblayouttoken-label'); if (!labelEl) return; let labelText = labelEl.innerText; let propId = generatePropertyId(labelText); let valueEl = el.querySelector('.rtltextaligneligible'); let valueText = valueEl ? valueEl.textContent.trim() : ""; if (propId === "JobLocation") { jobLocationValue = valueText; } else if (propId === "CountryRegion") { countryRegionValue = valueText; } else if (propId === "Region") { regionValue = valueText; } else if (propId === "IPELevel") { let match = valueText.match(/d+/); if (match) ipeLevelValue = parseInt(match[0], 10); } else if (propId === "EmployeeGroup") { employeeGroupValue = valueText.toLowerCase(); } }); // --- 2. BUSINESS RULES VALIDATION --- let isSalaryPaid = employeeGroupValue.includes('salary'); let isIpeValid = ipeLevelValue !== null && ipeLevelValue <= 61; // Normalize locations for matching let fullLocationLower = (jobLocationValue + " " + countryRegionValue).toLowerCase(); let isUSJob = fullLocationLower.includes("usa") || fullLocationLower.includes("united states"); let allowedUSStates = ["california", "colorado", "delaware", "hawaii", "illinois", "maryland", "massachusetts", "minnesota", "nevada", "new jersey", "new york", "vermont", "washington", "d.c."]; let allowedUSAbbr = ["ca", "co", "de", "hi", "il", "md", "ma", "mn", "nv", "nj", "ny", "vt", "wa", "dc"]; let allowedGlobalCountries = ["austria", "slovakia", "lithuania", "latvia", "canada"]; // Salary Range Visibility Rule let isSalaryLocationValid = false; if (isUSJob) { let hasFullStateName = allowedUSStates.some(state => fullLocationLower.includes(state)); let hasStateAbbr = allowedUSAbbr.some(abbr => { let regex = new RegExp(`${abbr}`); return regex.test(fullLocationLower); }); isSalaryLocationValid = hasFullStateName || hasStateAbbr; } else { isSalaryLocationValid = allowedGlobalCountries.some(country => fullLocationLower.includes(country)); } // Job Level Visibility Rule (Legacy locations + EER Region) let allowedJobLevelLocations = ["austria", "slovakia", "lithuania", "latvia"]; let isJobLevelLocationValid = allowedJobLevelLocations.some(loc => fullLocationLower.includes(loc)); let isEERRegion = regionValue.toUpperCase().trim() === "EER"; // Final flags to determine if the fields should be shown let showSalaryRange = isSalaryLocationValid && isIpeValid && isSalaryPaid; let showJobLevel = (isJobLevelLocationValid || isEERRegion) && isIpeValid && isSalaryPaid && isInternalPortal; // --- 3. TOKEN PROCESSING AND DISPLAY --- let keepAddingToGrid = true; allTokens.forEach(el => { // Stop adding elements to the grid once the job description starts if (!keepAddingToGrid || el.querySelector('[itemprop="description"]')) { return; } let labelEl = el.querySelector('.joblayouttoken-label'); if (labelEl) { let labelText = labelEl.innerText; let customPropertyid = generatePropertyId(labelText); // --- ABSOLUTE REMOVAL OF LOGIC-ONLY TOKENS --- if ( customPropertyid === "EmployeeGroup" || customPropertyid === "CountryRegion" || customPropertyid === "Region" || customPropertyid === "IPELevel" ) { el.style.display = 'none'; // Force visual hiding el.remove(); // Remove from DOM return; } // --- APPLY VISIBILITY BUSINESS FILTERS --- if (customPropertyid === "SalaryRange" && !showSalaryRange) { el.style.display = 'none'; el.remove(); return; } if (customPropertyid === "JobLevel" && !showJobLevel) { el.style.display = 'none'; el.remove(); return; } // Cosmetic adjustment for short labels if (labelText.includes("(Short)")) { labelEl.innerText = labelText.replace(/(Short)/g, "(s)"); } // Append custom icons based on the mapped property ID let elType = labelEl.nextElementSibling; if (elType) { let icon = ''; let iconUrl = ''; switch (customPropertyid) { case 'JobLocation': icon = 'glyphicon-map-marker'; break; case 'BusinessUnit': icon = 'glyphicon-briefcase'; break; case 'JobCategory': icon = 'glyphicon-dashboard'; break; case 'EmploymentType': icon = 'glyphicon-star-empty'; break; case 'ReqID': icon = 'glyphicon-calendar'; break; case 'WorkLocationType': icon = 'glyphicon-paste'; break; case 'JobLevel': iconUrl = ''; break; case 'SalaryRange': iconUrl = ''; break; case 'TAPartner': iconUrl = ''; break; default: icon = ''; } let iconHtml = ''; if (icon) { iconHtml = ``; } else if (iconUrl) { iconHtml = ``; } labelEl.parentElement.insertAdjacentHTML('beforebegin', `
${iconHtml}`); let wrapper = el.querySelector(`.job-token-${customPropertyid}-wrapper`); wrapper.appendChild(labelEl.parentElement); // Clean up empty text nodes let emptySibling = document.querySelector(`.job-token-${customPropertyid}-wrapper`).nextSibling; if(emptySibling && emptySibling.nodeType === 3) emptySibling.remove(); } // Flag to stop processing grid items when TA Partner is reached if (customPropertyid === "TAPartner") { keepAddingToGrid = false; } } grid.appendChild(el); }); }});/** * Robust Mapping Function * Scans the label for keywords, effectively bypassing any issues caused by translations. */function generatePropertyId(jobLayoutTokenLabel) { let normalized = jobLayoutTokenLabel.toLowerCase(); // Helper function to search for keywords regardless of formatting or active language const contains = (arr) => arr.some(keyword => normalized.includes(keyword)); if (contains(["employee group"])) return "EmployeeGroup"; if (contains(["ipe level", "ipe"])) return "IPELevel"; // Order matters: 'country' will correctly match 'country/region' if (contains(["country", "land", "pas", "pays", "paese", "kraj", "krajina"])) return "CountryRegion"; if (contains(["region", "regin", "rgion", "??????", "??"])) return "Region"; if (contains(["posting job location", "joblokation", "job location", "jobsted", "arbeitsort", "ubicacin", "site de l'emploi", "lokalizacja", "??????????????", "miesto", "????", "sede di lavoro"])) return "JobLocation"; if (contains(["salary range", "recruitment salary", "lninterval", "gehaltsspanne", "przedzia? wynagrodzenia", "fourchette", "rango salarial", "mzdov rozptie", "lnramme", "???????? ????????"])) return "SalaryRange"; if (contains(["posting job level", "job level", "jobniveau", "joblevel", "nivel del puesto", "niveau du poste", "poziom stanowiska", "??????? ?????????", "rove? pozcie"])) return "JobLevel"; if (contains(["employment type", "ansttelse", "beschftigungsart", "tipo de emprego", "type d'emploi", "rodzaj zatrudnienia", "??? ?????????", "typ pracovnho pomeru", "????", "tipologia di impiego", "tipo de empleo"])) return "EmploymentType"; if (contains(["work location type", "arbejdsstedstype", "arbeitsmodell", "tipo de ubicacion", "emplacement de travail", "miejsca pracy", "?????? ??????", "vkonu prce", "??????", "modalit di lavoro"])) return "WorkLocationType"; if (contains(["job category", "jobkategori", "stellenkategorie", "categora", "catgorie", "kategoria", "????????? ?????????", "kategria", "????", "area professionale"])) return "JobCategory"; if (contains(["business unit", "segment", "segmento", "firmaenhed", "unternehmenseinheit", "jednostka biznesowa", "???????", "????"])) return "BusinessUnit"; if (contains(["req id", "rek-id", "kennung", "id de solicitud", "identifiant de la demande", "identyfikator", "?????????????", "id pracovn pozcie", "?? id", "identifika?n", "id posizione", "requisition id", "stellen-id"])) return "ReqID"; if (contains(["ta partner", "partenaire ta"])) return "TAPartner"; // Default fallback if no keywords are matched return jobLayoutTokenLabel.replace(/[s:()][]/g,'');}
Req ID: 50126
Job Location: Loves Park, IL, US
Employment Type: Full Time
Segment: Danfoss Power Electronics and Drives Segment
Job Category: Supply Chain and Operations
Work Location Type: On-site
Job Title: Manufacturing Engineering Technician
The Impact You'll Make You will play a key role in keeping highly automated production lines running safely and efficiently. Your expertise will directly impact product quality, uptime, and the overall success of our manufacturing operations.
Working on advanced electronics and PCB assembly equipment, you'll help solve real problems, improve processes, and support continuous improvement across the site. This is a hands-on role where your technical skills and curiosity make a difference every day.
You'll primarily support second shift operations, with flexibility to assist across shifts when business needs arise.
What You'll Be Doing
${iconHtml}`); let wrapper = el.querySelector(`.job-token-${customPropertyid}-wrapper`); wrapper.appendChild(labelEl.parentElement); // Clean up empty text nodes let emptySibling = document.querySelector(`.job-token-${customPropertyid}-wrapper`).nextSibling; if(emptySibling && emptySibling.nodeType === 3) emptySibling.remove(); } // Flag to stop processing grid items when TA Partner is reached if (customPropertyid === "TAPartner") { keepAddingToGrid = false; } } grid.appendChild(el); }); }});/** * Robust Mapping Function * Scans the label for keywords, effectively bypassing any issues caused by translations. */function generatePropertyId(jobLayoutTokenLabel) { let normalized = jobLayoutTokenLabel.toLowerCase(); // Helper function to search for keywords regardless of formatting or active language const contains = (arr) => arr.some(keyword => normalized.includes(keyword)); if (contains(["employee group"])) return "EmployeeGroup"; if (contains(["ipe level", "ipe"])) return "IPELevel"; // Order matters: 'country' will correctly match 'country/region' if (contains(["country", "land", "pas", "pays", "paese", "kraj", "krajina"])) return "CountryRegion"; if (contains(["region", "regin", "rgion", "??????", "??"])) return "Region"; if (contains(["posting job location", "joblokation", "job location", "jobsted", "arbeitsort", "ubicacin", "site de l'emploi", "lokalizacja", "??????????????", "miesto", "????", "sede di lavoro"])) return "JobLocation"; if (contains(["salary range", "recruitment salary", "lninterval", "gehaltsspanne", "przedzia? wynagrodzenia", "fourchette", "rango salarial", "mzdov rozptie", "lnramme", "???????? ????????"])) return "SalaryRange"; if (contains(["posting job level", "job level", "jobniveau", "joblevel", "nivel del puesto", "niveau du poste", "poziom stanowiska", "??????? ?????????", "rove? pozcie"])) return "JobLevel"; if (contains(["employment type", "ansttelse", "beschftigungsart", "tipo de emprego", "type d'emploi", "rodzaj zatrudnienia", "??? ?????????", "typ pracovnho pomeru", "????", "tipologia di impiego", "tipo de empleo"])) return "EmploymentType"; if (contains(["work location type", "arbejdsstedstype", "arbeitsmodell", "tipo de ubicacion", "emplacement de travail", "miejsca pracy", "?????? ??????", "vkonu prce", "??????", "modalit di lavoro"])) return "WorkLocationType"; if (contains(["job category", "jobkategori", "stellenkategorie", "categora", "catgorie", "kategoria", "????????? ?????????", "kategria", "????", "area professionale"])) return "JobCategory"; if (contains(["business unit", "segment", "segmento", "firmaenhed", "unternehmenseinheit", "jednostka biznesowa", "???????", "????"])) return "BusinessUnit"; if (contains(["req id", "rek-id", "kennung", "id de solicitud", "identifiant de la demande", "identyfikator", "?????????????", "id pracovn pozcie", "?? id", "identifika?n", "id posizione", "requisition id", "stellen-id"])) return "ReqID"; if (contains(["ta partner", "partenaire ta"])) return "TAPartner"; // Default fallback if no keywords are matched return jobLayoutTokenLabel.replace(/[s:()][]/g,'');}
Req ID: 50126
Job Location: Loves Park, IL, US
Employment Type: Full Time
Segment: Danfoss Power Electronics and Drives Segment
Job Category: Supply Chain and Operations
Work Location Type: On-site
Job Title: Manufacturing Engineering Technician
The Impact You'll Make You will play a key role in keeping highly automated production lines running safely and efficiently. Your expertise will directly impact product quality, uptime, and the overall success of our manufacturing operations.
Working on advanced electronics and PCB assembly equipment, you'll help solve real problems, improve processes, and support continuous improvement across the site. This is a hands-on role where your technical skills and curiosity make a difference every day.
You'll primarily support second shift operations, with flexibility to assist across shifts when business needs arise.
What You'll Be Doing
- Maintain and troubleshoot automated manufacturing equipment, including PCB production lines, to maximize uptime and performance
- Perform preventive maintenance, calibration support, and CMMS documentation to ensure reliable operations
- Diagnose and repair electrical, mechanical, pneumatic, and hydraulic systems using schematics and technical drawings
- Support automation systems , including Siemens PLC troubleshooting and robotic equipment (e.g., Kuka/Festo)
- Contribute to continuous improvement and root cause analysis , while supporting equipment upgrades, rebuilds, and contractor activities
- Education & experience: Associate's degree in engineering or related field, plus experience in manufacturing maintenance or a similar technical role
- Technical expertise: Strong knowledge of electrical and mechanical systems, with experience in PLCs, robotics, and automated equipment
- Manufacturing knowledge: Familiarity with PCB processes, conveyors, and potting/dispensing systems is highly valued
- Work style: Self-starter who can multitask, solve problems, and collaborate effectively within a team environment
- Ability to work Second Shift Hours (3:30 pm- 11:30 pm)
- We promote from within and support your learning with mentoring, training, and access to global opportunities.
- You'll have flexibility, autonomy, and support to do your best work while maintaining a healthy work-life balance. Your well-being matters to us.
- We strive to create an inclusive work environment where people of all backgrounds are respected, and valued for who they are.
The US base salary range for this full-time position is $50,000- $72,500 + bonus + benefits. Our salary ranges are determined by role, level, and location. Within the range, individual pay is determined by work location and additional factors, including job-related skills, experience, and relevant education or training. Your recruiter can share more about the specific salary range for your preferred location during the hiring process.
This list does not promise or guarantee any particular benefit or specific action.
They may depend on country or contract specifics and are subject to change at any time without prior notice.
Join Danfoss Drives and become part of a team making a significant impact in energy efficiency and electrification. As a global leader in power conversion solutions, we are committed to sustainability, exceptional quality, and fostering an inclusive work environment.
Our technology powers industries worldwide and supports global decarbonization efforts. Engineer a better future with Danfoss, where meaningful change begins with you!
Vacancy posted 2 days ago
Similar jobs that could be interesting for youBased on the Manufacturing Engineering Technician in Loves Park, IL vacancy
$68.9k - $131.1k
...the RTX Lifecycle Program Management System(RLPM) Gates A through D and Advanced Product Quality Planning (APQP), the NPI Manufacturing Engineer, analyzes and modifies product designs in collaboration with Design Engineering to assure manufacturability. Develops design...SuggestedContract workTemporary workWork experience placementWork at officeRemote workWorldwideFlexible hours- ...solutions. Understanding of different stakeholder perspectives while analyzing issues Bachelor's degree in mechanical engineering, Manufacturing Engineering, Industrial Engineering, or a related field. 0-7 years of relevant experience in manufacturing or...Suggested
$80k - $100k
...Engineering Opportunity Take your engineering career to the next level with a growing manufacturer that continues to invest in state-of-the-art equipment, advanced machining technology, and automation. This is a high-impact role where you'll partner closely with operations...SuggestedWork at office$65k
...About Gleason With more than 2,200 employees and 13 manufacturing facilities worldwide, Gleason Corporation is a leader in gear technology... ...and informal Development opportunities. Manufacturing Engineer The Manufacturing Engineer is responsible for the design,...SuggestedWork experience placementWork at officeWorldwideRelocationFlexible hoursShift work- ...Manufacturing Engineer The Manufacturing Engineer provides a high level of expertise to support and improve the manufacture of both existing and new products and associated processes. The Manufacturing Engineer will utilize lean manufacturing principles and apply those...SuggestedTemporary work
- ...in advanced separation technologies, Komline has established a global reputation for engineering excellence. Through our combination of innovative design, cutting-edge manufacturing capabilities, and decades of industry experience, we consistently deliver the highest...Work experience placement
- ...materials. · Works to improve the efficiency and quality of the manufacturing process. · Analyzes production data for improvement.... ...and implements new technologies. · Collaborate with other engineering disciplines to ensure efficient production · Research automation...Work at office
- Position SummaryWe are seeking a highly skilled and experienced Manufacturing Engineer to join our precision manufacturing team. The ideal candidate will have extensive machining experience and a strong technical problem-solving attitude. Candidate should have good communication...
$80k - $110k
Job Description: Manufacturing Process Engineer - ITW Shakeproof Machesney Park, IL JOB DESCRIPTION: ITW Shakeproof Fasteners supplies cold headed & metal stamped fasteners totaling approximately $200M in revenue annually. Manufacturing and warehouse locations include...Work at officeLocal area- ...Manufacturing Process Engineer We are seeking a Manufacturing Process Engineer to support manufacturing operations by developing, optimizing, and validating production processes to improve efficiency, quality, and productivity. The ideal candidate will work closely...Work at office
- ...General Mills is offering a Manufacturing & Engineering Associate (MEA) Internship for a 10-week Summer 2027 program. You will gain exposure... ...problem-solving initiatives. You will learn from Operators, Technicians and Mechanics, developing coaching and leadership skills....Summer workInternshipRelocation package
$70k - $90k
...of experience in project management in the construction industry. Bachelor's degree in construction management, architecture, engineering or related field. Proven experience in construction project management, including the ability to manage multiple projects simultaneously...Contract workFor subcontractorLocal area- ...a part of the Fairbanks Morse Defense team here: Position Summary We are seeking a highly skilled and experienced Manufacturing Engineer to join our precision manufacturing team. The ideal candidate will have extensive machining experience and a strong technical...For contractors
$225k - $345k
...leading enterprise growth strategies. · Demonstrated success building and leading executive teams across Sales, Marketing, Product, Engineering, Customer Success, Finance, and Operations. · Strong financial leadership with expertise in forecasting, budgeting, EBITDA...$70k - $90k
...Job Description Position Title: Manufacturing Process Engineer Wage: $70,000 - $90,000/year We are partnering with a custom metal fabrication manufacturer of retail displays and store fixtures for national brands and retailers. Their manufacturing environment...$28 - $36 per hour
...Industrial Machine Maintenance Technician Rockford, IL Ingersoll Cutting Tools Company is proud to be part of the IMC Group of... ...countries. Our US operations are housed on our state-of-the-art manufacturing and marketing campus in Rockford, Illinois. We are currently...Full timeShift workWeekend work- ...testing Collaborate with electrical, firmware, and systems engineers to troubleshoot failures and support root cause analysis Execute... ...‑time Job Function Appliances, Electrical, and Electronics Manufacturing Benefits Medical insurance Vision insurance 401(k) Paid...Full time
- ...Validation Engineer We are seeking a Validation Engineer to plan, execute and document facility, equipment and system validations... ..., quality and operations to maintain compliant, reliable manufacturing systems and continuous improvement initiatives using Lean Manufacturing...Temporary work
$20 - $30 per hour
...cleaning blower tube, etc. Performs duties as a Robotic Cell Technician when there are no programming issues to complete.... ...Must have had at least five (5) years of experience in a manufacturing environment. Must display understanding of abstract concepts...Hourly payFull timeMonday to Friday$95k - $120k
...PV, energy storage, HVAC modernization, and energy optimization—aligned around one core principle: real-world outcomes backed by engineering discipline and lifecycle accountability. We are not simply a contractor. We serve as developer, integrator, and long-term strategic...For contractors$34 - $42 per hour
...Industrial Engineer Job Number: 366755 Category: -MFG & Supply Chain SBU Description: Job Title: Industrial Engineer Pay... ...background in industrial engineering, process optimization, and lean manufacturing principles. The position focuses on analyzing, designing, and...Hourly payFull timeWork at officeShift work- ...Process Engineer The Process Engineer is responsible designing, implementing, monitoring and improving manufacturing or operational processes to increase efficiency, quality, safety, and productivity while reducing costs and waste. Essential Duties & Responsibilities...
$70k - $90k
...Corp (Gardner Abrasives) is actively seeking a Full-time Process Engineer to join its team in South Beloit, Illinois. Join Fives, an... ...engineered abrasives grinding wheels since 1905. As a leading manufacturer of highly-engineered conventional and diamond & CBN...Full timeWork at officeLocal areaWorldwideShift work$86.88k - $103.17k
...includes building teams across our global network to pioneer and shape the future of PCI. We’re seeking a hands-on Automation Engineer to shape the future of PCI’s software and control systems. In this role, you’ll maintain and enhance production data collection systems...Full timeFlexible hoursWeekend work$68.9k - $131.1k
...Will DoThe role of a Production Software Engineer is to conceive and implement software... ...production quality.Provides operators and technician training to ensure proper equipment use... ...aims to strengthen the connection of Manufacturing Operations, Supply Chain and...Contract workTemporary workWork experience placementWork at officeRemote workWorldwideFlexible hours- ...Bonus Skills Programming or scripting skills (Python, PowerShell, etc.). Experience in renewable energy, construction, or engineering industries. Knowledge of CRM or project management platforms (e.g., Monday.com, Salesforce). Why Join Greenlink? Shape how...Work at officeFlexible hours
- ...Job Description Job Description The Industrial Maintenance Technician inspects, troubleshoots, and conducts repairs and... ...the job. Qualifications: Required experience in heavy manufacturing or equivalent military training and experience Prefer experience...Local area
- ...Automotive Assembly Process Engineer The resources provided will require a good understanding of Automotive Assembly Process in... ...completed in excel that will be transferred to AMPs (Automated Manufacturing Planning System) Collaborate with cross functional launch...Temporary workWork experience placement
- ...campus capabilities to drive progress in radiopharmaceutical manufacturing. Our work is driven by a meaningful mission—advancing life-saving... ...and a competitive benefits package.PositionThe Automation Engineer will contribute to the development and execution of...Full timeTemporary workFor contractorsH1bWork at officeLocal areaRelocationShift workNight shiftWeekend workAfternoon shift
- ...Job Category: Engineering Job Family: Manufacturing Engineering Job Description: We're growing our Engineering team and looking for talented Engineers to work in our U.S. Manufacturing Plants. We are seeking a skilled Senior Processing Engineer...Extra incomeRelocationRelocation package
Do you want to receive more vacancies?
Subscribe and receive similar vacancies to Manufacturing Engineering Technician. Be the first to apply!
Related searches
- industrial manufacturing Loves Park, IL
- manufacturing positions Loves Park, IL
- quality manufacturing Loves Park, IL
- manufacturing Loves Park, IL
- medical manufacturing Loves Park, IL
- fabrication manager Loves Park, IL
- manufacturing production Loves Park, IL
- fabrication technician Loves Park, IL
- customer service manufacturing Loves Park, IL
- manufacturing customer service representative Loves Park, IL


