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


Please Help Members By Posting Answers For Below Questions

How can a fb file convert to vb file using sort program?

922


How is a type of file defined in the jcl that executes the cobol program?

817


A dd statement consists of 4 fields. Name them?

1047


Many jcl statements contain specific values designed to direct and control the execution of the statement. What are these fields called?

808


how can the same proc be re-used and called by many jobs?

1033






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

1152


What is the maximum length of a single line of jcl?

923


what is the compile process of cobol program expalin with code

2117


What are the parameter we cannot use in procedure?

721


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

946


Matching Logic in Jcl not in cobol.Could any one please answer this question

3782


what are JCLLIB and STEPLIB in JCL?

775


How to run cobol program using jcl?

737


how to do automated restart when a job abends?

958


What is the significance of addrspc parameter in exec statement?

817