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


I have a COBOL program that Accepts some input data. How do
you code the JCL statement for this?
( How do you code instream data in a JCL? )

Answers were Sorted based on User's Feedback



I have a COBOL program that Accepts some input data. How do you code the JCL statement for this? ..

Answer / guest

//SYSIN DD*
input data
input data
/*

Is This Answer Correct ?    11 Yes 1 No

I have a COBOL program that Accepts some input data. How do you code the JCL statement for this? ..

Answer / mahesh

You can pass the vlaues to the cobol program using PARM
coded in the jcl

Is This Answer Correct ?    4 Yes 2 No

I have a COBOL program that Accepts some input data. How do you code the JCL statement for this? ..

Answer / ritesh kumar

ONE WAY OF ACCEPTING THE DATA IS
// SYSIN DD*

VALUE1
VALUE2
*/
AND OTHER WAY YOU CAN USE FILE TO ACCEPT THE DATA
INCLUDE THAT FILE INTO YOUR RUN JCL.

Is This Answer Correct ?    2 Yes 1 No

I have a COBOL program that Accepts some input data. How do you code the JCL statement for this? ..

Answer / sandeep

ONE WAY OF ACCEPTING THE DATA IS
// SYSIN DD*

VALUE1
VALUE2
*/
AND OTHER WAY YOU CAN USE PARM PARAMETER IN YOUR JCL.
IN APPLICATION PROGRAM USE THAT DATA THROUHG LINKAGE
SECTION.

Is This Answer Correct ?    1 Yes 0 No

I have a COBOL program that Accepts some input data. How do you code the JCL statement for this? ..

Answer / pratheep

ANOTHER WAY IS
//SYSIN=*
INPUT 1
INPUT 2
//

Is This Answer Correct ?    1 Yes 1 No

I have a COBOL program that Accepts some input data. How do you code the JCL statement for this? ..

Answer / vibhor kumar

//SYSIN DD *
VALUE1 -
VALUE2 -
/*

ALL THE SOLUTIONS MENTIONED ABOVE FORGOT TO ADD CONTINUATION
CHARACTER (-)

Is This Answer Correct ?    2 Yes 2 No

I have a COBOL program that Accepts some input data. How do you code the JCL statement for this? ..

Answer / ekta agrawal

ONE WAY OF ACCEPTING THE DATA IS
// SYSIN DD*

VALUE1
VALUE2
*/
and other way you can also give teh data thru SYSIN is:
// SYSIN DD DSN='DDPCN.EKTA.TEST',DISP=SHR

Is This Answer Correct ?    0 Yes 1 No

I have a COBOL program that Accepts some input data. How do you code the JCL statement for this? ..

Answer / banupriya

ONE WAY OF ACCEPTING THE DATA IS
// SYSIN DD*

VALUE1
VALUE2
*/
and other way you can also give teh data thru SYSIN is:
// SYSIN DD DSN='DDPCN.EKTA.TEST',DISP=SHR

Is This Answer Correct ?    1 Yes 2 No

I have a COBOL program that Accepts some input data. How do you code the JCL statement for this? ..

Answer / shashidhar kalasannavar

You can pass the data to cobol program in three way and one
is instrem.

//SYSIN DD *
DATA1
DATA2
/*

or
//SYSIN DD DSN=SSK08.TEST.DATA,DISP=SHR


By intream you can send only 80 charecters

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More JCL Interview Questions

What is QSAM error usually when it is occurs?

1 Answers  


Describe the various parameters utilized in the creation of a gdg?

0 Answers  


how to split a file

4 Answers   IBM,


when we use sysprint and sysout statements

3 Answers  


What is the meaning of keyword in JCL? What is its opposite?

1 Answers  


What is a JCL Command statement ?

1 Answers   IBM,


What is the difference between IEBGENER, IEBCOPY and REPRO in IDCAMS utility?

8 Answers   Accenture, TCS,


What do you understand by the term job time – out and how can you overcome that?

0 Answers  


describe the dd statement,its meaning,syntax and keywords?

1 Answers  


I have a JCL with 10 steps, want to execute first 5 steps only, what are ways of doing it?is it possible to control through JOB card?

5 Answers   iGate,


what happens if job falls in loop ? how to resolve it ?

3 Answers   Patni,


i have a jcl in which 4 & 5 step creates a new generation. 4th step output is as input for the 6th step & 5th step output is used as input in the 7th step. How they are refered as in the 6th & 7th steps? If the job abends in 6th step then how the 5th step output is refered in 7th step?

1 Answers   IBM,


Categories