NET/MASTER RMS Management and Operations Guide

ZRMSAPIN ( GETDELAYED )
RMS Procedure Calls
115415 NonStop NET/MASTER RMS Management and Operations Guide C–9
Examples
1. The following example illustrates a user NCL procedure that retrieves information
about all delayed message actions under all managers:
SAMPLE: PROCEDURE
ZRMSAPIN (GETDELAYED) SHARE &RMS.,&SYSMSG
END SAMPLE
2. The following example illustrates a user NCL procedure that retrieves information
about all delayed message actions for subjects beginning with $LINE (for example,
$LINE1, $LINE2, $LINEZ, $LINE99, and so on):
SAMPLE: PROCEDURE
&SUB=“$LINE”
ZRMSAPIN (GETDELAYED,&SUB) SHARE &RMS.,&SYSMSG
END SAMPLE
3. The following example illustrates a user NCL procedure that retrieves information
about all delayed message actions for subjects beginning with TERM (for example,
TERM1, TERM2, TERMZ, TERM99, and so on) under the manager $XXPM:
SAMPLE: PROCEDURE
&SUB=“TERM”
&MGR=“$XXPM”
ZRMSAPIN (GETDELAYED,&SUB,&MGR) SHARE &RMS.,&SYSMSG
END SAMPLE