NET/MASTER RMS Management and Operations Guide

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