Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


can we give instream data in procedure

Answers were Sorted based on User's Feedback



can we give instream data in procedure ..

Answer / abhijit18in2002

Instream data is the Paratmeter we pass through SYSIN
Catalog Procedure does'nt take Instream data
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)
/*
It will fail

Instead use

//SYSIN DD DSN=ABC.DFG.PARM,DISP=SHR
/*

Put the following in this data set ABC.DFG.PARM
REPRO INDD(INDD1) –
OUTDD(OUTDD1)

It will run fine

Is This Answer Correct ?    11 Yes 1 No

can we give instream data in procedure ..

Answer / sroul4

We can not!!

Is This Answer Correct ?    5 Yes 0 No

can we give instream data in procedure ..

Answer / shriram supalwar dharmabad

No we cannot code instream data to procedure.
to overcome this
- code SYSIN DD DUMMY in the proc
- then override this from the JCL with instream data

Is This Answer Correct ?    3 Yes 0 No

can we give instream data in procedure ..

Answer / callee

Sush, we can't give instream data IN any kind of
procedures. We can give one only when we CALL proc.

Is This Answer Correct ?    2 Yes 0 No

can we give instream data in procedure ..

Answer / sush

we cwngive instream data in instream procedure.when we call
the procedure

Is This Answer Correct ?    1 Yes 3 No

can we give instream data in procedure ..

Answer / chowdary

procedure are two types 1) instream and 2) catlog
we can give instream data up to 15 level may be like that
it might be possible,

if any one know correctly please post

Is This Answer Correct ?    2 Yes 11 No

Post New Answer

More JCL Interview Questions

Can there be 2 job statements in a JCL? If yes what is the purpose of doing tha?

3 Answers  


If i am going to change some variable in a copybook( size or variable type) ,what are the changes that need to be done in the corresponding JCL.

4 Answers   IBM,


Is there a limit of 3273 DD statements for a JCL or for every EXEC step in a JCL?

2 Answers  


What is a COND parameter in JCL?

10 Answers   TCS,


How to pass data to a program that is coded in an exec statement?

0 Answers  


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?

4 Answers  


what is the difference between perform varying and perform

1 Answers  


If we want to see the eliminated duplicate record thru SORT, how its output file will be managed

6 Answers   Syntel,


hi friends........if u know syntax of IEBEDIT IN JCL

2 Answers  


What is the difference between the JOBLIB and the STEPLIB statements?

3 Answers  


How to create delta file using JCL

1 Answers   CTC,


Does the terms, JOBLOG, SPOOL and SYSOUT indicate the same thing, i.e., where JCL and JES messages and statements are written ?

2 Answers  


Categories