IN MY JCL I VE 8 STEPS I WANT TO EXCUTE STEP 8 FIRST THEN
EXCUTE STEP 4 ,HOW WILL EXCUTE STEP 8 BEFORE STEP 4?
Answer Posted / ravikumar. r
You can IEBEDIT utility for your requirement. The syntax as
follows.
Syntax:
//JOBCARD
//PS010 EXEC PGM=IEBEDIT
//SYSPRINT DD SYSOUT=*
//SYSUT1 DD DSN=path of your JCL,DISP=SHR
//SYSUT2 DD SYSOUT=(A,INTRDR)
//SYSPRINT DD SYSOUT=*
//SYSIN DD *
EDIT TYPE=INCLUDE,STEPNAME=(PS008,PS004)
/*
| Is This Answer Correct ? | 26 Yes | 5 No |
Post New Answer View All Answers
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' ?
How do you run a COBOL batch program from a JCL? How do you run a COBOL/DB2 program?
What is the function of the dd mgmtclas keyword in sms datasets?
What happens if both JOBLIB & STEPLIB is specified ?
Explain the hierarchy levels in jcl?
How does jcl specify the job to the operating system?
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.
which parameter is use to declare the name of dataset in dd statement?
Name the parameters which can be used to limit the number of records written to a sysout dataset?
Explain dfsort utility?
What are some jcl statements that are not allowed in procedures?
What is the significance of addrspc parameter in the exec statement?
what is DSN parameter and DISP parameter is used for?
when can a job time-out occur? How to overcome that?
how do you create a dataset in a jcl with the same file organisation as that of another existing dataset?