List some valid operation codes in JCL
Answers were Sorted based on User's Feedback
Answer / balesh
//JOB_NAME JOB '123' CLASS=Q,MSGLEVEL=(0,1)
//STEP1 EXEC PGM='ADDPGM'
//DD_NAME DD=PATH
| Is This Answer Correct ? | 0 Yes | 0 No |
JCL Example: // //RUNJCL JOB CLASS=5,MSGCLASS=6,NOTIFY=&SYSUID //STEP01 EXEC PGM=IEFBR14 // .. .. If this JCL will run or it'll throw the ERROR?
which are the parameters mandatory in job card ?
a jcl has 2 steps. How to code the jcl such that if step1 abends, then step2 runs. Else, job terminates with step1?
how can i use the parameters decalred in main pgm in sub pgm
What is SORT ? How do we eliminate duplicate records ? How do I select some records using SORT ?
Suppose a proc step has a DD statement like //ABC DD DSN=TEST.FILE1,DISP=SHR DSN=TEST.FILE2,DISP=SHR and the above DD name is overridden from the JCL as given below //procstepname.ABC DD DSN=TEST.FILE3 - Will the DD statement now have just TEST.FILE3 or it will be TEST.FILE3 and TEST.FILE2? Suppose if it is overridden twice like //procstepname.ABC DD DSN=TEST.FILE3 //procstepname.ABC DD DSN=TEST.FILE4 Will this give a JCL error? If not, what will be final output?
How jcl work to handle various input output file operations?
What is COND=EVEN ?
Is it possible to left uncode disp? If yes, how?
what is DSN parameter and DISP parameter is used for?
what is the purpose of SYSOUT parameter in the DD statement?
How can u know the current date using jcl?