How to overide the symbol parameter in the jcl ?
Answer Posted / 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 |
Post New Answer View All Answers
The disp in the JCL is MOD and the program opens the file in OUTPUT mode. What happens ? The disp in the JCL is SHR and the pgm opens the file in EXTEND mode. What happens ?
How can the submitting users racf authority be overridden in a job stream?
how you can access an uncataloged dataset in a JCL?
How can the attributes of one sms dataset be copied to another dataset?
I have a job called careerride and some steps in it as step1,step2. But I want to execute step2 before step1 ? How do I do that?
what operation is performed by job statement?
Is condition checking possible in jcl? If yes, how?
What is the significance of addrspc parameter in exec statement?
Explain about LMQUERY�give a dialog information about a data set
What is the difference between run mode and addressing mode?
What are the 4 fields in dd statement?
Name the statement which can be used to send data to another mvs jes3 node?
Matching Logic in Jcl not in cobol.Could any one please answer this question
When The Define Jcl Is Not Available, How Can You Get Information About A Vsam File's Organisation ?
I have many files which i am receiving from client everyday. I have one step for every file to check for empty or not. Here client gives 30 files i need to check for every file for empty or not and i need to perform 30 steps. Can I do it in single step. Dynamically i need to change the File name in my step.