PHARMA BHARAT
PHARMACEUTICAL JOB PORTAL
No new notifications

Ad

Sun Pharma is Hiring for Production & Engineering Jobs

Published on

Sun Pharmaceutical

ITI, Diploma, Graduate, B.Tech

SAS Nagar (Mohali), Punjab

2โ€“7 Years

Verified Job

Walk In Interview
Ad

India’s leading pharmaceutical company, Sun Pharmaceutical Industries Ltd., has announced a Walk-in Drive for experienced professionals in the Production (OSD Formulation) and Engineering departments. This recruitment drive offers an excellent opportunity for ITI, Diploma, Graduate, and B.Tech candidates to join one of the country’s most reputed pharmaceutical organizations.

If you have relevant manufacturing or engineering experience and are looking for career growth in the pharmaceutical industry, this walk-in interview could be the right opportunity.


Job Overview

Company Name: Sun Pharmaceutical Industries Ltd.

Job Type: Walk-in Interview

Department:

  • Production (OSD Formulation)
  • Engineering

Interview Date:

  • 09 August 2026 (Sunday)

Interview Location:
Sun Pharmaceuticals Industries Ltd.
Plot No. A-41, Industrial Area, Phase-VIII-A,
SAS Nagar (Mohali) โ€“ 160071, Punjab, India


Available Positions

Production (OSD Formulation)

Position:

  • Technician (Multiple Positions)

Engineering

Positions:

  • Electrician
  • Fitter
  • Executive

Required Qualifications

Production Department

  • ITI
  • Diploma
  • Graduate

Engineering Department

  • ITI
  • Diploma
  • B.Tech

Experience Required

Production

  • 2โ€“5 Years

Engineering

  • 4โ€“7 Years

Desired Work Profile

Production

Candidates should have experience in:

  • Coating
  • Granulation
  • Capsule Manufacturing
  • Compression
  • Packing

Engineering

Candidates should have experience in:

  • Plant Process Maintenance
  • Equipment Breakdown Maintenance

Roles & Responsibilities

Production

  • Operate and monitor OSD manufacturing equipment.
  • Follow cGMP and SOP guidelines.
  • Maintain production records accurately.
  • Ensure product quality during manufacturing.
  • Coordinate with quality and maintenance teams.

Engineering

  • Perform preventive and breakdown maintenance.
  • Troubleshoot electrical and mechanical equipment.
  • Ensure smooth plant operations.
  • Maintain engineering documentation.
  • Follow safety and compliance procedures.

Salary

Based on qualification, experience, and company policy, the expected salary may range between:

โ‚น3.5 LPA โ€“ โ‚น7.5 LPA

Actual compensation will depend on the candidate’s experience and interview performance.


Employee Benefits

  • Competitive salary package
  • Career growth in India’s leading pharmaceutical company
  • Training and development opportunities
  • Employee welfare benefits
  • Professional work environment
  • Exposure to advanced pharmaceutical manufacturing

Documents to Carry

Candidates should bring:

  • Updated Resume
  • Passport-size Photograph
  • PAN Card Copy
  • Aadhaar Card Copy
  • Educational Certificates
  • Experience Certificates
  • Current Organization Appointment Letter
  • Last Three Months Salary Slips
  • Recent Increment Letter (if applicable)

Important Instructions

  • Candidates should report at the venue on the scheduled interview date.
  • Bring original documents along with photocopies for verification.
  • Employment decisions are made solely by Sun Pharmaceutical Industries Ltd.
  • The company does not charge any fee for recruitment or employment.
  • Recruitment agencies or individuals are not authorized to collect payment on behalf of the company.

How to Apply

Eligible candidates with the required qualifications and experience can directly attend the walk-in interview on 09 August 2026 at the mentioned venue with all necessary documents.

Ad

Share This Job

โœ… Copied!
in your footer / Code Snippets plugin. */ (function () { "use strict";/* ------------------------------------------------------------------ * 1. CONFIG โ€” edit only this block * ---------------------------------------------------------------- */ var CFG = {// Areas that are protected. Add/remove CSS classes here. protectedRoots: [ ".dynamic-entry-content", // main job body ".cstmbox", // job summary card ".inside-article" // whole article wrapper (fallback) ],// NEVER corrupt anything inside these. Put class="pb-allow" on any // element (contact box, email line, HR phone, apply link) you want // people to be able to copy freely. allowSelectors: [ ".pb-allow", ".pb-contact", ".main-share-container", 'a[href^="mailto:"]', 'a[href^="tel:"]' ],// Selections shorter than this are copied normally. // ~200 chars = a couple of lines. Raise it if you feel it is strict. minChars: 200,// How aggressively words get poisoned (0 - 1). wordHitRate: 0.45,// Change digits in dates / salary / experience? // true = strongest deterrent (stolen copy carries wrong facts) // false = only invisible/homoglyph poisoning corruptDigits: true,// Footer glued to every stolen copy. footer: "\n\n----------------------------------------\n" + "Content copied from PharmaBharat.com\n" + "Original & verified job details: ",// Show a toast when a big copy is blocked (set false to stay silent). showNotice: true, noticeText: "Full content copying is disabled. Please share the page link instead." };/* ------------------------------------------------------------------ * 2. Things that must survive untouched (emails, phones, links) * ---------------------------------------------------------------- */ var KEEP = [ /[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,}/gi, // email /(?:\+?91[\s-]?)?[6-9]\d{9}\b/g, // indian mobile /\+\d[\d\s\-()]{7,}\d/g, // international /\b0?\d{2,5}[\s-]\d{6,8}\b/g, // landline / STD /https?:\/\/[^\s<>"']+/gi, // url /\bwww\.[^\s<>"']+/gi // url ];/* ------------------------------------------------------------------ * 3. Poison helpers * ---------------------------------------------------------------- */ var HOMO = { a: "ะฐ", c: "ั", e: "ะต", i: "ั–", j: "ั˜", o: "ะพ", p: "ั€", s: "ั•", x: "ั…", y: "ัƒ", A: "ะ", B: "ะ’", C: "ะก", E: "ะ•", H: "ะ", I: "ะ†", K: "ะš", M: "ะœ", O: "ะž", P: "ะ ", S: "ะ…", T: "ะข", X: "ะฅ", Y: "ะฃ" }; var ZW = ["โ€‹", "โ€Œ", "โ€", "โ "]; // zero width charsfunction rnd(n) { return Math.floor(Math.random() * n); } function pick(a) { return a[rnd(a.length)]; } function esc(s) { return s.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"); }function poisonWord(w) { var out = w.split(""), i;// homoglyph swap: 1-2 characters var swaps = 1 + rnd(2); for (i = 0; i < swaps; i++) { var p = rnd(out.length); if (HOMO[out[p]]) out[p] = HOMO[out[p]]; }// digit damage if (CFG.corruptDigits) { for (i = 0; i < out.length; i++) { if (/\d/.test(out[i]) && Math.random() < 0.5) { out[i] = String((parseInt(out[i], 10) + 1 + rnd(8)) % 10); } } }// invisible junk inside the word if (out.length > 3) out.splice(1 + rnd(out.length - 2), 0, pick(ZW));return out.join(""); }function poison(text) { var slots = [], i;// 3a. mask everything that must be preserved KEEP.forEach(function (re) { text = text.replace(re, function (m) { slots.push(m); return "๎€€" + (slots.length - 1) + "๎€"; }); });// 3b. wreck the rest, word by word var parts = text.split(/(\s+)/); for (i = 0; i < parts.length; i++) { var w = parts[i]; if (!w || /^\s+$/.test(w)) continue; if (w.indexOf("๎€€") > -1) continue; // masked token if (w.length < 3) continue; if (Math.random() > CFG.wordHitRate) continue; parts[i] = poisonWord(w); } text = parts.join("");// 3c. scatter invisible watermark text = text.replace(/\n/g, function () { return "\n" + (Math.random() < 0.3 ? pick(ZW) : ""); });// 3d. restore protected strings text = text.replace(/๎€€(\d+)๎€/g, function (_, n) { return slots[n]; });return text + CFG.footer + location.href + "\n"; }/* ------------------------------------------------------------------ * 4. Selection checks * ---------------------------------------------------------------- */ var ROOTS = CFG.protectedRoots.join(","); var ALLOW = CFG.allowSelectors.join(",");function elOf(node) { return node && node.nodeType === 3 ? node.parentElement : node; }function isProtected(sel) { var el = elOf(sel.getRangeAt(0).commonAncestorContainer); if (!el) return false; if (el.closest && el.closest(ROOTS)) return true; // inside body var roots = document.querySelectorAll(ROOTS); // or select-all for (var i = 0; i < roots.length; i++) { if (el.contains(roots[i])) return true; } return false; }function isWhitelisted(sel) { var el = elOf(sel.getRangeAt(0).commonAncestorContainer); return !!(el && el.closest && el.closest(ALLOW)); }// pull text of allowed elements inside the selection so they survive function harvestAllowed(sel) { try { var frag = sel.getRangeAt(0).cloneContents(); var nodes = frag.querySelectorAll(ALLOW); for (var i = 0; i < nodes.length; i++) { var t = (nodes[i].textContent || "").trim(); if (t && t.length < 200) KEEP.push(new RegExp(esc(t), "g")); } } catch (e) { /* ignore */ } }/* ------------------------------------------------------------------ * 5. Notice toast * ---------------------------------------------------------------- */ function notice() { if (!CFG.showNotice) return; var id = "pb-copy-notice", n = document.getElementById(id); if (!n) { n = document.createElement("div"); n.id = id; n.style.cssText = "position:fixed;left:50%;bottom:24px;transform:translateX(-50%);" + "background:#212529;color:#fff;padding:12px 18px;border-radius:8px;" + "font:600 13px/1.4 -apple-system,Segoe UI,Roboto,sans-serif;" + "z-index:99999;max-width:90%;text-align:center;box-shadow:0 8px 24px rgba(0,0,0,.25);" + "opacity:0;transition:opacity .25s"; document.body.appendChild(n); } n.textContent = CFG.noticeText; requestAnimationFrame(function () { n.style.opacity = "1"; }); clearTimeout(n._t); n._t = setTimeout(function () { n.style.opacity = "0"; }, 2800); }/* ------------------------------------------------------------------ * 6. Handler * ---------------------------------------------------------------- */ function handler(e) { if (window.__pbInternalCopy) return; // our own share buttonsvar sel = window.getSelection(); if (!sel || sel.rangeCount === 0 || sel.isCollapsed) return;var text = sel.toString(); if (text.length < CFG.minChars) return; // small copy = allowed if (!isProtected(sel)) return; if (isWhitelisted(sel)) return; // fully inside allowed boxvar keepLen = KEEP.length; harvestAllowed(sel);var dirty = poison(text); KEEP.length = keepLen; // reset temp patternsvar cd = e.clipboardData || window.clipboardData; if (!cd) return;e.preventDefault(); try { cd.setData("text/plain", dirty); cd.setData( "text/html", "
" + dirty .replace(/&/g, "&") .replace(//g, ">") .replace(/\n/g, "
") + "
" ); } catch (err) { cd.setData("Text", dirty); // old IE / edge cases } notice(); }document.addEventListener("copy", handler, true); document.addEventListener("cut", handler, true);// drag-and-drop scraping document.addEventListener("dragstart", function (e) { var sel = window.getSelection(); if (!sel || sel.rangeCount === 0) return; var t = sel.toString(); if (t.length >= CFG.minChars && isProtected(sel) && !isWhitelisted(sel)) { e.dataTransfer.setData("text/plain", poison(t)); e.preventDefault(); } }, true);/* ------------------------------------------------------------------ * 7. Keep your own share buttons clean * (they use navigator.clipboard, but this covers execCommand too) * ---------------------------------------------------------------- */ window.pbSafeCopy = function (text) { window.__pbInternalCopy = true; var done = function () { window.__pbInternalCopy = false; }; if (navigator.clipboard && navigator.clipboard.writeText) { return navigator.clipboard.writeText(text).then(done, done); } var ta = document.createElement("textarea"); ta.value = text; document.body.appendChild(ta); ta.select(); document.execCommand("copy"); document.body.removeChild(ta); done(); }; })();