1)what is compilation jcl for cobol program but it is
calling another program
2)what is compilation jcl for cobol program but it is
calling another program(in this, main program is pure cobol
but sub program is cobol+db2 program
anyone please answer me for above questions. it's very urgent
Answer Posted / guest
2)through IKJEFT01 utility we will compile the pgm
1)through NTLDR
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain how can an in-stream dataset be terminated?
what are the types of abends that occur on job failure? And explain the possible causes of these
Is automatic restart possible in jcl? If yes, how?
which utility is used to sort a file in jcl?
What parameter of the job statement is used to limit the cpu time consumed by the job?
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.
WORKING-STORAGE SECTION. 01 GROSS-PAY. 05 BASIC-PAY PIC 9(5). 05 ALLOWENCES PIC 9(3). PROCEDURE DIVISION. MOVE 1000 TO BASIC-PAY. MOVE 250 TO ALLOWENCES. DISPLAY GROSS-PAY. STOP RUN. 77 W-A PIC 9(3)V99 VALUE 23.75 77 W-B PIC ZZ9V99 VLAUE 123.45 after the statement MOVE W-A TO W-B what will be W-B's value? a.123.75 b.b23.75 (where b indicates space) c.023.75 d.invalid move
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?
Is it possible to code instream data in a PROC?
I have 60 steps in the JCL and want to Execute Only First from PROC by overriding in JCL ?
What is the purpose of dd * statement in jcl?
have in 100 records in a file i want to read first 3 records and skip next 3 records and agan i want to read 3 records and again i want to skip 3 records... run a loop from record one to 10 evaluate i/3 if comes even then skip else write to output file
Explain how can a jobs execution priority be modified?
What statement marks the beginning of an in-stream or cataloged procedure in jcl and assigns default values to parameters defined in the procedure?
how to run batch program without jcl?