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
My Question is 1. How to cound no. of records in JCL. Please explain with an example. 2. How to execute only odd steps in JCL? I know EDIT TYPE = Inculde, Step Name = 1,3,5 and COND code for all even step. Anyone knows other than this.
What dd statement is used to supply the name of a dataset?
What is the function of dd name parameter with a 2 part structure; audit.report?
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) ?
How to alter the parameters for the existing gdg?
How can return codes be tested before execution of a job step?
Name the statement which can be used to send data to another mvs jes3 node?
What is the format of comment statement?
Can an individual step be restricted from using all the jobs allowed cpu time?
how you will the direct the data to spool using sysout option?
What do you understand by the terms: joblib and steplib?
Explain the purpose of the dd keylen parameter?
What are the parameter we cannot use in procedure? How many instream we can write in single jcl?
when does a dataset go uncataloged?
in order to execute step2 a job after a return code of 8 in step1, what condition you will code in step2?