NET/MASTER Network Control Language (NCL) Reference Manual
&SYS.GUID.GROUP
System Variables
106126 Tandem Computers Incorporated 5–45
&SYS.GUID.GROUP The &SYS.GUID.GROUP system variable contains the group number under which an
NCL procedure is currently running. The value is placed there by the operating
system software.
&SYS.GUID.GROUP
Example
The following example displays the Guardian group number under which the
procedure named GUIDG is running:
GUIDG: PROCEDURE
SAY "THE GUARDIAN GROUP CURRENTLY RUNNING IS",
&SYS.GUID.GROUP
END GUIDG
&SYS.GUID.USER The &SYS.GUID.USER system variable contains the user number under which an NCL
procedure is currently running. The value is placed there by the operating system
software.
&SYS.GUID.USER
Example
The following example displays the Guardian user number under which the
procedure named GUIDU is running:
GUIDU: PROCEDURE
SAY "THE GUARDIAN USER NUMBER CURRENTLY RUNNING IS",
&SYS.GUID.USER
END GUIDU