What is the use of the utility DFSRRC00 in the JCL?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / sukumar
DFSRRC00 is basically an IMS routine to run IMS DLI(Batch)
&
BMP(Batch Message Processing) Modules thorugh JCL.
correct me if i'm wrong
| Is This Answer Correct ? | 19 Yes | 3 No |
IF WE GIVE COND on step3 then, What does the following mean ? And Just adding to that, All the below COND are VALID as per the specifications. (i) COND = (8,LT,step1,step2) ---(AND/OR ?) (ii) COND = (8,LT,step1,step2, ONLY), (iii) COND = (8,LT,step1,ONLY) will it execute only if this condition is true or only if step1 ABENDS ? (iv) COND = (8,LT,step1,step2,EVEN), (v) COND = (8,LT,step1,EVEN) ?
i just need the first and last record from a sequencial file?how
How can the disposition of sysout datasets be set for an entire jobstream?
wht do u mean by notify parameter, how can u give acess to multiple users ?
a input file contains 1000 records, how to move the first 500 record into one out put file and how to move to second 500 records to anothere output file
How to copy VSAM files without using REPRO
In your JCL, run the even numbered steps if date is even and run odd numbered steps if date is odd . Where do you generate the date ??in cobol or JCL ??
How To get the last record in VSAM file in cluster? and How can u get the ksds file records into ur cobol program ? Pls tell me about these two questions.
a job have 5 steps and it will executes a proc which have 5steps in it. now i have to execute step3 only when step2 of proc executes successfully
How can a job send a status message to a tso user at the completion of a job?
Say I have a file with 12 records. Each record has the name of the month. I have to append data in these 12 records into 1 record. How is it possible?
What will happen when we try to pass data from JCL to COBOL using PARM parameter without declaring the length field in Linkage Section?