is there any possibilities for sumbitting more than one
job in single jcl? if yes...based on which thing they will
execute..(priority,class,time,written order..?)
Answers were Sorted based on User's Feedback
Answer / mohan.chepuri
yes
first class wil check out the system it is higher priority
that job is exec first
if 2 or more jobs class is equal the checks the priority is
0-9 then hight priority is run first
time it is used to save the amount to cmpnys our job is
going to loop the job is running no of times then use time
limited time is given
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / quasar chunawala
Well, you can use the Special Writer - INTRDR that takes
whatever is there in the Output Queue, and puts it back in
the Input Queue. Here's ow to do it -
//AGY0157A JOB A123,'BIN-7 QUASAR',CLASS=A,NOTIFY=&SYSUID
//STEP010 EXEC PGM=IEBGENER
//SYSUT1 DD DSN=AGY0157.HIDDEN.JCL,DISP=SHR
//SYSUT2 DD SYSOUT=(*,INTRDR)
//SYSIN DD DUMMY
//SYSPRINT DD SYSOUT=*
AGY0157.HIDDEN.JCL Dataset can contain the second job -
//AGY0157B JOB A123,'BIN-7 QUASAR',CLASS=A,NOTIFY=&SYSUID
//STEP020 EXEC PGM=IEFBR14
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / mohan.chepuri
yes
first class wil check out the system it is higher priority
that job is exec first
if 2 or more jobs class is equal the checks the priority is
0-9 then hight priority is run first
time it is used to save the amount to cmpnys our job is
going to loop the job is running no of times then use time
limited time is given
| Is This Answer Correct ? | 1 Yes | 0 No |
What is the exact difference between PRTY and DPRTY
Explain concatenating datasets?
what happens when time=0 is given in jcl code. what happens when blksize=0 is given in jcl code. what is symbolic and overriding parameters and a example program.
How do you handle empty files in a JCL ?
How does jcl act on code(if you take a cobol program)?
Is condition checking possible in jcl? If yes, how?
how to split a file
In all our JOB Statement we have always COND=(4,LT) defined. Nevertheless when a Job failed the last step should then be executed (send a message to an user). Due to we don't like to change all our JOB's (ca. 2000), we are looking for a simply solution.
How do you submit a job for execution?
in jcl you are having JCLLIB and STEPLIB what happens
How to submit jcl through a cobol program?
Suppose there r 10 steps . Out fo which i want to execute 10th, 9th and 8th in reverse order without using IEBEDIT. How can i do that..???