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 |
If a jcl has just 1 step and the input file to this does not exist, then what will happen if we submit this job?
How do you check the syntax of a JCL without running it?
What are the keywords associated with DCB? How can you specify DCB information? What is the OS precedence for obtaining that DCB information, ie. where does the system look for it first?
How do you run a COBOL batch program from a JCL? How do you run a COBOL/DB2 program?
Could you provide an example and its effect OF, Using COND on JOB and EXEC both ?
What is the differentiation between TRK,cyl, and Bytes... how they can be connected??
Can we browse or edit the GDG dataset if it is a tape entry?
How do You skip a Step In JCL?
wht happens if blksize = 0 and lrec = 0 ?
if you have big pgm. during compilation is abends with (soc7)how do you know which line has soc 7 error.
i have a jcl calling proc which has 10 steps, i want to execute from step5 to step10, where can i code RESTART and COND parameter?
What is a procedure?