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
Explain how can an in-stream dataset be terminated?
What is jcl in mainframe?
what is the use of JCL?
What is the function of dd disp parameter?
Explain the purpose of dd * statement in jcl?
How jcl work to handle various input output file operations?
Explain the job statement in jcl?
Explain the function of job statement in jcl?
What is condition checking in jcl? Is this possible?
What is concatenating?
What is the purpose of dd?
Brief description of inline procedure of jcl.
I want to JCL sort for Non-COMP and COMP-3 fields SORT FIELDS=(1,5,A,6,11,A,12,11,A,19,1,A,20,1,A),FORMAT=BI,EQUALS Length of comp bytes is 11 bytes which start at 6byte and 12 byte considering 11 bytes in comp-3 is 6 bytes. Can anyone tell if the above sort work SORT FIELDS=(1,5,A,6,6,A,12,6,A,19,1,A,20,1,A),FORMAT=BI,EQUALS does not works OK
Explain dfsort utility?
What is one line to pass PARM from JCL to COBOL?