Hello,
Could you please tell me how to call any logic when you click on the cancel button in the dialog of the runbasebatch class?
I have the following dialog() method:
DialogRunbase dialog = Dialog::newFormnameRunbase(formstr(NullifyRemainsByWMSLocation_ICL),this); ; dialog = this.dialogInternal(dialog); return dialog;
Method calls some specific form I have created in the AOT. According to tutorial class "Tutorial_RunBaseForm" I have added two command buttons "OK" and "Cancel" to my custom form "NullifyRemainsByWMSLocation_ICL". when I press OK button run() method of my class is called. How to call some logic after the cancel button is clicked on the form?
Thanks.