proc1,proc2,up to proc5 is there if i want to call proc1 and
proc5how can u write the code
Answer Posted / harsha
1 You can use COND parameter as COND=(0,LE) on STEP2 till
STEP4.
2 You can comment out the step you do not want to execute.
3 You can use IEBEDIT to select the steps you want to
execute.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Is condition checking possible in jcl?
Differentiate between the joblib and the steplib statements?
Is it possible to code instream data in a PROC?
define cond parameter in jcl?
Explain the function of a dd statement?
WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99 VALUE 123.45. PROCEDURE DIVISION. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. compiler : IGYGR1080-S A "VALUE" clause literal was not compatible with the data category o subject data item. The "VALUE" clause was discarded. WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99. PROCEDURE DIVISION. MOVE 123.45 TO W-B. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. 2375
What is notcat 2 - gs?
I need exexution process for JCL programs
Explain the function of the dd dcb keyword?
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
how to compare two datasets without using superce because output is limited to 133 bytes
I have a COBOL program that ACCEPTs some input data. How do you code the JCL statement for this?
How jcl is used for testing batch programs?
What is the function of dd disp parameter?
how do you access an uncataloged dataset in a jcl?