Answer Posted / satheesh
compile use list option and then select from the compile
listing offset of the record and then made change where you
done error and recompile
Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
what is a jcl?
Explain how can an in-stream dataset be terminated?
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
How can return codes be tested before execution of a job step?
What is the use of symbol // in jcl?
How do you access an uncatalogued dataset in a jcl?
What is the maximum length of a single line of jcl?
Is condition checking possible in jcl? If yes, how?
what happens in conversion stage in job processing?
What are steplib and joblib? What for they are used?
what is DSN parameter and DISP parameter is used for?
Where & How Do You Code Identifier In Jcl?
What is the job entry system used in your project? based on what criteria the sequence of jobs are picked if priority is not mentioned in the job card?
what happens when COND is coded in JOB statement and when COND is coded inside EXEC statement?
What are steplib and joblib?