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 |
Describe the JOB statement, its meaning, syntax and significant keywords?
Is there a way to check for an empty file in JCL other than using IEBCOMPR and the command PRINT COUNT(1)?
How to send data from cobol program to jcl?
explain concatinating datasets?
describe the job statement, its meaning,syntax and significant keywords?
restart logic ?
what is the JCL statement consists of?
Say I have a file with 12 records. Each record has the name of the month. I have to append data in these 12 records into 1 record. How is it possible?
how to convert fb to vb in jcl ?
In my JCL 10 Steps Will Be there Now i want to execute step05 And step06. How to Give the Cond?
What is the parameter to be passed in the job card for the unlimited time , irrespective of the job class ?
how do u send return code from cobol to jcl ?