how to override PROC? please give answer in details. Please
mention how to write it in JCL. Thanks in advance.
Answer Posted / kalpana dwivedi
For Override a proc, syntax is
Stepname.Ddname
For exapmle in a jcl proc is called as
//STEP1 EXEC=PROC1
and PROC1 contains a dd statement
//DD1 DSN=ESDSKXD.REXX.DATA,DISP=SHR
For overriding the DD1 of PROC1, syntax would be:
//STEP1.DD1 DSN=ESDSKXD.REXX.DATA,DISP=SHR
| Is This Answer Correct ? | 14 Yes | 2 No |
Post New Answer View All Answers
Why include statement is used in a jcl?
which utility is used a dummy utility?
what is JCL?
Explain how can values be passed from the job stream to an executable program?
I have 60 steps in the JCL and want to Execute Only First from PROC by overriding in JCL ?
when can a job time-out occur? How to overcome that?
I want to join to input files and write the matching fields on to an output file but i dont want the output file a sorted one
What is the use of symbol // in jcl?
can any one plzzzzzz tell the jcl code for creating ps using idcams
When output dataset space is required, what quantity categories are used?
We can use PASS with permanent datasets also. THEN Which is the condition in which we may use PASS (instead of KEEP) with permanent data sets, while there is no need to specify UNIT and VOL for them like temporary data sets (in cas we use KEEP for permanent data sets) ?
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.
What are the parameters that are used in creating a gdg?
how can you check if a file is empty using jcl?
In job processing, what happens in execution stage?