AX / D365FO – Force Batch Processing in SysOperationFramework class

If you have a SysOperation-framework class and want use a dialog to execute it via batch by default, you can activate this checkbox by including a call to parmBatchExecute() in the UIBuilder:

public void build()
{
    super();
    this.controller().batchInfo().parmBatchExecute(NoYes::Yes);
}

When you’ll execute the class the checkbox will be activated by default

Leave a comment