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
How can a stopped job be started again?
how do you access an uncataloged dataset in a jcl?
What do you understand by the term job time – out and how can you overcome that?
Name the parameters which can be used to limit the number of records written to a sysout dataset?
How to pass data to a program that is coded in an exec statement?
I have mainpgm(abc) this is the only cobol pgm(non-db2).And this pgm calling subpgm name "acd" this also only cobol(non- Db)and this pgm calling some other subpgm this pgm has cobol-db2 pgm. 1) IF you calling static mode how to run and how to compile? 2) IF you calling dynamic mode how to run and how to compile? plz suggestion me.
Can an individual step be restricted from using all the jobs allowed cpu time?
What do you understand by jcl?
How does the jcl specify the job to os?
Explain the jcl exec statement?
What is the purpose of dd * statement in jcl?
How to execute 2nd and 4th steps among 5 steps in jcl proc?
Are there any set of rules for the names of the steps used in a job?
What is the use of disp parameter?
I HAVE A VB BLOCK WHICH IS USED AS INPUT IN COBOL CONATINING SOME RECORDS CAN I CHANGE THE FILE FROM VB TO FB?