Hello,
I have a requirement as given below.
Requirement: Create new batch that can be run from production order list page. This should be multi seleted. When the button is clicked it should open form and display selected records to edit few field values if required.
Batch is created using sysoperation framework. New custom form is created with simple grid in it. Able to open form through templateForm() of controller class.
Issue: When the button is clicked, it is showing all the production orders. I have added the code to filter the data in form method, which works if form is opened directly without sysoperation framework. When sysopration framework is used the form is not getting element object or any argument and showing all the production orders.
Question: How to pass the argument from controller class to this new form? So that this can be used to filter the records.
Thanks in advance!