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
In sms datasets, what is the function of the dd mgmtclas keyword?
how do you code a null statement?
Explain about LMFREE�free data set from its association with data ID
How would you understand error(execution phase)?
Differentiate between addressing mode and run mode.
what are the various stages of job processing?
How to compare two files in SYNCSORT and on the mismatch record should be deleted from second file.
write a jcl to execute a job by 7:00 am on jan 20,1986?
define cond parameter in jcl?
What are the 4 fields in dd statement?
Is their any limit for data sets?
I have a cobol db2 program(PGM A) where other program (PGM B) will call this program and passes some 50 fields data to PGM A. PGM A has some layout in which it receives the data from PGM B. And this layout has been copied in the linkage section pf PGM A. After getting the data, PGM A writes the data in a flat file in the same layout which it receives from PGM B. PGM B is a simple COBOL pgm. Please provide a JCL to run these programs.
what is use of disp parameter in dd statement?
How to pass the parameter in parm using linkage section ? (syntax)?
Suppose I have a program in cobol name ”careerride” and want to execute the program by jcl. Specify the process?