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...


IN-STREAM DATA NOT ALLOWED IN PROC how can come out from
this problem

Answers were Sorted based on User's Feedback



IN-STREAM DATA NOT ALLOWED IN PROC how can come out from this problem..

Answer / cj

Instream data cannot be given in catalogued procedures.
They can be coded in main jcl or instream procedures only.

So code a catalogued proc named PROC1 as given in eg. below:

//PROC1 PROC
//STEP1 EXEC PGM=progname (prog. that needs instream data)
//DATA1 DD DDNAME=SYSIN,DCB=(BLKSIZE=80,BUFNO=3)

In main JCL, execute this catalogued procedure, but
override the ddname DATA1 with your instream data. Code as
given in eg. below:

//STEPA EXEC PROC1
//DATA1.SYSIN DD *
{lines of data}
/*

I hope this helps.

Is This Answer Correct ?    13 Yes 2 No

IN-STREAM DATA NOT ALLOWED IN PROC how can come out from this problem..

Answer / raja

No you cannot

Is This Answer Correct ?    9 Yes 0 No

IN-STREAM DATA NOT ALLOWED IN PROC how can come out from this problem..

Answer / vijay k

In the proc you have to code like this. Keep the INSTREAM
data in the parm card.

In the proc.

//sysin dd dsn= xyz.file(sortcpy),disp=shr

In the parm card, sortcpy should be like this.

sort fields=copy

Is This Answer Correct ?    5 Yes 0 No

IN-STREAM DATA NOT ALLOWED IN PROC how can come out from this problem..

Answer / vengat

We can Use Instream in Catalog Procedure.

Is This Answer Correct ?    1 Yes 2 No

IN-STREAM DATA NOT ALLOWED IN PROC how can come out from this problem..

Answer / hamed

code the sysin stmt as below
//sysin dd dummy

and override this from the step as below
in the JCL
//sysin.dd dsn= xyz

Is This Answer Correct ?    2 Yes 7 No

IN-STREAM DATA NOT ALLOWED IN PROC how can come out from this problem..

Answer / sucharita

But where shall I enter the data ?
The question was how to give instream-data, not how to use
sysin in proc.
Please someone clarify this..

Is This Answer Correct ?    0 Yes 5 No

IN-STREAM DATA NOT ALLOWED IN PROC how can come out from this problem..

Answer / pavan

can we use " SYSIN DD * " in a catalogued procedure.

Is This Answer Correct ?    2 Yes 17 No

Post New Answer

More JCL Interview Questions

What is the error/SOC code if dd names are not sysut1 and sysut2 in IEBGENER?

1 Answers   CTS,


how can you check if a file is empty using jcl?

0 Answers   IBM,


what r the types of job control statements?

2 Answers  


what are the technical terms for // /* in jcl

3 Answers   Cap Gemini,


What it does If we specify TYPRUN=P & it is not substituted by SCAN 0r HOLD in VALUE SET.

0 Answers  


what is instream data

2 Answers   EDS,


Explain the function of //jcllib statement?

0 Answers  


I have GDG defined e.g. GDG.smaplegdg.base, after processing the GDG. it contains some records and which is input to the second step2. How can I use GDG to use it as input file at step2.

3 Answers   Wipro,


How to send data from cobol program to jcl?

2 Answers   CSC,


What is Automatic Restart ? EXEC PGM = PROG1, RD = R (Is it the Restart of a JOBSTEP or Restarting the execution of the program?) Do we Restart it or it automatically Restarts executing again and again ? Then when it will finish executing ? or After Abending, when we submit it again, then it is Restarted from the Last successful Checkpoint ? If some JOBSTEP is abending, what is the benifit to Restart it, WILL IT NOT ABEND AGAIN if you don't change the LOGIC ?

1 Answers   IBM,


what is the difference between return code and maxcc?

2 Answers   iGate,


In one of intervie, my interviwer asked, I have a file which contains 4 records I would like to split the 4 different outputs for each record how to do?

14 Answers   Cap Gemini, Cognizant, JPMorgan Chase, TCS, Xansa,


Categories