How is the record format of an output dataset specified?
No Answer is Posted For this Question
Be the First to Post Answer
a set statement is used to define commonly used symbolic across job steps or procedures. It initializes the previous values in the symbolic names. It has to be defined before the first use of the symbolic names in the jcl. State whether true or false?
what is the cond=even only
When a dataset is UNCATALOGED in a JOBSTEP, how to get its UNIT and VOL in JCL to refer in subsequent steps ?
If job is submitted with typerun = hold then how can we submit the same job?
What is Uncatalog dataset? How can we access/use them?
restart logic ?
If a job has 3 steps and step 1 and step 3 should get executed and step 2 should not get executed irrespective of the return code from the previous steps. How can it be done?
When concatenating two PDS can any one PDS can have empty dataset i.e without any value(Dummy).
GDG Create syntax ?
Explain the hierarchy levels in jcl?
IN DFSORT sum fields=none is usec to remove duplicates.how to write the duplicates in another dataset?
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