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










