NET/MASTER Network Control Language (NCL) Reference Manual

&SYS.PANEL.MODFLD
System Variables
106126 Tandem Computers Incorporated 5–83
Example
In the following example, the procedure MOD_PROC tests the
&SYS.PANEL.MODFLD system variable and selects a new panel based on the
contents:
MOD_PROC: PROCEDURE
PANEL NAME = NAMEADDR
VALIDATE:
/* jump to next panel */
IF &SYS.PANEL.MODFLD = NAME1
THEN
GOTO NEXTPANEL
IF &NAME = NAME2
THEN…
NEXTPANEL:
END MOD_PROC