Answer Posted / balakrishnan,maples148
used to copy a group of records of variable length from one
qsam file to another. the file may be ps or pds member..
source file must be specified in SYSUT1 and destination is
specified in SYSUT2.
| Is This Answer Correct ? | 23 Yes | 5 No |
Post New Answer View All Answers
Mainframes gets a text file that contains the name of the file. Now using JCL i want to locate that file name in the mainframe system and perform further processing. Please tell how to proceed
How can a stopped job be started again?
Explain the function of a dd statement?
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 have a job called careerride and some steps in it as step1,step2. But I want to execute step2 before step1 ? How do I do that?
what is SOC4 error?
How to pass the parameter in parm using linkage section ? (syntax)?
When space is allocated for an output dataset, what units can be used?
What is the function of //jcllib statement?
I have 60 steps in the JCL and want to Execute Only First from PROC by overriding in JCL ?
what JCL Procedures?
What is the purpose of dd dummy statement?
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
What is the function of //cntl statement?
Is there any command to check wether the ps file is in sorted order?