If we have 100 job steps in JCL and we want to excute steps
only starting from 43 to 50, then how it can be coded in JCL/
Answer Posted / yogesh s p
//jobname job , ,con=(4093,gt,step49)
//step1 exec pgm=
//step2
.
.
.
.
.
.
.
//step50 exec pgm=.....,
it will execute 49 th step before executing 50 step it will
check the return code of 49th it will satisfies the
condition so it wont execute the step50 it will come out of
the sequence.
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
What is concatenating?
What is timing concept in mainframe?
Explain the purpose of dd * statement in jcl?
Suppose I have five jobs to do. But I want to hold one?
Explain how can an in-stream dataset be terminated?
//S10 EXEC PGM=ICETOOL //TOOLMSG DD SYSOUT=* //DFSMSG DD SYSOUT=* //CON DD DSN=VAR.INPUT1,DISP=SHR // DD DSN=VAR.INPUT2,DISP=SHR //OUT DD DSN=VAR.OUTPUT,DISP=(NEW,CATLG,DELETE), // SPACE=(CYL,(5,5)),UNIT=SYSDA //TOOLIN DD * * Splice the needed data from the two VB files together SPLICE FROM(CON) TO(OUT) ON(5,5,CH) WITHALL - WITH(12,5) WITH(22,20) VLENMAX /*
Explain the function of job statement in jcl?
What statement can be used to send data to another mvs jes3 node?
Can I send output of job to my remote device careerride123?
what operation is performed by job statement?
Hello Guys, I have 1+ Year Experience in MAINFRAME TESTING. After 1 Week I have an Interview With a Company on Mainframe Testing. Please Could You Guys Please Suggest me What Sections Should I prepare ?? ___Tell Me the Topic Or Appropriate Site & Links. ?? ---------------Thank You
What is the syntax of JCL statement?
What is the significance of addrspc parameter in the exec statement?
How do you submit a job for execution?
What is the function of dd disp parameter?