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.
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.
Add your instructions in Application.startupPost()
:
if (new Session().clientKind() == ClientType::Server)
{
this.fuzzyTheBatchJobs();
}