Anchor | ||||
---|---|---|---|---|
|
...
Method | Syntax | IBM i | HP NonStop | UNIX | Windows | z/OS |
---|---|---|---|---|---|---|
Configuration File Keyword | jcl_library ddname,dataset[UAG520:,dataset]... |
Anchor | ||||
---|---|---|---|---|
|
...
There is no default value.
Examples
Panel |
---|
<pre>
jcl_library prod,sys1.jcl.cntl,sys2.jcl.cntl
</pre>
|
This example illustrate two data sets being allocated to ddname PROD.
sys1.jcl.cntl
will be first in the concatenation since it is first in the data set list.
Panel | |
---|---|
Html bobswift | jcl_library prod,sys1.jcl.cntl
jcl_library prod,sys2.jcl.cntl
jcl_library "test, test1.jcl.cntl, +
test2.jcl.cntl, +
test3.jcl.cntl"
</pre>
|
This example illustrates two ddnames being allocated, PROD and TEST.
...