NET/MASTER RMS Management and Operations Guide
ZRMSAPIN ( FREEZE )
RMS Procedure Calls
115415 NonStop NET/MASTER RMS Management and Operations Guide C–15
Examples
1. The following example illustrates a user NCL procedure that freezes the subject
named $LINE1:
SAMPLE: PROCEDURE
&SUB=“$LINE1”
CALL ZRMSAPIN (FREEZE,&SUB) SHARE &SYSMSG
END SAMPLE
2. The following example illustrates a user NCL procedure that freezes the subject
named TERM11 under the manager $XXPM:
SAMPLE: PROCEDURE
&SUB=“TERM1”
&MGR=“$XXPM”
CALL ZRMSAPIN (FREEZE,&SUB,&MGR) SHARE &SYSMSG
END SAMPLE
3. The following example illustrates a user NCL procedure that freezes all subjects
under the manager $XXPM:
SAMPLE: PROCEDURE
&SUB=“*”
&MGR=“$XXPM”
CALL ZRMSAPIN (FREEZE,&SUB,&MGR) SHARE &SYSMSG
END SAMPLE