Answer Posted / pragnyesh
Instream data is the Paratmeter we pass through SYSIN
Example
//NEWPROC PROC
//ABCPGM EXEC PGM=IDCAMS
//SYSOUT DD SYSOUT=*
//SYSPRINT DD SYSOUT=*
//INDD1 DD DSN=ABC.XYZ.DSP,DISP=SHR
//OUTDD1 DD DSN=PQR.XYZ.NOP,DISP=SHR
//SYSIN DD *
REPRO INDD(INDD1) –
OUTDD(OUTDD1)
/*
| Is This Answer Correct ? | 11 Yes | 2 No |
Post New Answer View All Answers
List the various advantages of using jcl language?
Explain the purpose of dd * statement in jcl?
How is the record format of an output dataset specified?
what are the various stages of job processing?
Name a few IBM utility programs, and explain its function.
What is the purpose of dd * statement in jcl?
if the submitter of a job wants to inform another user about the job completion, how can it be done?
How to resolve the error "WER488A JOIN CAPACITY EXCEEDED" I am using SYNCSORT with JOINKEYS to compare 2 files. I am Getting error - > WER488A JOIN CAPACITY EXCEEDED There are 2 files to be compared with about 2 million records each. LRECL is 3665. Can somebody give a pointer as to how to resolve this problem? I am using SYNCSORT with JOINKEYS to compare 2 files. I am Getting error - > WER488A JOIN CAPACITY EXCEEDED There are 2 files to be compared with about 2 million records each. LRECL is 3665. Can somebody give a pointer as to how to resolve this problem?
When space is allocated for an output dataset, what units can be used?
How gdg are concatenated?
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 are s0c1, s0c4, s0c5, s0c7 and socb?
Can we call instream to catalog and catalog to instream?
Brief description of inline procedure of jcl.
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