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..?)
Answer Posted / 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 |
Post New Answer View All Answers
In job processing, what happens in execution stage?
List the different components of jcl statement?
Explain the jcl exec statement?
Explain the purpose of dd dummy statement?
How to code these statements in JCL: CLEANUP INITIAL(NO) RESTART(NO) DYNALLOC(NO) job definition..?
Suppose I have a program in cobol name ”careerride” and want to execute the program by jcl. Specify the process?
What is the difference between run mode and addressing mode?
what operation is performed by job statement?
in order to execute step2 a job after a return code of 8 in step1, what condition you will code in step2?
Explain how can return codes be tested before execution of a job step?
A chkpt is the parameter coded for multi-volume qsam datasets in a dd statement. When a chkpt is coded as chkpt=eov, a checkpoint is written to the dataset specified in the sysckeov statement at the end of each volume of the input/output multi-volume dataset. State whether true or false?
What do you understand by the term job time – out and how can you overcome that?
What is the purpose of dd * statement in jcl?
what is the difference between JES3 and JES2?
if the submitter of a job wants to inform another user about the job completion, how can it be done?