I have four steps in jcl they are STEP1,STEP2,STEP3 and STEP4.
Can it possible to run the reverse order like step4 first
then step3,step2,step1?
Answer Posted / premadevi
//JOBCARD AS PER INSTALLATION
//STEP1 EXEC PGM=IEBEDIT
//SYSPRINT DD SYSOUT=*
//SYSUT1 DD DSN=FILE1,DISP=SHR
//SYSUT2 DD SYSOUT=(*,INTRDR)
//SYSIN DD *
TYPE=EDIT,INCLUDE=(STEP4,STEP3,STEP2,STEP1)
/*
//
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
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 utility is used to run a cobol-db2 program?
What is catelog procedure and how many catelog procedure to use in one job?
Explain how can the disposition of sysout datasets be set for an entire jobstream?
What is the purpose of the dd keylen parameter?
What statement marks the beginning of a job step; assigns a name to the step; identifies the program or catalogued or in-stream procedure to be executed in the step?
Does jcl support automatic restart?
List the various advantages of using jcl language?
Is it possible to code instream data in a PROC?
how can the same proc be re-used and called by many jobs?
How is a type of file defined in the jcl that executes the cobol program?
what happens in execution stage in job processing?
what sort card you will use to copy the data from one dataset to another dataset?
why should SYSIN DD * statement should not be included inside a PROCedure snippet??? please answer this.. i need to know.
What is the purpose of dd * statement in jcl?