Answer Posted / sindhu
its a data mismatch error.
| Is This Answer Correct ? | 1 Yes | 11 No |
Post New Answer View All Answers
Suppose I have a program in cobol name ”careerride” and want to execute the program by jcl. Specify the process?
what happens in execution stage in job processing?
How do you run a COBOL batch program from a JCL? How do you run a COBOL/DB2 program?
Why include statement is used in a jcl?
I have a cobol db2 program(PGM A) where other program (PGM B) will call this program and passes some 50 fields data to PGM A. PGM A has some layout in which it receives the data from PGM B. And this layout has been copied in the linkage section pf PGM A. After getting the data, PGM A writes the data in a flat file in the same layout which it receives from PGM B. PGM B is a simple COBOL pgm. Please provide a JCL to run these programs.
Is condition checking possible in jcl?
Explain the function of //jcllib statement?
What do you understand by jcl?
Explain how can values be passed from the job stream to an executable program?
what is JCL?
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 have a COBOL program that ACCEPTs some input data. How do you code the JCL statement for this?
How can return codes be tested before execution of a job step?
What is the function of the dd avgrec keyword in sms datasets?
What is job control language?