Status property: ProcessRequest class
Description
This property returns a number based on the result of the last execution of the Schedule method.
Valid returns are:
-
Zero if the method succeeded
-
Non-zero otherwise
This property is read-only.
Example
&MYRQST.Schedule();
If &MYRQST.Status = 0 then
/* Schedule succeeded. */
Else
/* Process (job) not scheduled, do error processing */
End-If;