Passing Information to Another Screen on Button Click

I have added a button to our Job Entry screen that calls a BAQ Report form that I added to the menu. The BAQ Report form consists of 2 fields, Part Number and Rev.

When the button is clicked, I would like to gather the Part Number and Revision from the Job Entry screen and pass it into the Option fields in the BAQ Report form.

Is what I’m trying to do possible? If so, can anyone point me in the right direction? Thanks in advance.

Yes. When launching the BAQ report form with the button click overload the ProcessCaller.LaunchForm method with LaunchFormOptions.

LaunchFormOptions has a property called ValueIn, which you can set as a string array to hold the part number and revision.

Then in another customization for the BAQ report form, use the incoming LaunchFormOptions to populate your option fields.

1 Like