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 / sitharam
Just correction on above answers, It will work
//JOBCARD AS PER INSTALLATION
//STEP1 EXEC PGM=IEBEDIT
//SYSPRINT DD SYSOUT=*
//SYSUT1 DD DSN=FILE1,DISP=SHR
//SYSUT2 DD SYSOUT=(*,INTRDR)
//SYSIN DD *
EDIT TYPE = INCLUDE,STEPNAME=(STEP4,STEP3,STEP2,STEP1)
/*
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How does jcl specify the job to the operating system?
How to run cobol program using jcl?
Can anybody tell what is tool used to generate the list of PROCS used in JCL to generate a PROCTREE
if the submitter of a job wants to inform another user about the job completion, how can it be done?
Are there any set of rules for the names of the steps used in a job? What are they?
What do you understand by the term job time – out and how can you overcome that?
How does the jcl specify the job to os?
what are the types of abends that occur on job failure? And explain the possible causes of these
Explain the function of the dd dcb keyword?
What is timing concept in mainframe?
Explain the function of //jcllib statement?
is there any way to execute more than one proc in the same exec statement at the same time..?
What is the maximum length of a single line of jcl?
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.
What parameter of the job statement is used to limit the cpu time consumed by the job?