Suppose I have 5 dataset listed under a single DD name in a
catlogued PROC. How can I override one of those 5 dataset
(say 3rd dataset)?
Answer Posted / vinay sonar
Use symbolic parameter.
Ir use following syntax
//STEP1.DD3 DD dsn='dataset name'
where STEP1 is step name and DD3 is dd statment name is
procedure
| Is This Answer Correct ? | 2 Yes | 4 No |
Post New Answer View All Answers
What do you understand by the term notcat 2 – gs?
What parameter directs the output of the job log dataset?
Explain the function of a dd statement?
in order to execute step2 a job after a return code of 8 in step1, what condition you will code in step2?
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
What is the function of //cntl statement?
whats the diff bw the evaluate also and and?
What is the difference between the positional and keyword parameters? Give examples.
What is the function of dd name parameter with a 2 part structure; audit.report?
Brief description of inline procedure of jcl.
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
Name the parameters which can be used to limit the number of records written to a sysout dataset?
What is condition checking in jcl? Is this possible?
What are the parameter we cannot use in procedure? How many instream we can write in single jcl?
Name a few IBM utility programs, and explain its function.