What is the use of the utility DFSRRC00 in the JCL?

Answer Posted / kavitha

DFSRC00 tells JCL that program deals with the IMS. It is
not Utility to produce or format output files like SORT do.

PARM=(MSG,&CL1&CL2&CL3&CL4

Parm passes the parameters from JCL to the utility e.g.
whether it is batch or BMP,

&CL1 tells the program name
&CL2 tells the PSB used

Is This Answer Correct ?    23 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what operation is performed by job statement?

650


Explain the purpose of dd * statement in jcl?

628


how JCL works?

787


What methodology can be adapted to transfer data to a program that is coded using the exec statement?

598


How do you run a COBOL batch program from a JCL? How do you run a COBOL/DB2 program?

663






In sms datasets, what is the function of the dd avgrec keyword?

642


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

1025


When The Define Jcl Is Not Available, How Can You Get Information About A Vsam File's Organisation ?

738


how you can direct the data to spool using SYSOUT option?

914


Explain the hierarchy levels in jcl?

1111


What statement marks the beginning of a job step; assigns a name to the step; identifies the program or catalogued or in-stream procedure to be executed in the step?

638


if the submitter of a job wants to inform another user about the job completion, how can it be done?

742


What is jcl in mainframe, and how many types of jcl statements are there for a job?

624


when does a dataset go uncataloged?

823


Suppose there are 2 Input files Infile-1 and Infile-2. Both the Files contain Employee Records. You need to compare both the files and Write the Common Records in third file named Outfile. How can we do this using File-Aid?

2212