vote up 0 vote down star

I need to switch off certain some batch jobs when DAX has been restarted. How can I accomplish this?

Note from Author: This is most likely a X++ programming question and not configurable.

flag

1 Answer

vote up 1 vote down

Add your instructions in Application.startupPost():

if (new Session().clientKind() == ClientType::Server)
{
   this.fuzzyTheBatchJobs();
}
link|flag
1  
I have not this myself, only in the context of ClientType::Client. – Jan B. Kjeldsen Aug 6 at 8:14
1  
Another place could be SysStartupCmdBatchRun.infoRun() which is executed if you start your batch with a command line option -startcmd=Batch. – Jan B. Kjeldsen Aug 6 at 8:17
Thanks very much for this - I will give it a try. – mm2010 Aug 7 at 13:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.