NET/MASTER RMS Management and Operations Guide

ZRMSAPIN ( DELQUEUED )
RMS Procedure Calls
C–4 115415 NonStop NET/MASTER RMS Management and Operations Guide
ZRMSAPIN ( DELQUEUED )
The ZRMSAPIN ( DELQUEUED ) procedure call deletes queued rule actions.
CALL ZRMSAPIN ( DELQUEUED,
ncl-id
) SHARE &SYSMSG
ID=
ncl-id
specifies the NCL ID of a queued rule action. You can determine an NCL ID by
using the ZRMSAPIN ( GETQUEUED ) procedure call.
Consideration
After the ZRMSAPIN ( DELQUEUED ) procedure call completes, the system
variable &SYS.RETCODE is set to one of the following values:
Return Code Description
0 The request was completed successfully.
4 No action—the queued rule action was not found.
16 Any other internal error; more information available in &SYSMSG.
Example
The following example illustrates a user NCL procedure that deletes the queued rule
action with the NCL ID 10:
SAMPLE: PROCEDURE
&NCLID=10
CALL ZRMSAPIN (DELQUEUED,&NCLID) SHARE &SYSMSG
END SAMPLE