what is instream data

Answers were Sorted based on User's Feedback



what is instream data ..

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

what is instream data ..

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

Post New Answer

More JCL Interview Questions

How many JOB statements a JCL can have ? If there are more than one JOB statements in a JCL, are they submitted in succession or in parallel ?

4 Answers   IBM, Tech Mahindra,


HOw to submit a job from other user id.? for exp some other job name like "t4622sdx".now i want to submit that job from my user id?(we don't know that location at all Just we know job name)

1 Answers   MSN Pharma, UST,


what is the difference between return code and maxcc?

2 Answers   iGate,


Statement1 "We can not use UNCATLG in SMS managed VSAM datasets" Statement2 "We can not delete a SMS managed data set without UNCATLG it" (P-353, Saba Zameer book) Then how do we delete SMS managed VSAM datasets ?

1 Answers   IBM,


proc1,proc2,up to proc5 is there if i want to call proc1 and proc5how can u write the code

2 Answers  






How to view the hexa decimal value thru file aid if copy book is not present for that particular data

1 Answers  


how to count the number of members in pds?

2 Answers  


What is the meaning of the following declaration : DCB=BLKSIZE=, What is the difference between above declaration & not specifying DCB at all for a output file?

1 Answers  


Current version of GDG is ID.GDG.FILE.G0001V00. JCL has procedure with 2 steps like below,  What will be the output file name in each step ?  PROC starts      Step 1 has ID.GDG.FILE(+1)      Step2 has  ID.GDG.FILE(+4) PEND Similarly, JCL has 2 steps in 2 separate procedure. What will be the output file names here ?  PROC starts      Step 1 has ID.GDG.FILE(+1) PEND PROC1 starts      Step2 has  ID.GDG.FILE(+4) PEND

2 Answers   FIS,


01 GROUP-ITEM 05 AMOUNT-1 PIC 99V9 USAGE COMP VALUE 50 05 AMOUNT-2 PIC 9(4)V99 USAGE COMP MOVE ZERO TO GROUP-ITEM ADD 50 TO AMOUNT-1 what will be the content of AMOUNT-1? a.50 b.100 c.0 d.unpredictable

1 Answers  


In job processing, what happens in conversion stage?

0 Answers  


How is the keyword DUMMY used in JCL?

4 Answers  


Categories