what is instream data
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / chowdary
instream data means we write with in jcl itself, up to 15
level is possible. it should start with proc and end with
pend statement
ex: //jobcard
//exce proc
//
//
//pend
| Is This Answer Correct ? | 5 Yes | 17 No |
HOW TO CONVERT VARIABLE BLOCK TO FIXED BLOCK ?
In JCl which of this activities get executed if act002 abnormally terminates //job001 job ......... //act001 exec pgm=cobo01 //act002 exec pgm=cob02, cond=(01,le) //actoo3 exec pgm=cob03, cond=only //actoo4 exec pgm=con04
What is the function of the dd avgrec keyword in sms datasets?
Can there be 2 job statements in a JCL? If yes what is the purpose of doing tha?
Write a jcl to execute a job by 7 a.m on Jan 20,1986 ?
There are 2 steps in a JCL. If the first step abends due to system or user abend and the second step has COND specified as EVEN or ONLY, will this step still be executed inspite of the abend in the previous step?
How to code these statements in JCL: CLEANUP INITIAL(NO) RESTART(NO) DYNALLOC(NO) job definition..?
if in a job, region is mentioned in both jobcard and in step then which is cosidered at the step level? A job has region 4k in jobcard and step1 with region 0k and step2 with 16k, then what is the region allocated for the entire job? what is the region step1 takes? what is the region step2 takes?
by using cond parameter maximum 8 cond can be coded in single cond means ?explain
What is the differentiation between TRK,cyl, and Bytes... how they can be connected??
Hi, I have 3 files say file A , file B and file C.I want to form an output file in which i will have all the records from file A. Files B and C also may contain records that are present in file A.I want those records also to be included in my output file. for eg: file A contains: 1 2 3 file B contains: 2 4 5 file C contains: 1 3 5 So in my output file should look like: 1 2 3 2 1 3 Can any one help ???.....thanks in advance.
What is the function of the dd dcb keyword?