How to overide the symbol parameter in the jcl ?
Answer Posted / abcd
The Jcl using symbolic paramter looks like this
//job1 job 'abcd'
//file set file=test.file1
//disp set disp=NEW,DELETE,DELETE)
//step1 exec pgm=testpgm
//file1 dd dsn=&file,
disp=&disp
The symbolic paramters are &file and &DISP they way to
override them are as follows
//job1 job 'abcd'
//assign proc file1=test.file1,
// DISP=(NEW,DELETE,DELETE)
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
What is the function of the steplib dd statement?
What does a disposition of (new,catlg,keep) for a dsn mean?
in a jcl, a large volume dataset is loaded to a table using bmcload in step1 and an image copy of the loaded table is taken using bmccopy in step2. Step2 abends because the image copy dataset cannot hold the volume of the table. How can this be rectified?
I have 60 steps in the JCL and want to Execute Only First from PROC by overriding in JCL ?
Explain how can return codes be tested before execution of a job step?
how would you create a temporary dataset? And where will you use them?
Explain the purpose of the dd keylen parameter?
How jcl work to handle various input output file operations?
by using cond parameter maximum 8 cond can be coded in single cond means ?explain
is there any way to execute more than one proc in the same exec statement at the same time..?
What is the syntax of JCL statement?
What is the format of comment statement?
Explain about ISPF/TSO Commands
What is notcat 2 - gs?
For what purpose steplib and joblib are used ?