Uncategorized

6 ERP “Must Haves” for Tracking Chain of Custody within the Autologous CGT Industry 

In the autologous* cell and gene therapy (CGT) industry, tracking the path from patient to product is not just a regulatory requirement; it's at the heart of patient safety and product integrity. An Enterprise Resource Planning (ERP) system plays a crucial role in this process.  *(Lonza does a nice job of explaining the difference between autologous and allogeneic cell therapies here.)   Here are six essential features an ERP system should possess to ensure a reliable chain of custody: Patient Data Management and Sample Control  Supply Chain Optimization  Storage Controls  Electronic Batch Records Real-time Tracking and Traceability   Dynamic Demand Forecasting  Patient Data Management and Sample Control  Patient sample control is the...

read more

The Value of Merit’s Apps and Innovation Team

A vast majority of organizations handle business processes with more than one ERP solution. Even though powerful and versatile end-to-end systems like Microsoft Dynamics 365 exist, the reality is, some aspects of your business are going to go through 3rd party apps and add-ons. This is completely understandable for a multitude of reasons, but it’s also where challenges with integration can loom. Getting everything to work with your main system, exchange data accurately and remain practical to use sounds daunting, but it doesn’t have to be. This is where Merit’s Apps and Innovation Team excels. Complementing Strengths with Innovation Merit Solutions is among the few Microsoft partners capable of complementing your system with additional capabilities on any platform and any device. Whether...

read more

Render report to memory stream D365 (aka AX7)

Recently I was tasked with an upgrade of a functionality we have on AX2012 to Dynamics365, which includes running the report from the code and attaching it to the caller record. As you are probably aware of, this was very easy to accomplish in the earlier Microsoft Dynamics AX versions, where you could simply run the report to a file, save it locally and attach it to the record using the DocuActionArchive class. Things are a bit more complicated when it comes to D365 in cloud. You are no longer able to save the file locally (for example using System.IO.Path::GetTempPath() + fileName) as storage is now moved to Azure and files are stored as a Blob. You may have also noticed that most of the classes that work with files now use stream objects with their content type instead. In order to...

read more

Disable/Enable New Button Using Extensions in new Microsoft Dynamics AX

The requirement is to add menu item button on Job card form that will be enabled if the production order has any quality orders, disabled otherwise. It should open the quality order related to production order. These are the steps: Create form extension and add new menu item button Make sure that you set the button property AutoDeclaration to Yes. This menu item will open the Quality orders form. The data source on the new menu item button should be set to ProdTable. Create new class called the same as the form followed by EventHandler This form has a method called setButtonAccess. It will be extended by creating new Pre-EventHandler method. Right click on the setButtonAcess, select Copy event handler method and Pre-event handler. Go to the class and paste select event handler method....

read more