Write a jcl to execute a job by 7 a.m on Jan 20,1986 ?
Answer Posted / shafi
//JOB123 JOB (accounting),CLASS=X,MSGCLASS=X
//*
// SET SYSDATE=200186
// SET SYSTIME=070000
//*
//STEP1 EXEC PGM=IEFBR14
Is This Answer Correct ? | 1 Yes | 7 No |
Post New Answer View All Answers
How can a fb file convert to vb file using sort program?
How is a type of file defined in the jcl that executes the cobol program?
A dd statement consists of 4 fields. Name them?
Many jcl statements contain specific values designed to direct and control the execution of the statement. What are these fields called?
how can the same proc be re-used and called by many jobs?
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
What is the maximum length of a single line of jcl?
what is the compile process of cobol program expalin with code
What are the parameter we cannot use in procedure?
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
Matching Logic in Jcl not in cobol.Could any one please answer this question
what are JCLLIB and STEPLIB in JCL?
How to run cobol program using jcl?
how to do automated restart when a job abends?
What is the significance of addrspc parameter in exec statement?