Answer Posted / srk
move 16 to return-code.
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
If a (+1) generation dataset is created in the first step of a job, how can it be referenced in later steps of the same job for input?
List the different jcl statements that are not permitted in the procedures?
What is NOTCAT ?
How can unused space allocation be returned to the system when a dataset is closed?
Explain about LMFREE�free data set from its association with data ID
Does jcl support automatic restart?
if we want to use a gdg which is already created by some job, then how to use the reference of the last generation in a jcl?
what happens in execution stage in job processing?
What is the difference between the positional and keyword parameters? Give examples.
what is use of disp parameter in 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
I had Records in file Like this Company Code IBM 2 IBM 1 IBM 4 WIPRO 3 WIPRO 2 WIPRO 9 TCS 4 TCS 6 TCS 3 i want the record of every company with highest code How can i do that?
why should SYSIN DD * statement should not be included inside a PROCedure snippet??? please answer this.. i need to know.
in a jcl, a large volume dataset is loaded to a table using bmcload in step1 and an image copy of the loaded table is taken using bmccopy in step2. Step2 abends because the image copy dataset cannot hold the volume of the table. How can this be rectified?
how you can direct the data to spool using SYSOUT option?