If i am going to change some variable in a copybook( size or
variable type) ,what are the changes that need to be done in
the corresponding JCL.
Answer Posted / mdvasanth86
No changes in the JCL.
Is This Answer Correct ? | 15 Yes | 1 No |
Post New Answer View All Answers
in order to execute step2 a job after a return code of 8 in step1, what condition you will code in step2?
What do you know about jcl?
Matching Logic in Jcl not in cobol.Could any one please answer this question
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
which parameter is used to check the syntax of a jcl without executing it?
How to alter the parameters for the existing gdg?
Can we use DISP=SHR in output file in JCL
How dummy is used in jcl?
what is DD statement is used in JCL?
Brief description of inline procedure of jcl.
what is SOC4 error?
Explain how can a jobs execution priority be modified?
How does jcl specify the job to the operating system?
Suppose I have a program in cobol name ”careerride” and want to execute the program by jcl. Specify the process?
How jcl is used for testing batch programs?