Posts

Showing posts from November, 2023

POST target process of entity

  Requirement:  Invoke custom jobs once the entity load is complete in DMF. Solution: writing a postTargetProcess method on the entity it will run after the import completion either succeeded or failed.      /// <summary>     /// After the entity has finished loading in the tables, it triggers a process to ship the transfer orders.     /// </summary>     /// <param name = "_dmfDefinitionGroupExecution">      /// The definition group that should be processed.     /// </param>     public static void postTargetProcess(DMFDefinitionGroupExecution _dmfDefinitionGroupExecution)     {         PopulateTransferService PopulateTransferService;         PopulateTransferContract PopulateTransferContract;         Query query;         //check if the import job is finished without errors  ...