How to overide the symbol parameter in the jcl ?
Answers were Sorted based on User's Feedback
Answer / karthik ramamoorthy
The Jcl using symbolic paramter looks like this
//job1 job 'abcd'
//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 ? | 6 Yes | 1 No |
Answer / 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 |
Answer / suputhru
The symbolic paramters are &file111 and &DISPooo they way to
override them are as follows.
//job1 job 'abcd'
//assign proc file111=test.file1,
// DISPooo=(NEW,DELETE,DELETE)
//step1 exec pgm=testpgm
//file1 dd dsn=&file111,disp=&DISPooo
| Is This Answer Correct ? | 0 Yes | 0 No |
wht is sysudump n sysout,sysprint ?
Can we write same stepname for one or more steps in on job ?
what is a MODELDSCB?
When space is allocated for an output dataset, what units can be used?
Can we use DISP=SHR in output file in JCL
whats the diff bw the evaluate also and and?
Can we browse or edit the GDG dataset if it is a tape entry?
What is Uncatalog dataset? How can we access/use them?
Can anyone tell me the syntax for printing two files at two different destinations in a single step?
Suppose a proc step has a DD statement like //ABC DD DSN=TEST.FILE1,DISP=SHR DSN=TEST.FILE2,DISP=SHR and the above DD name is overridden from the JCL as given below //procstepname.ABC DD DSN=TEST.FILE3 - Will the DD statement now have just TEST.FILE3 or it will be TEST.FILE3 and TEST.FILE2? Suppose if it is overridden twice like //procstepname.ABC DD DSN=TEST.FILE3 //procstepname.ABC DD DSN=TEST.FILE4 Will this give a JCL error? If not, what will be final output?
What is GDG and what is the maximum limit of versions that can be created?
What is the function of the dd dcb keyword?