There are a set of 10 files and a customer will be
selecting random no of files(i.e they may be more than 2,
may not be in the order).Sometimes he might just select
one file or sometimes no files at all.How do you code a JCL
for this? Is it possible to code just JCL alone for this
problem?
Answer Posted / sunil
really it,s tough to give an ans of this que.would u plz
suggest the actual ans of thi
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
by using cond parameter maximum 8 cond can be coded in single cond means ?explain
how do you create a dataset in a jcl with the same file organisation as that of another existing dataset?
We can use PASS with permanent datasets also. THEN Which is the condition in which we may use PASS (instead of KEEP) with permanent data sets, while there is no need to specify UNIT and VOL for them like temporary data sets (in cas we use KEEP for permanent data sets) ?
How can return codes be tested before execution of a job step?
what are the statements that are not valid to be included in an include statement?
How to code these statements in JCL: CLEANUP INITIAL(NO) RESTART(NO) DYNALLOC(NO) job definition..?
a dd statement has 2 types of parameters. Name them?
define cond parameter in jcl?
how would you create a temporary dataset? And where will you use them?
what JCL Procedures?
How can unused space allocation be returned to the system when a dataset is closed?
What are the jcl procedures?
Explain the function of the steplib dd statement?
What is the function of the dd mgmtclas keyword in sms datasets?
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