In my job I have 6 steps. Step01,02,03...step06.
after executing step02 i want to skip step03 and want to
execute step04. and once step04 is done then I want to go
back and execute step03. once step03 is completed I want
execute step05, 06 and so on... can any one tell me how do
i do that???
Answer Posted / nagaraj
It can be done by using DPRTY(dispatching priority) in the
job step,
eg., code dprty = (15*12) + 16 in step02
dprty = (15*07) + 06 in step03
dprty = (15*10) + 16 in step04
dprty = (15*05) + 04 in step05
dprty = (15*04) + 03 in step06.
by doing this according to there dispatching priority each
step will be executed,
first it will execute step01,02,04,03,05,06
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
How to pass data to a program that is coded in an exec statement?
How does jcl act on a cobol code?
How can a jobs execution priority be modified?
Explain the jcl exec statement?
What is the function of dd name parameter with a 2 part structure; audit.report?
Where & How Do You Code Identifier In Jcl?
I need exexution process for JCL programs
How jcl is used for testing batch programs?
What is the maximum length of a single line of jcl?
//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 /*
Can I share my data with other jobs? How?
Explain dd statement in jcl?
Explain in DD statement what is the use of DCB parameter?
Can I send output of job to my remote device careerride123?
which parameter is used to check the syntax of a jcl without executing it?