NET/MASTER Management Services (MS) Command Reference Manual

DEBUG MODIFY
NonStop NET/MASTER MS Commands
2–48 115412 Tandem Computers Incorporated
{ VAR | VBL }=
variable-name
specifies a variable name. NCL modifies the specified variable.
Note You must omit the leading ampersand (&) from the variable name.
VAL[ =
value
]
specifies the value of the specified variable. Omitting a value (by specifying VAL
without [ =
value
]) assigns a null value to the variable.
Considerations
The default authority level of this command is 1.
You can enter this command from any NCL procedure, except the INIT NCL
procedure, by using either the CMD core statement or the INTCMD verb.
For related information, see the other DEBUG commands and the EXEC, FLUSH,
SHOW NCL, and START commands.
Examples
1. The following example modifies the variable &ABC in the NCL process with the
NCL ID of 1234:
DEBUG MODIFY ID=1234 VBL=ABC VAL=7
2. The following example is the abbreviated form of the preceding example:
DEB M ID=1234 V=ABC VAL=7
3. The following example assigns a null value to the variable &ABC:
DEB M ID=1234 V=ABC VAL