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 |
Is their any set of rules for dd? Explain.
how to set dependancy for jobs?
if we have a job consist of two steps and each step calling a proc having 10 steps each then how many steps are counted only 2 or 22(10+10+1+1)? can we have more than 255 steps in a single job?
hi in one of the interview one asked me how to submit a job from cobol?as well as how to submit a jcl from CICS? can u pls any one tell me..
What is the purpose of disp parameter?
Whats error code s222?
what if any ,is the syntax error in the following piece of code 01 B PIC A(7) 02 C PIC 9(4) ........ IF(B NUMERIC) ADD 10 TO C a.the condition in the if statement is wrong b.noting is wrong c.because C is initialised.ADD 10 TO C is wrong d.both B and C shoud have same size.
How to execute step2,step5,step7 of a proc of 10 steps? You are not allowed to change in JCL.
What is the error code SOC01 indicate ?
how do you access an uncataloged dataset in a jcl?
Explain the function of the dd dcb keyword?
Is it possible to define dd statements as you want?