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 |
At what stage, operator can change the class and priority of a submitted job?
What is the purpose of include statement in a JCL?
What is the error/SOC code if dd names are not sysut1 and sysut2 in IEBGENER?
A dd statement consists of 4 fields. Name them?
What is a GDG? How is it referenced? How is it defined? What is a MODELDSCB?
How do you restart a step in JCL?
Suppose I have Five Steps in PROC In this Case I want to Execute third Step in PROC using Main JCL don't use any COND Explain with Coding Thanks & Regards SHREE
What are SD37, SB37, SE37 abends?
What is GDG?
Which COND paramter will u use to execute the step only if the previous step does not execute
How to find the number of duplicates in a file using Sort?
What is the difference between sb37,se37,sd37 each?