the command to open a dataset directly from the JCL instead
of opening it separately using 3.4 option.
Answer Posted / vishwadeep
at the command prompt give CB or CE depending on(browse or
edit) and hit enter placing the
cursor on the DSN which you want to open.
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What is the function of the dd dcb keyword?
What is the maximum length of a single line of jcl?
What are the parameters that are used in creating a gdg?
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?
I want to JCL sort for Non-COMP and COMP-3 fields SORT FIELDS=(1,5,A,6,11,A,12,11,A,19,1,A,20,1,A),FORMAT=BI,EQUALS Length of comp bytes is 11 bytes which start at 6byte and 12 byte considering 11 bytes in comp-3 is 6 bytes. Can anyone tell if the above sort work SORT FIELDS=(1,5,A,6,6,A,12,6,A,19,1,A,20,1,A),FORMAT=BI,EQUALS does not works OK
is there any way to execute more than one proc in the same exec statement at the same time..?
what is use of disp parameter in dd statement?
How to compare two files in SYNCSORT and on the mismatch record should be deleted from second file.
what is DSN parameter and DISP parameter is used for?
What do you understand by the term notcat 2 – gs?
What are the parameter we cannot use in procedure? How many instream we can write in single jcl?
Explain the purpose of the dd keylen parameter?
How do you overcome this limitation ?
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
Explain the hierarchy levels in jcl?