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 |
how you can access an uncataloged dataset in a JCL?
Explain in DD statement what is the use of DCB parameter?
Explain how can the submitting users racf authority be overridden in a job stream?
Explain about ISPFTTRC
Name some of the JCL statements that are not allowed in procs.?
what is the difference between the JCLLIB and JOBLIB ,and where do we use it ?
What are the parameter we cannot use in procedure? How many instream we can write in single jcl?
How to find in aparticular step how many versions a paricular gdg base have?
how to resolve sb37,sd37 se37 abends
how can a gdg base be created in a jcl. What is the difference between empty and scratch parameter while defining/altering gdg base?
1) SORT FIELDS=(20,4,CH,D,10,3,CH,D) OUTREC FIELDS=(7:20,4,C' FUTURE ',20,2,10,3,1Z,1,9,13,7, 24,57,TRAN=LTOU,6X'FF') This example illustrates how a fixed-length input data set can be sorted and reformatted for output. The SORTIN LRECL is 80 bytes. The reformatted output records are fixed length with a record size of 103 bytes. SOLRF (the IBM-supplied default) is in effect, so unless the SORTOUT LRECL is specified or available, it will automatically be set to the reformatted record length of 103. in the above example i have some doubts that a) sort fields=(20,4,CH,D,10,3,CH,D) -what exactly it does and this fields related to output record fields or input record fields b)outrec used to refprmat the records after sorting that means could please reply me as soon as possible Thanks. Venkat
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.