NET/MASTER Management Services (MS) System Management Guide
Customizing the NCL Procedure Search Path
Customizing the Operations Environment
115414 NonStop NET/MASTER MS System Management Guide 5–19
Specifying the Search
Order Through the
Customized Search Path
When you customize the search order of the NCL procedure search path, you cannot
change the search order through the NCL procedure library search path. However,
you can change the number and order of the NCL object file(s) searched by using the
SYSPARMS NCLOBJPATH command.
The PARAM NCLDISTCODE command sets the default value of the SYSPARMS
NCLOBJPATH command. By default, this is the name of the distributed NCL object
file. That is, by default, the distributed NCL object file is searched after the
distribution procedure library. The complete default NCL procedure search path is
the following:
1. User procedure library
2. System procedure library, which includes the following:
a. Customized procedure library
b. Distribution procedure library
3. Distributed NCL object file
The SYSPARMS NCLOBJPATH command can specify a single NCL object file or a list
of NCL object files. If you specify a list, the NCL object files are searched in the order
specified.
For example, to put the distributed NCL object file (NCODE) first, followed by a list of
NCL object files that you create (NCLOBJ1, NCLOBJ2, and NCLOBJ3), use the
following command:
SYSPARMS NCLOBJPATH=($DATA.ZNNMNDO.NCODE,
$DATA.ZNNMNCO.NCLOBJ1,
$DATA.ZNNMNCO.NCLOBJ2,
$DATA.ZNNMNCO.NCLOBJ3)
Using this example, the customized NCL procedure search path is:
1. User procedure library
2. System procedure library, which includes the following:
a. Customized procedure library
b. Distribution procedure library
3. Distributed NCL object file, $DATA.ZNNMNDO.NCODE
4. Additional NCL object file, $DATA.ZNNMNCO.NCLOBJ1
5. Additional NCL object file, $DATA.ZNNMNCO.NCLOBJ2
6. Additional NCL object file, $DATA.ZNNMNCO.NCLOBJ3