Advanced Manufacturing Engineer
$98k - $125kDanfoss 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: 50661
Job Location: Utica, NY, US
Employment Type: Full Time
Segment: Danfoss Power Solutions Segment
Job Category: Supply Chain and Operations
Work Location Type: On-site
Job Title: Global Manufacturing Engineer
The Impact You'll Make The Global Manufacturing Engineer is responsible for developing, standardizing, and optimizing manufacturing processes for Data Center Liquid Cooling (DCLC) products across Danfoss production sites and supplier locations worldwide. This role drives consistent quality, operational excellence, and scalable manufacturing practices while supporting new product industrialization and global growth. Success in this role is measured by the implementation of standardized manufacturing processes, improved operational performance, and successful deployment of new products across the global manufacturing network. What You'll Be Doing Responsibilities for this position include, but are not limited to, the following:
Bonus system
Paid vacation
Retirement plan
Flexible working hours
Personal insurance
Opportunity to join Employee Resource Groups
State of the art virtual work environment
Employee Referral Program Ready to Make a Difference? If this role excites you, we'd love to hear from you! Apply now to start the conversation and learn more about where your career can go with us. All qualified applicants will receive consideration for employment without regard to race, color, religion, sex, sexual orientation, gender identity, national origin, age, disability, veteran status, or other protected category. Information at a Glance
${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: 50661
Job Location: Utica, NY, US
Employment Type: Full Time
Segment: Danfoss Power Solutions Segment
Job Category: Supply Chain and Operations
Work Location Type: On-site
Job Title: Global Manufacturing Engineer
The Impact You'll Make The Global Manufacturing Engineer is responsible for developing, standardizing, and optimizing manufacturing processes for Data Center Liquid Cooling (DCLC) products across Danfoss production sites and supplier locations worldwide. This role drives consistent quality, operational excellence, and scalable manufacturing practices while supporting new product industrialization and global growth. Success in this role is measured by the implementation of standardized manufacturing processes, improved operational performance, and successful deployment of new products across the global manufacturing network. What You'll Be Doing Responsibilities for this position include, but are not limited to, the following:
- Develop and maintain standardized manufacturing processes, work instructions, and production standards across global DCLC manufacturing sites.
- Lead industrialization activities for new products, including process development, tooling, pilot builds, validation, and production launch support.
- Establish and monitor global manufacturing KPIs, process controls, and best practices to ensure consistent performance and quality.
- Drive Lean manufacturing and continuous improvement initiatives to improve productivity, quality, safety, and cost performance.
- Conduct process audits and support corrective actions to ensure compliance with global manufacturing standards.
- Partner with Quality teams to develop PFMEAs, control plans, testing requirements, and validation processes.
- Support supplier and plant capability assessments, onboarding, and process standardization efforts across the manufacturing network.
- Collaborate with R&D, Operations, and Supply Chain teams to improve manufacturability, scalability, and operational efficiency.
- Bachelor's degree in Mechanical Engineering, Manufacturing Engineering, Industrial Engineering, or a related field.
- 5+ years of manufacturing engineering experience, preferably in a multi-site or global manufacturing environment.
- Experience implementing standardized manufacturing processes and supporting new product industrialization.
- Strong knowledge of Lean manufacturing, process capability, and quality tools including PFMEA, SPC, DOE, and root cause analysis.
- Experience with complex mechanical, thermal, fluid handling, or cooling system products.
- Experience supporting automation, robotics, digital manufacturing, or advanced production technologies.
- Experience working with global suppliers and contract manufacturers.
- Strong understanding of manufacturing processes, process validation, quality systems, and operational excellence principles.
- Ability to lead cross-functional projects and influence stakeholders across multiple sites and regions.
- Strong analytical, problem-solving, and project management skills.
- Effective communication skills with the ability to lead global initiatives and collaborate across diverse teams.
- Willingness to travel as needed to support manufacturing plants and supplier locations.
Bonus system
Paid vacation
Retirement plan
Flexible working hours
Personal insurance
Opportunity to join Employee Resource Groups
State of the art virtual work environment
Employee Referral Program Ready to Make a Difference? If this role excites you, we'd love to hear from you! Apply now to start the conversation and learn more about where your career can go with us. All qualified applicants will receive consideration for employment without regard to race, color, religion, sex, sexual orientation, gender identity, national origin, age, disability, veteran status, or other protected category. Information at a Glance
Vacancy posted 20 hours ago
Similar jobs that could be interesting for youBased on the Advanced Manufacturing Engineer in Utica, NY vacancy
- ...individual to take on the challenging role of Product Quality Engineer for our growing silicon carbide Power business. This person... ...necessary actions. This position reports to the Director of Manufacturing Quality Engineering and can be based onsite in either Marcy,...SuggestedFull timeLocal area
$62.5k - $85k
...Job Description Job Description JOB SUMMARY: The Manufacturing Process Engineer I is responsible for developing, implementing, and supporting optimized manufacturing processes. This includes performing data and material analysis required to improve efficiency and...SuggestedWork at officeLocal areaMonday to FridayShift work$110k - $130k
...Ramboll in the AmericasRamboll is a global architecture, engineering, and consultancy company. As a foundation-owned people company... ....Job DescriptionSeniorMechanical-HVAC Engineer in the Advanced Manufacturing Division of Ramboll.Ramboll is actively seeking a Mechanical...SuggestedWork at officeNight shift$123k - $169k
...develop, own and sustain the Dry Etch process design and related manufacturing processes in coordination with process development and... ...Etch process area or a part thereof along with other department engineers and technicians as part of a 24*7 High Volume Silicon Carbide...SuggestedFull timeCasual workLocal areaMonday to Friday$92.2k - $115.3k
...results-oriented Senior Supplier Quality Engineer (SQE) to join our Quality team. As a... ...guidance and training to suppliers to improve manufacturing processes and quality systems. New... ...world. In the U.S., Saab delivers advanced technology and systems, supporting the...SuggestedTemporary workFor contractorsWork experience placementCasual workLocal area$70k - $126k
...SUMMARY : The Senior Continuous Improvement Engineer is responsible for independently... ...-impact improvement initiatives across manufacturing and business operations. This role serves... ...other process improvement software • Advanced analytical, project management,...Work at officeLocal areaMonday to FridayShift workDay shift- ...Sales Engineer The ideal candidate for this Sales Engineer role, offered as a Full Time Regular position, will be responsible for actively... ...stand-alone systems and/or equipment, along with other related advanced technology solutions within the Company's product portfolio....Full timeFor contractorsWork experience placementWork at officeFlexible hours
$150.5k - $195.6k
...Saab, Inc.'s Surveillance U.S. Division is seeking an Electrical Engineering Functional Manager to manage the team of Electrical Engineers... ...safer and more sustainable world. In the U.S., Saab delivers advanced technology and systems, supporting the U.S. Armed Forces and...Contract workTemporary workFor contractorsWork experience placementCasual workLocal area$132k - $171.6k
...term support. We are currently seeking a motivated, enthusiastic Senior Staff Systems Engineer interested in designing, deploying, integrating, tuning, and commissioning advanced ATM systems as part of our Automation and Surveillance team. This position offers...Permanent employmentTemporary workFor contractorsWork experience placementFor subcontractorCasual workLocal area- ...Description Job Description Position: Plastics Process Engineering Manager Reports To: Operations Manager Overview:... ...development, optimization, and continuous improvement of blow-molding manufacturing processes. This role ensures efficient production, high...Local area
- Lifetime Healthcare Companies seeks an IT Platform Administrator to ensure availability and smooth operation of enterprise applications. You will monitor, troubleshoot incidents, install and maintain software, and drive automation and self-service for users. Level I–IV...
$77k - $83k
...Project Executive / Director, Project Executive Supervisory Duties: Yes Salary Range: $77,000 - $83,000 The Project Engineer (PE) will be primarily responsible for obtaining, distributing and reporting on critical project information to the project...Full timeFor subcontractorInternshipWork at office- ...customers’ bottom lines. We partner with traditional businesses — manufacturing, healthcare, restaurants, and large enterprises — to deeply... ...Ramp, and Stripe (over $9M raised). The role You’ll be the engineering owner of customer success. This means building the internal...
$112k - $154k
...Electrical Engineer II Location: Marcy, USLewiston, NY, US, 14092 Summary Provide electrical engineering expertise and direction... ..., or equivalent, from an accredited college or university. Advanced degree in Electrical Engineering preferred. Minimum of eight...Permanent employmentTemporary workFor contractorsWork experience placementWork at office$90k - $138k
...Northern California JOB SUMMARY: The Technical Sales Engineer is responsible for advanced electronics material serving as Indium Corporation's... ...Engage confidently with customer engineering, manufacturing, quality, and procurement teams to understand technical...Work at officeLocal areaRemote work$611 - $2,198.5 per month
...Must meet safety-related requirements including but not limited to those standards of safety imposed by OSHA, state agencies, manufacturers and/or the company. * Medical evaluation is required. Must be able to perform physical requirements of the job, with or without...Full timePart timeMonday to FridayShift workWeekend workAfternoon shift$21.25 - $29.2 per hour
..., 6 a.m. - 6:15 p.m. The Day-to-Day: Work closely with Engineering team to develop and qualify new processes and new tool sets.... ...physics and chemistry principles to understand process effects on manufactured product MS Word, MS Excel, and MS Access experience....Local areaShift workDay shift$93k - $128k
...seeking water and wastewater Treatment Engineer. As a facilities process engineer you are... ...needed to make MVF a world-class manufacturing facility. As a process engineer, you will... ...fab environment) Familiarity with SiC or advanced materials manufacturing utilities Knowledge...Full timeFor contractorsLocal area$107k - $147k
...Employee Resource Groups to local outreach.Job Role:As an Optical inspection engineer you will provide technical and sustaining engineering support for the power semiconductor manufacturing line. You will implement equipment and process modifications to improve production...Full timeLocal area$93k - $128k
...seeking a Water and Wastewater Treatment Engineer. As a facilities process engineer you... ...leading future improvement projects in the manufacturing facility. Day-to-Day Responsibilities... ...environment. Familiarity with SiC or advanced materials manufacturing utilities. Knowledge...For contractors- ...an experienced and highly motivated individual to take on the challenging role of Business Quality Engineer. This role can be filled at any of the Wolfspeed manufacturing locations, Durham, NC; Marcy, NY; Fayetteville, AK. This person will be responsible for preparing and...Full timeWork at officeLocal areaFlexible hours
$43.6k - $71.3k
...Description Job Description $43600 - $71300 Associate Quality Engineer - New Hartford NY Summary This position as Associate... ...of education and experience is required. At least 1year of manufacturing or lab experience in the aerospace materials industry is...Flexible hours- ...Job Description Job Description Description The HVAC Sales Engineer is responsible for driving profitable growth in our HVAC mechanical systems division. This role focuses on developing and securing projects with strong margin potential while building long-term service...For contractors
$22.5 - $27.5 per hour
...per hour depending on experience. Come join our team! As a diesel/auto mechanic, you will perform complex operations including engine, electrical, fuel, brake, and exhaust repairs on large commercial vehicles. Following OEM and other standards, you will perform thorough...Hourly payFull timeLocal areaRelocation packageMonday to FridayWeekend work
Do you want to receive more vacancies?
Subscribe and receive similar vacancies to Advanced Manufacturing Engineer. Be the first to apply!
Related searches
- beverage manufacturing Utica, NY
- industrial manufacturing Utica, NY
- manufacturing positions Utica, NY
- quality manufacturing Utica, NY
- manufacturing Utica, NY
- medical manufacturing Utica, NY
- fabrication manager Utica, NY
- manufacturing production Utica, NY
- fabrication technician Utica, NY
- fabrication specialist Utica, NY


