How can I execute custom code when the AOT Service Starts on the Server in MS Dynamics AX?

 
 
 
 
 
 
 
 
 
 
 
Another place could beSysStartupCmdBatchRun.infoRun()which is executed if you start your batch with a command line option -startcmd=Batch 
Add your instructions in Application.startupPost():
if (new Session().clientKind() == ClientType::Server)
{
   this.fuzzyTheBatchJobs();
}

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.