NET/MASTER Network Control Language (NCL) Reference Manual
START
Verbs
106126 Tandem Computers Incorporated 3–183
The following example starts an NCL procedure called ABC in the background
processing environment in which LOGP executes. NCL searches for ABC, beginning
with the user procedure library of LOGP. Execution is synchronized. The first 10
bytes of all variables starting with &A and ending with a digit from 1 through 64 are
passed to the started NCL process; the started NCL process generates variables from
&1 through &64 to hold the values that are passed:
START PROC=ABC ENV=LOGP NOTIFY=YES VARS=&A* SEGMENT=10
The following example starts an NCL procedure called ABC in the background
processing environment in which BLOG executes. NCL searches for ABC, beginning
with the user procedure library of BLOG. Execution is not synchronized. The MDO
variable &VAR. is passed to the started NCL process and placed in the &$PRM. MDO
variable:
START PROC=ABC ENV=BLOG NOTIFY=NO MDO=&VAR.