NET/MASTER RMS Management and Operations Guide

ZRMSAPIN ( DELDELAYED )
RMS Procedure Calls
115415 NonStop NET/MASTER RMS Management and Operations Guide C–3
ZRMSAPIN ( DELDELAYED )
The ZRMSAPIN ( DELDELAYED ) procedure call deletes delayed message actions.
These are message actions that have requested a retry after a delay.
CALL ZRMSAPIN ( DELDELAYED,
ncl-id
) SHARE &SYSMSG
ID=
ncl-id
specifies the NCL ID of a delayed message action. You can determine an NCL ID
by using the ZRMSAPIN ( GETDELAYED ) procedure call.
Consideration
After the ZRMSAPIN ( DELDELAYED ) 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 delayed message 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 delayed
message action with the NCL ID 10:
SAMPLE: PROCEDURE
&NCLID=10
CALL ZRMSAPIN (DELDELAYED,&NCLID) SHARE &SYSMSG
END SAMPLE