how to override PROC? please give answer in details. Please
mention how to write it in JCL. Thanks in advance.
Answer Posted / abhilash
What you want to override in a PROC?
Lets take an example
//STEPA EXEC DEBASIS
inside the PROC DEBASIS we have
//STEPA001 EXEX .......,TIME=10
//DD01 DD .......
If you want to override a Step inside the PROC,
In JCL
//STEPA EXEC DEBASIS,TIME.STEPA001=20
If you want to override a DD statement
In JCL
//STEPA EXEC DEBASIS
//STEPA001.DD01 DD parameter=value
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
in ways data can be passed to a COBOL program from JCL?
what is the use of JCL?
which utility is used a dummy utility?
Explain the purpose of dd dummy statement?
when can a job time-out occur? How to overcome that?
how can the same proc be re-used and called by many jobs?
Explain how can a jobs execution priority be modified?
what JCL Procedures?
How jcl is used for testing batch programs?
Suppose I have a program in cobol name ”careerride” and want to execute the program by jcl. Specify the process?
What is jcl in mainframe?
if we want to use a gdg which is already created by some job, then how to use the reference of the last generation in a jcl?
How to code these statements in JCL: CLEANUP INITIAL(NO) RESTART(NO) DYNALLOC(NO) job definition..?
what is use of disp parameter in dd statement?
I have a cobol db2 program(PGM A) where other program (PGM B) will call this program and passes some 50 fields data to PGM A. PGM A has some layout in which it receives the data from PGM B. And this layout has been copied in the linkage section pf PGM A. After getting the data, PGM A writes the data in a flat file in the same layout which it receives from PGM B. PGM B is a simple COBOL pgm. Please provide a JCL to run these programs.