Greetings fellow reader.
As the title says, I have implemented a batch job task using SysOperationFramework where the executing code is in the class BatchProcessing and has a method processRecords. Furthermore, A class extending SysOperationServiceController was created that calls the BatchProcessing.processRecords() method when executed.
The controller class is added to an action menu item, and then set on the object property of a menu item button on a form. The problem occurs when I click on the action menu item button. It opens a dialog form with parameters (whether recurrent, when to start, etc). I want to avoid it completely and let the code execute immediately (with batch processing dialog param set to checked true) without letting parameters be explicitly set on form by a user. How would I do this?