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 |
Suppose I have five jobs to do. But I want to hold one?
I have 255 procedures in a job, each procedure contain 2 steps.can we execute this job?
How to overide the symbol parameter in the jcl ?
I found in one of the jcl, gdg version being mentioned as : abc.def.ghi(-0) Can anyone tell me how referring the version as (-0) is different from referring it as (0)
I have a PDS and want to omit few rows of all members of a PDS. How to do it?
Is it possible to define dd statements as you want?
diff bw SB37,SD37,SE37 ?( bcz these 3 belongs Space related abends only)
1.How to check for the errors using TYPRUN=SCAN?What will be the output if we give TYPRUN=SCAN?
which parameter is use to declare the name of dataset in dd statement?
Is acct parameter mandatory?
what is the difference between static call and dynamic call?
In job processing, what happens in execution stage?