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
Describe the various parameters utilized in the creation of a gdg?
What do we mean by 'Virtual storage' for a dataset and for a JOBSTEP ? What is the significance of the following statement for a programmer 'Virtual storage results in program addresses being independent of the addresses that actually exist in a computer' ?
What is the function of a 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.
What is one line to pass PARM from JCL to COBOL?
In sms datasets, what is the function of the dd avgrec keyword?
Is there any command to check wether the ps file is in sorted order?
what is DD statement is used in JCL?
What dd statement is used to supply the name of a dataset?
How can unused space allocation be returned to the system when a dataset is closed?
Is it possible to left uncode disp?
if the submitter of a job wants to inform another user about the job completion, how can it be done?
How gdg are concatenated?
in a jcl, a large volume dataset is loaded to a table using bmcload in step1 and an image copy of the loaded table is taken using bmccopy in step2. Step2 abends because the image copy dataset cannot hold the volume of the table. How can this be rectified?
what happens when COND is coded in JOB statement and when COND is coded inside EXEC statement?