Answer Posted / suresh
we use disp = (new,pass,delete) to create temporary data sets.
new is creates a new data set
pass on sucessful execution passes the datta set
delete it deletes the data setfrom the system
| Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
How to pass data to a program that is coded in an exec statement?
Does jcl support automatic restart?
How does jcl act on a cobol code?
What is multithreading in jcl?
List the different jcl statements that are not permitted in the procedures?
what is a jcl?
How can an in-stream dataset be terminated?
What is notcat 2 - gs?
What is the use of symbol // in jcl?
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?
In sms datasets, what is the function of the dd mgmtclas keyword?
For what purpose steplib and joblib are used ?
Suppose I have five jobs to do. But I want to hold one?
what happens when COND is coded in JOB statement and when COND is coded inside EXEC statement?
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