OnProcessLaunch
Syntax
OnProcessLaunch(&appInst)
Description
This method is called with the newly-launched approval process instance, after the launch operation is successful.
Parameters
| Parameter | Description |
|---|---|
|
&appInst |
As EOAW_CORE:ENGINE:AppInst. |
Returns
None.
Example
method OnProcessLaunch
/+ &appInst as EOAW_CORE:ENGINE:AppInst +/
/+ Extends/implements EOAW_CORE:ApprovalEventHandler.OnProcessLaunch +/
&appInst.thread.SetAppKeys(&vndrRecord);
%This.updateProcessFlag(&PENDING);
end-method;