CINXE.COM

How pharmaceutical manufacturers can respond to change in the new world

<!DOCTYPE html> <html lang="en"> <head> <!-- Google Tag Manager --> <script>(function (w, d, s, l, i) { w[l] = w[l] || []; w[l].push({ 'gtm.start': new Date().getTime(), event: 'gtm.js' }); var f = d.getElementsByTagName(s)[0], j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src = 'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f); })(window, document, 'script', 'dataLayer', 'GTM-W9C8F5F');</script> <!-- End Google Tag Manager --> <meta charset="UTF-8"> <title>How pharmaceutical manufacturers can respond to change in the new world</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="theme-color" content="#FFF"> <meta name="author" content=""> <meta name="google-site-verification" content="bD4tV4Sl-EwlSwu4w1alwBUpBtTV_kAj0pkGjAarY-w"> <meta name="yandex-verification" content="52377bb9620367bb"> <meta itemprop="url" content="https://manufacturingchemist.com/"> <meta name="keywords" content=""> <meta name="description" content="COVID-19 has severely impacted the pharmaceutical industry and the supply challenges it has caused look set to persist for the foreseeable future, says Young Baik, Director, Industry and Solutions, Kinaxis"> <link rel="icon" type="image/ico" href="/favicon.ico"> <link rel="canonical" href="https://manufacturingchemist.com/how-pharmaceutical-manufacturers-can-respond-to-change-in-the-new-world-175950" /> <meta property="og:url" content="https://manufacturingchemist.com/how-pharmaceutical-manufacturers-can-respond-to-change-in-the-new-world-175950"> <meta property="og:title" content="How pharmaceutical manufacturers can respond to change in the new world"> <meta property="og:description" content="COVID-19 has severely impacted the pharmaceutical industry and the supply challenges it has caused look set to persist for the foreseeable future, says Young Baik, Director, Industry and Solutions, Kinaxis"> <meta property="og:image" content="/article-image-alias/how-pharmaceutical-manufacturers-can-respond-to.jpg"> <meta property="og:image:alt" content="How pharmaceutical manufacturers can respond to change in the new world"> <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:site" content="manchempharma"> <meta name="twitter:creator" content="@hpcimedia"> <meta name="twitter:title" content="How pharmaceutical manufacturers can respond to change in the new world"> <meta name="twitter:description" content="COVID-19 has severely impacted the pharmaceutical industry and the supply challenges it has caused look set to persist for the foreseeable future, says Young Baik, Director, Industry and Solutions, Kinaxis"> <meta name="twitter:image" content="/article-image-alias/how-pharmaceutical-manufacturers-can-respond-to.jpg"> <link href="https://cdn.jsdelivr.net/npm/remixicon@3.2.0/fonts/remixicon.css" rel="stylesheet"> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,700;1,400;1,900&display=swap" rel="stylesheet"> <link rel="stylesheet" href="/build/app_manufacturingchemist.com.f7c17d27.css"> <script src="/build/runtime.ced75ccf.js" defer></script><script src="/build/app_manufacturingchemist.com.47c00b06.js" defer></script> <script> document.addEventListener('DOMContentLoaded', function () { const cachedAdResponses = []; const lazyAdViewObserver = new IntersectionObserver(handleAdView, { threshold: [0.5] }); const lazyImageObserver = new IntersectionObserver(handleLazyImages, { threshold: 0.05 }); const lazyCSSBGImageObserver = new IntersectionObserver(handleLazyBGImages, { threshold: 0.05 }); // Initialize reloadAds(); observeImagesAndBG(); // Event listeners window.addEventListener('resize', reloadAds); document.querySelector('.nav-toggler').addEventListener('click', toggleNav); document.querySelector('.search-dropdown .close-btn').addEventListener('click', closeSearchDropdown); document.querySelectorAll('.has-sub a').forEach(element => { element.addEventListener('click', () => toggleSubMenu(element)); }); // Functions function reloadAds() { document.querySelectorAll('.ads > a').forEach(generateAdViewEvent); } function handleAdView(entries) { entries.forEach(entry => { if (entry.isIntersecting && entry.intersectionRatio > 0.5) { lazyAdViewObserver.unobserve(entry.target); confirmAdViewEvent(entry.target); } }); } function handleLazyImages(entries) { entries.forEach(entry => { if (entry.isIntersecting) { entry.target.childNodes.forEach(replacePictureSourceAndImgSets); lazyImageObserver.unobserve(entry.target); } }); } function handleLazyBGImages(entries) { entries.forEach(entry => { if (entry.isIntersecting) { const realImageUrl = entry.target.getAttribute('data-bg'); entry.target.style.backgroundImage = `url(${realImageUrl})`; lazyCSSBGImageObserver.unobserve(entry.target); } }); } function toggleNav() { const mainNavWrapper = document.querySelector('.main-nav-wrapper'); mainNavWrapper.classList.toggle('open'); this.classList.toggle('toggle-active'); } function closeSearchDropdown() { document.querySelector('.search-dropdown').classList.remove('open'); } function toggleSubMenu(element) { const parent = element.parentElement; const isOpen = parent.classList.toggle('open'); if (isOpen) { document.querySelectorAll('.has-sub').forEach(subElement => { if (subElement !== parent) subElement.classList.remove('open'); }); } } function generateAdViewEvent(element) { if (element.hasAttribute('data-is-loaded') || !element.dataset.url || !element.hasAttribute('data-is-mobile')) { return; } const uniqueId = element.getAttribute('data-unique-id'); if (uniqueId && cachedAdResponses[uniqueId]) { return; } if (element.hasAttribute('data-is-mobile')) { if ('1' === element.getAttribute('data-is-mobile') && !window.matchMedia("(max-width: 768px)").matches || '0' === element.getAttribute('data-is-mobile') && window.matchMedia("(max-width: 768px)").matches) { return; } } const xhr = new XMLHttpRequest(); xhr.onreadystatechange = function () { if (this.readyState === 4 && this.status === 200) { const data = JSON.parse(this.responseText); element.href = data.redirect_url; element.dataset.confirmUrl = data.confirm_url; lazyAdViewObserver.observe(element); element.setAttribute('data-is-loaded', 'true'); cachedAdResponses[uniqueId] = element; } }; xhr.open('POST', element.dataset.url, true); // ASynchronous request xhr.send(); } function confirmAdViewEvent(element) { if (element.dataset.confirmUrl) { const xhr = new XMLHttpRequest(); xhr.open('POST', element.dataset.confirmUrl, true); xhr.send(); } } function replacePictureSourceAndImgSets(element) { if (element.tagName === 'SOURCE') { element.srcset = element.dataset.srcset; delete element.dataset.srcset; } else if (element.tagName === 'IMG' && element.dataset.src) { element.src = element.dataset.src; delete element.dataset.src; } } function observeImagesAndBG() { document.querySelectorAll('picture').forEach(element => lazyImageObserver.observe(element)); document.querySelectorAll('[data-bg]').forEach(img => lazyCSSBGImageObserver.observe(img)); } }); </script> </head> <body> <!-- Google Tag Manager (noscript) --> <noscript> <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-W9C8F5F" height="0" width="0" style="display:none;visibility:hidden"></iframe> </noscript> <!-- End Google Tag Manager (noscript) --> <header class="header"> <div class="width-container wide"> <div class="padding"> <div class="header-top flex-mob-up align-items-center-mob-up justify-content-space-between-mob-up"> <a href="https://manufacturingchemist.com/" class="logo"> <img alt="Manufacturing Chemist" src="/images/logo.svg"/> </a> </div> <div class="header-bottom"> <nav class="main-nav-wrapper flex-sm-up align-items-center-sm-up justify-content-space-between-sm-up"> <button class="nav-toggler hide-show-sm-down" type="button" data-toggle="collapse" aria-expanded="false" aria-label="Toggle navigation"><span class="navbar-toggler-icon"><span></span></span> </button> <ul class="main-nav"> <li><a href="/">Home</a></li> <li class="has-sub"><a href="#">Categories</a> <div class="dropdown wide"> <ul> <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem"> <a itemprop="item" title="Ingredients" href="/tag/ingredients"><span itemprop="name">Ingredients</span> <meta itemprop="position" content="1"> </a> </li> <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem"> <a itemprop="item" title="Analysis" href="/tag/analysis"><span itemprop="name">Analysis</span> <meta itemprop="position" content="1"> </a> </li> <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem"> <a itemprop="item" title="Manufacturing" href="/tag/manufacturing"><span itemprop="name">Manufacturing</span> <meta itemprop="position" content="1"> </a> </li> <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem"> <a itemprop="item" title="Finance" href="/tag/finance"><span itemprop="name">Finance</span> <meta itemprop="position" content="1"> </a> </li> </ul> <ul> <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem"> <a itemprop="item" title="Regulatory" href="/tag/regulatory"><span itemprop="name">Regulatory</span> <meta itemprop="position" content="1"> </a> </li> <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem"> <a itemprop="item" title="Drug Delivery" href="/tag/drug-delivery"><span itemprop="name">Drug Delivery</span> <meta itemprop="position" content="1"> </a> </li> <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem"> <a itemprop="item" title="Research &amp; Development" href="/tag/research-and-development"><span itemprop="name">Research &amp; Development</span> <meta itemprop="position" content="1"> </a> </li> <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem"> <a itemprop="item" title="Sustainability" href="/tag/sustainability"><span itemprop="name">Sustainability</span> <meta itemprop="position" content="1"> </a> </li> </ul> </div> </li> <li> <a title="Pharma 5.0" href="/tag/pharma">Pharma 5.0</a> </li> <li><a href="/jobs">Company News</a></li> <li><a href="/events">Events</a></li> <li><a title="Directory" href="/directory">Directory</a></li> <li class="has-sub search-dropdown"><a href="#"><i class="ri-search-line" aria-hidden="true" focusable="false"></i><span class="visually-hidden">Search</span></a> <div class="dropdown"> <ul> <li itemscope itemtype="https://schema.org/WebSite"> <meta itemprop="url" content="https://manufacturingchemist.com/"/> <form class="colourway02 transparent-background" method="get" action="/search" itemprop="potentialAction" itemscope itemtype="https://schema.org/SearchAction"> <div class="input-group"> <input type="search" id="q" name="q" data-autocomplete-url="/ajax" data-autocomplete-field="title" itemprop="query-input" placeholder="Enter search term" class="js-autocomplete form-control ui-autocomplete-input" aria-describedby="search-addon" autocomplete="off"> <meta itemprop="target" content="https://manufacturingchemist.com/search?q={q}"> <button class="icon-btn" type="submit" id="search-addon"> <i aria-hidden="true" focusable="false" class="ri-search-line ri-xl"></i> </button> </div> <span class="close-btn"><i aria-hidden="true" focusable="false" class="ri-close-line ri-xl"></i>Close search</span> </form> </li> </ul> </div> </ul> <ul class="subscriber-nav logged-out"> <li class="subscribe-link"><a href="https://hpcimedia.com/service/signup-campaign/MCSub">Subscribe <div class="locked-story"> <div class="locked-story-inner"><i aria-hidden="true" focusable="false" class="ri-lock-line"></i></div> </div> </a></li> <li class="has-sub subscriber-dropdown"><a href="#">Login</a> <div class="dropdown"> <ul> <li> <form name="custom_user_authentication_form" method="post" action="/authentication" class="colourway02 transparent-background"> <div class="icon-input-wrapper"> <i class="ri-mail-line ri-xl" aria-hidden="true" focusable="false"><span class="visually-hidden">Password</span></i> <input type="email" id="custom_user_authentication_form_email" name="custom_user_authentication_form[email]" required="required" placeholder="Email" class="form-control" /> </div> <div class="icon-input-wrapper"> <i class="ri-key-line ri-xl" aria-hidden="true" focusable="false"><span class="visually-hidden">Password</span></i> <input type="password" id="custom_user_authentication_form_password" name="custom_user_authentication_form[password]" required="required" placeholder="Password" class="form-control" /> </div> <div class="checkbox-wrapper"> <div class="mb-3"><div class="form-check"><input type="checkbox" id="custom_user_authentication_form__remember_me" name="custom_user_authentication_form[_remember_me]" class="form-check-input form-check-input" value="1" /> <label class="form-check-label form-check-label" for="custom_user_authentication_form__remember_me">Remember me</label></div></div> </div> <input type="submit" class="btn btn-sm btn-dark m-2 hovered-shadow" value="Sign In"> <a class="forgot-password-link-wrapper" href="mailto:subscriptions@hpcimedia.com?subject=Forgot password&body=Hello, I forgot my password">Forgot password?</a> <span class="close-btn"> <i aria-hidden="true" focusable="false" class="ri-close-line ri-xl"></i>Close login form</span> </form> </li> </ul> </div> </li> </ul> <script> document.addEventListener("DOMContentLoaded", function () { document.querySelector('.subscriber-dropdown .close-btn').addEventListener('click', function () { document.querySelector('.subscriber-dropdown').classList.remove('open'); }); }); </script> </nav> </div> </div> </div> </header> <nav class="breadcrumb"> <div class="width-container wide"> <ul id="wo-breadcrumbs" class="breadcrumb" itemscope itemtype="http://schema.org/BreadcrumbList"> <li><a href="/"><i class="ri-home-5-line" aria-hidden="true" focusable="false"></i><span class="visually-hidden">Home</span></a> </li> <li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"> <a href="/tag/digital" itemprop="item"> <span itemprop="name" class="current">Digital</span> </a> <meta itemprop="position" content="1"/> </li> <li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"> <span itemprop="name" class="current">How pharmaceutical manufacturers can respond to change in the new world</span> <meta itemprop="item" content="/how-pharmaceutical-manufacturers-can-respond-to-change-in-the-new-world-175950"/> <meta itemprop="position" content="2"/> </li> </ul> </div> </nav> <div class="main"> <header class="article-header"> <div class="width-container wide"> <div class="padding"> <div class="grid flex-mob-row"> <div class="column06 flex-sm-up align-items-center-sm-up mob-order02"> <div class="article-intro"> <h1>How pharmaceutical manufacturers can respond to change in the new world </h1> <byline> Published: 15-Apr-2021 </byline> <byline class="tags-byline"> <div class="tags-background"> <a href="/tag/digital">Digital</a> <a href="/tag/pharmaceutical">Pharmaceutical</a> <a href="/tag/logistics">Logistics</a> </div> </byline> <p>COVID-19 has severely impacted the pharmaceutical industry and the supply challenges it has caused look set to persist for the foreseeable future, says Young Baik, Director, Industry and Solutions, Kinaxis</p> </div> </div> <div class="column06 mob-order01"> <div class="featured-image"> <div class="featured-image-inner article-featured-image " data-bg="/article-image-alias/how-pharmaceutical-manufacturers-can-respond-to.jpg"> </div> </div> </div> </div> </div> </div> </header> <div class="width-container"> <div class="padding"> <div class="article-wrapper flex-md-up justify-content-space-between-md-up"> <article class="article"> <p>Pharmaceutical companies have already experienced drug shortages, cost increases and delivery performance degradation.</p> <p>In addition to this, mandates by regulatory bodies requiring jurisdictional control and, in some cases, the adoption of technology that does not support end-to-end supply chain collaboration has contributed to testing times for drug manufacturers.</p> <blockquote><p>What organisations have learned from the pandemic is that the more agility is needed and used to counter volatility, the less relevant accuracy becomes.</p></blockquote> <p>Ultimately, it is a case of striking the right balance and being sufficiently agile to rapidly respond to fast-changing environments. In line with this, companies are setting specific goals to meet their internal objectives for improved customer service, profitability and growth, focusing especially on enhanced innovation, agility and speed.</p> <p>The pandemic has also revealed the vulnerability of long, complicated and siloed supply chains. When a single country or site went dark, the lack of critical materials and reduced transport capacity forced companies to close down production.</p> <p>Supply chain leaders and managers will expect the lessons learned to be used to create a resilient and agile supply chain that can withstand any disruptions and quickly respond to the crisis.</p> <p>They will also need to understand and quantify risk exposure and develop contingency plans for each disruption scenario. Moreover, when potential future disruptions are identified, manufacturers need to quickly analyse a range of scenarios, assess impact and make rapid and informed decisions to minimise the impact.</p> <h3>Be prepared: make smart use of technology</h3> <p>What the pharmaceutical industry needs above all is the ability to reach across the silos that exist in each business to mitigate the impact.</p> <p>Using concurrent supply chain planning, companies can simulate supply chain failures and prepare risk mitigation scenarios in both predictive and preventive ways.</p> <p>The primary goal is to reduce supply chain risk by providing full visibility and transparency through the extended supply chain. Companies need access to real-time information on status of demand, supply and inventory … wherever they are.</p> <p>This is a hugely valuable capability that gives leaders the confidence to make difficult choices during very demanding periods. Decision makers no longer feel as if they are plunging into darkness as soon as a crisis begins. They have the information they need to do their jobs.</p> <p>COVID-19 spread around the globe in a matter of weeks; but, events such as ransomware attacks can overwhelm organisations in minutes, demanding fast but informed responses from senior management. Being able to respond effectively requires similar capabilities in each case.</p> <p>In the event of a ransomware attack, the ability to implement end-to-end planning using an advanced cloud-based planning platform can be key to both mitigating the impact of an attack and helping to recover supply chain resilience as quickly as possible.</p> <p>This and many other incidents prove that having digital and integrated planning capabilities amplifies a large organisation’s ability to pinpoint where changes are happening in the supply chain.</p> <p>They understand why they are happening and take positive action with much greater clarity and confidence. These are the digital platform capabilities on which the recovery of the industry will depend for future resilience.</p> <p>This is the main lesson of the pandemic so far. In just 12 months, the virus is bringing forward years of change in the way organisations conduct business. Many have been studying how their supply chains work and increasing the digitisation of their customer and supply chain interactions by 3–4 years.</p> <p>As we emerge from the pandemic, companies will need help to lay the right foundation for such a rapid digitisation journey. The development of artificial intelligence (AI), machine learning (ML) and data analytics are major advances in this field, enabling companies to learn more about, audit and connect with their entire value chains.</p> <p>It is inevitable that future disruptions will occur, whether through natural calamity, another virus outbreak or a highly penetrative cyberattack. Nobody can entirely predict the future, nor should they try to plan in minute detail for every eventuality.</p> <blockquote><p>Organisations must become far more agile, relying on accurate, current data from the entire length of their supply chains.</p></blockquote> <p>Whatever the months and years to come bring, using the right approach and technology will inject far greater agility and resilience into pharmaceutical companies, enabling them to detect the unexpected early and respond rapidly to counteract the impact.</p> <p>Eventually, companies with agility and resilience will be a step ahead of the competition and will be able to sustain and grow their business in the unknown future.</p> <p>As Charles Darwin stated in On the Origin of Species about his scientific theory of natural selection: “It is not the strongest of the species that survive, nor the most intelligent, but the one most responsive to change.”</p> <section class="article-footer"> <div class="social-share-nav"> <ul> <li> <a href="http://twitter.com/share?text=How%20pharmaceutical%20manufacturers%20can%20respond%20to%20change%20in%20the%20new%20world&url=https%3A%2F%2Fmanufacturingchemist.com%2Fhow-pharmaceutical-manufacturers-can-respond-to-change-in-the-new-world-175950" target="_blank" title="Share on X"> <i aria-hidden="true" class="twitter-share-button circle-icon large x-icon"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> <path d="M8 2H1L9.26086 13.0145L1.44995 21.9999H4.09998L10.4883 14.651L16 22H23L14.3917 10.5223L21.8001 2H19.1501L13.1643 8.88578L8 2ZM17 20L5 4H7L19 20H17Z"></path> </svg> </i> <span class="visually-hidden">Share on X</span> </a> </li> <li> <a href="https://www.linkedin.com/shareArticle?mini=true&url=https://manufacturingchemist.com/how-pharmaceutical-manufacturers-can-respond-to-change-in-the-new-world-175950&title=How%20pharmaceutical%20manufacturers%20can%20respond%20to%20change%20in%20the%20new%20world&summary=COVID-19%20has%20severely%20impacted%20the%20pharmaceutical%20industry%20and%20the%20supply%20challenges%20it%20has%20caused%20look%20set%20to%20persist%20for%20the%20foreseeable%20future%2C%20says%20Young%20Baik%2C%20Director%2C%20Industry%20and%20Solutions%2C%20Kinaxis&source=https%3A%2F%2Fmanufacturingchemist.com%2Fhow-pharmaceutical-manufacturers-can-respond-to-change-in-the-new-world-175950" target="_blank" title="Share on LinkedIn"> <i aria-hidden="true" class="circle-icon large ri-linkedin-fill"></i> <span class="visually-hidden">Share on LinkedIn</span> </a> </li> <li> <a href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fmanufacturingchemist.com%2Fhow-pharmaceutical-manufacturers-can-respond-to-change-in-the-new-world-175950" target="_blank" title="Share on Facebook"> <i aria-hidden="true" class="circle-icon large ri-facebook-fill"></i> <span class="visually-hidden">Share on Facebook</span> </a> </li> </ul> </div> <div class="block block-companies large"> <div class="block-inner"> <div class="block-grid"> </div> <div class="seeAlso"> <ul> <li>Companies:</li> <li> Kinaxis </li> </ul> </div> <a title="Directory" href="/directory"><span class="read-more arrow-link">See more</span></a> </div> </div> </section> </article> <sidebar class="sidebar"> <div class="block tip-trigger"> <h3 class="has-icon block-header"><i class=" ri-heart-line" aria-hidden="true" focusable="false"></i>You may also like</h3> <div class="block-inner"> <a href="/tag/distribution" class="category-label">Distribution</a> <a href="/cardinal-health-chooses-kinaxis-supply-chain-software-198774"> <div class="featured-image"> <div class="featured-image-inner" data-bg="/article-image-alias/cardinal-health-chooses-kinaxis-supply-chain.jpg"></div> </div> <h3>Cardinal Health chooses Kinaxis supply chain software</h3> <span class="read-more arrow-link">Read more</span> <div class="tooltip">Cardinal will focus on initial implementation efforts of the software within its at-Home Solutions business, with an expected completion date of Summer 2022 </div> </a> </div> </div> <div class="block block-top-five"> <h3 class="has-icon block-header"><i class=" ri-arrow-right-up-line" aria-hidden="true" focusable="false"></i>Trending Articles</h3> <div class="block-inner"> <ol> <li> <div class="tip-trigger"> <a href="/get-ahead-in-the-pharmaceutical-industry-with-a"> Get ahead in the pharmaceutical industry with a Manufacturing Chemist subscription <span class="tooltip">With a Manufacturing Chemist subscription you receive exclusive access to the latest news, technical insights, regulatory updates, and market intelligence </span> </a> </div> </li> <li> <div class="tip-trigger"> <a href="/takeda-china-international-trading-begins-operations-83142"> Takeda (China) International Trading begins operations <span class="tooltip">Will serve as a central hub for importing Takeda products into China </span> </a> </div> </li> <li> <div class="tip-trigger"> <a href="/phastar-clinical-intelligence-platform-best-of-show-scope-us-2025"> Phastar&#039;s Clinical Intelligence Platform voted &#039;Best of Show&#039; at SCOPE US 2025 <span class="tooltip">The technology utilises data visualisations and analytics to provide real-time access to clinical trial data, while also assisting in the development of risk assessments, KRI tracking and central monitoring </span> </a> </div> </li> <li> <div class="tip-trigger"> <a href="/m3diseen-ai-software-in-3d-printing-pharmaceuticals-170486"> M3DISEEN: AI software in 3D printing pharmaceuticals <span class="tooltip">This new technology could revolutionise the 3D printing of pharmaceuticals by removing the need for expertise of the properties of materials individually and in combination </span> </a> </div> </li> <li> <div class="tip-trigger"> <a href="/indian-government-bans-three-medicines-owing-to-health-risks-89665"> Indian government bans three medicines owing to health risks <span class="tooltip">Decision follows strong stand on suspending marketing of all drugs prohibited for sale in other countries, including the US, UK, EU and Australia </span> </a> </div> </li> </ol> </div> </div> <div class="block block-event"> <h3 class="has-icon block-header"><i class=" ri-calendar-close-line" aria-hidden="true" focusable="false"></i>Upcoming event</h3> <div class="block-inner"> <a href="/pharma-packaging-and-labelling-forum" class="block-inner event-block"> <span> <i class="ri-calendar-event-line ri-2x"></i> <h3>Pharma Packaging and Labelling Forum</h3> <byline>5–6 March 2025 | Conference | San Diego, US</byline> </span> </a> <a href="/events"><span class="read-more arrow-link">See all</span></a> </div> </div> </sidebar> </div> </div> </div> <script> document.addEventListener("DOMContentLoaded", function () { // Replace &nbsp; in blockquote elements document.querySelectorAll("blockquote").forEach(function(blockquote) { blockquote.innerHTML = blockquote.innerHTML.replace(/&nbsp;/g, ''); }); /* FitVids 1.1 - Vanilla JS version */ (function () { function fitVids(selector, options = {}) { const settings = { customSelector: options.customSelector || null, ignore: options.ignore || null, }; if (!document.getElementById("fit-vids-style")) { const css = ` .fluid-width-video-wrapper { width: 100%; position: relative; padding: 0; } .fluid-width-video-wrapper iframe, .fluid-width-video-wrapper object, .fluid-width-video-wrapper embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } `; const style = document.createElement("style"); style.id = "fit-vids-style"; style.innerHTML = css; document.head.appendChild(style); } const selectors = [ 'iframe[src*="player.vimeo.com"]', 'iframe[src*="youtube.com"]', 'iframe[src*="youtube-nocookie.com"]', 'iframe[src*="kickstarter.com"][src*="video.html"]', 'object', 'embed', ]; if (settings.customSelector) { selectors.push(settings.customSelector); } const ignoreList = settings.ignore ? `.fitvidsignore, ${settings.ignore}` : ".fitvidsignore"; document.querySelectorAll(selector).forEach(function(element) { const videos = element.querySelectorAll(selectors.join(",")); videos.forEach(function(video) { if (video.closest(ignoreList)) return; if (video.tagName.toLowerCase() === "embed" && video.closest("object")) return; if (video.closest(".fluid-width-video-wrapper")) return; let height = video.tagName.toLowerCase() === "object" || !isNaN(parseInt(video.height)) ? parseInt(video.height) : video.clientHeight; let width = !isNaN(parseInt(video.width)) ? parseInt(video.width) : video.clientWidth; let aspectRatio = height / width; const wrapper = document.createElement("div"); wrapper.className = "fluid-width-video-wrapper"; wrapper.style.paddingTop = (aspectRatio * 100) + "%"; video.parentNode.insertBefore(wrapper, video); wrapper.appendChild(video); video.removeAttribute("height"); video.removeAttribute("width"); }); }); } // Initialize FitVids on ".main" selector fitVids(".main"); // Script for ad insertion based on article length and children count const regex = /(<([^>]+)>|\r\n|\n|\r)/ig; const primaryAd = document.querySelector('.mobile-ad-01')?.innerHTML || ''; const secondaryAd = document.querySelector('.mobile-ad-02')?.innerHTML || ''; const tertiaryAd = document.querySelector('.mobile-ad-03')?.innerHTML || ''; const articleHeaderHeight = document.querySelector('.header')?.offsetHeight || 0; const articleContentHeight = document.querySelector('.article-header')?.offsetHeight + document.querySelector('.article')?.offsetHeight || 0; const article = document.querySelector('.article')?.textContent || ''; const articleChildrenCount = document.querySelector('.article')?.children.length || 0; const articleCharCount = article.replace(regex, "").length; let childCount = 1; if (articleCharCount > 2000 && articleChildrenCount >= 10) { Array.from(document.querySelector('.article').children).forEach(function(para) { const position = para.getBoundingClientRect().top; if (childCount === 3) para.insertAdjacentHTML("afterend", primaryAd); if (childCount === 7) para.insertAdjacentHTML("afterend", secondaryAd); if (childCount === articleChildrenCount) para.insertAdjacentHTML("beforebegin", tertiaryAd); childCount++; }); } })(); }); </script> <section class="you-may-also-like"> <h2 class="span-header"><span>You may also like</span></h2> <div class="width-container wide"> <div class="padding"> <div class="fixed-grid"> <div class="block half-mob"> <div class="block-inner tip-trigger"> <a href="/tag/distribution" class="category-label">Distribution</a> <a href="/cardinal-health-chooses-kinaxis-supply-chain-software-198774"> <div class="featured-image"> <div class="featured-image-inner" data-bg="/article-image-alias/cardinal-health-chooses-kinaxis-supply-chain.jpg"></div> </div> <h3>Cardinal Health chooses Kinaxis supply chain software</h3> <div class="tooltip above">Cardinal will focus on initial implementation efforts of the software within its at-Home Solutions business, with an expected completion date of Summer 2022 </div> <!--span class="read-more arrow-link">Read more</span--> </a> </div> </div> <div class="block half-mob"> <div class="block-inner tip-trigger"> <a href="/tag/pharmaceutical" class="category-label">Pharmaceutical</a> <a href="/doubling-down-on-the-triple-threat-165978"> <div class="featured-image"> <div class="featured-image-inner" data-bg="/article-image-alias/doubling-down-on-the-triple-threat.jpg"></div> </div> <h3>Doubling down on the triple threat</h3> <div class="tooltip above">Bill DuBois, Director at Kinaxis, explains how life sciences can build pandemic-ready supply chains </div> <!--span class="read-more arrow-link">Read more</span--> </a> </div> </div> <div class="block half-mob"> <div class="block-inner tip-trigger"> <a href="/tag/manufacturing" class="category-label">Manufacturing</a> <a href="/key-advantages-of-vacuum-tray-drying"> <div class="featured-image"> <div class="featured-image-inner" data-bg="/article-image-alias/key-advantages-of-vacuum-tray-drying.jpg"></div> </div> <h3>Key advantages of vacuum tray drying</h3> <div class="tooltip above">Vacuum tray drying is a tried-and-trusted method in critical industries, like biotech and pharmaceutical manufacturing. It lends itself to high-throughput, batch-drying processes and remains one of the most effective and efficient techniques for heat-sensitive materials </div> <!--span class="read-more arrow-link">Read more</span--> </a> </div> </div> <div class="block half-mob"> <div class="locked-story"> <div class="locked-story-inner"> <i aria-hidden="true" focusable="false" class="ri-lock-line"></i> <div class="tooltip below"><span>You need to be a subscriber to read this article. <br><a title="Subscribe" href="/get-ahead-in-the-pharmaceutical-industry-with-a">Click here</a> to find out more.</span> </div> </div> </div> <div class="block-inner tip-trigger"> <a href="/tag/digital" class="category-label">Digital</a> <a href="/driving-efficiency-gains-the-value-of-iiot-and"> <div class="featured-image"> <div class="featured-image-inner" data-bg="/article-image-alias/driving-efficiency-gains-the-value-of-2.jpg"></div> </div> <h3>Driving efficiency gains: the value of IIOT and connected applications</h3> <div class="tooltip above">Real-time data collection and analysis are at the heart of IIoT; by continuously monitoring equipment and production processes, manufacturers can detect anomalies, predict equipment failures and take corrective actions before issues escalate </div> <!--span class="read-more arrow-link">Read more</span--> </a> </div> </div> <div class="block half-mob"> <div class="block-inner tip-trigger"> <a href="/tag/digital" class="category-label">Digital</a> <a href="/phastar-clinical-intelligence-platform-best-of-show-scope-us-2025"> <div class="featured-image"> <div class="featured-image-inner" data-bg="/article-image-alias/phastar-s-clinical-intelligence-platform-voted-best.jpg"></div> </div> <h3>Phastar&#039;s Clinical Intelligence Platform voted &#039;Best of Show&#039; at SCOPE US 2025</h3> <div class="tooltip above">The technology utilises data visualisations and analytics to provide real-time access to clinical trial data, while also assisting in the development of risk assessments, KRI tracking and central monitoring </div> <!--span class="read-more arrow-link">Read more</span--> </a> </div> </div> <div class="block half-mob"> <div class="block-inner tip-trigger"> <a href="/tag/manufacturing" class="category-label">Manufacturing</a> <a href="/probiogen-launches-new-redesigned-website"> <div class="featured-image"> <div class="featured-image-inner" data-bg="/article-image-alias/probiogen-launches-its-new-and-improved.jpg"></div> </div> <h3>ProBioGen launches its new and improved website</h3> <div class="tooltip above">The website has been redesigned for improved accessibility, so biotech and biopharmaceutical professionals can easily get access the company&#039;s services and technologies </div> <!--span class="read-more arrow-link">Read more</span--> </a> </div> </div> <div class="block half-mob"> <div class="locked-story"> <div class="locked-story-inner"> <i aria-hidden="true" focusable="false" class="ri-lock-line"></i> <div class="tooltip below"><span>You need to be a subscriber to read this article. <br><a title="Subscribe" href="/get-ahead-in-the-pharmaceutical-industry-with-a">Click here</a> to find out more.</span> </div> </div> </div> <div class="block-inner tip-trigger"> <a href="/tag/digital" class="category-label">Digital</a> <a href="/navigating-cybersecurity-challenges-in-medtech"> <div class="featured-image"> <div class="featured-image-inner" data-bg="/article-image-alias/navigating-cybersecurity-challenges-in-the-medical.jpg"></div> </div> <h3>Navigating cybersecurity challenges in the medical technology market</h3> <div class="tooltip above">Luisa Rusconi, Senior Security Evaluator at SGS, explores how the rising threat of cyberattacks has driven the implementation of stricter regulations and reviews the solutions available to MedTech suppliers as they navigate the complex landscape of evolving standards and compliance requirements </div> <!--span class="read-more arrow-link">Read more</span--> </a> </div> </div> <div class="block height01"> <a href="https://hpcimedia.com/service/signup-campaign/MCSub" class="btn">Subscribe now</a> </div> </div> </div> </div> </section> </div> <footer class="footer colourway02"> <div class="footer-section"> <div class="width-container wide"> <div class="padding"> <div class="grid"> <div class="column08 column-border"> <div class="block large"> <h2 class="headline">Become a <strong>Subscriber</strong></h2> <p></p> <a href="https://hpcimedia.com/service/signup-campaign/MCSub" class="btn submit-btn">Subscribe now</a> <small class="already-subscriber">Already a subscriber? <a href="/authentication">Sign in here.</a> </small> <a title="Subscribe" href="/get-ahead-in-the-pharmaceutical-industry-with-a" class="read-more arrow-link">Find out more</a> </div> </div> <div class="column04 flex-sm-up align-items-center-sm-up"> <div class="block"> <h3 class="has-icon block-header"><i aria-hidden="true" focusable="false" class="ri-mail-line"></i>Get our newsletter</h3> <div class="input-group"> <input type="email" placeholder="Enter your email address" required> <button class="icon-btn" type="submit" id="search-addon" onclick="location.href='https://hpcimedia.com/service/signup-campaign/MCeNews?email=' + this.previousElementSibling.value"> <i class="ri-arrow-right-line ri-xl"></i> </button> </div> <h3 class="has-icon block-header"><i aria-hidden="true" focusable="false" class="ri-share-line"></i>Follow us</h3> <div class="social-nav large"> <ul> <li> <a href="https://twitter.com/manchempharma" target="blank" title="Follow Manufacturing Chemist on X"><i aria-hidden="true" focusable="false" class="x-icon ri-2x"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> <path d="M8 2H1L9.26086 13.0145L1.44995 21.9999H4.09998L10.4883 14.651L16 22H23L14.3917 10.5223L21.8001 2H19.1501L13.1643 8.88578L8 2ZM17 20L5 4H7L19 20H17Z"></path> </svg> </i><span class="visually-hidden">X</span></a></li> <li> <a href="https://www.linkedin.com/showcase/manufacturing-chemist/" target="blank" title="Follow Manufacturing Chemist on LinkedIn"><i aria-hidden="true" focusable="false" class="ri-linkedin-fill ri-2x"></i><span class="visually-hidden">LinkedIn</span></a></li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="footer-section"> <div class="width-container wide"> <div class="padding"> <div class="grid"> <div class="column04"> <div class="logo"><img src="/images/logo.svg"/></div> </div> <div class="column08"> <div class="footer-links-wrapper grid"> <div class="column04"> <ul class="footer-links"> <li> <a href="https://hpcimedia.com/manufacturing-chemist/">About Manufacturing Chemist</a> </li> <li><a href="https://hpcimedia.com/">About HPCi Media</a></li> <li> <a href="https://hpcimedia.com/service/signup-campaign/MCeNews">Newsletter sign up</a></li> <li><a href="https://hpcimedia.com/">Contact Us</a></li> </ul> </div> <div class="column04"> <ul class="footer-links"> <li><a href="https://hpcimedia.com/manufacturing-chemist/">Advertise</a></li> <li><a href="https://hpcimedia.com/tsandcs/">Terms and Conditions</a></li> <li><a href="https://hpcimedia.com/privacy-policy/">Privacy</a></li> </ul> </div> <div class="column04"> <small>© HPCi Media Limited | Registered in England No. 06716035 | VAT GB 939828072 | a Claverley Group company</small> <small>Registered office address: <br>One Anchorage Avenue, <br> Shrewsbury Business Park, <br>Shrewsbury, <br>SY2 6FG, UK.</small> </div> </div> </div> </div> </div> </div> </div> </footer></body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10