How can we pass data from cobol to JCl?

Answers were Sorted based on User's Feedback



How can we pass data from cobol to JCl?..

Answer / sri

When someone ask you that question first thing you need to
do is you post a question to him.

Passing data from COBOL to JCL means where in JCL ?

Do you mean a file? File is also a part of JCL. If it is
file then your answer is WRITE the data into the file.

Do you mean a PDS member ? Then WRITE the data or what ever
into the PDS member.

Do you mean SYSOUT ? If so just DISPLAY the value.

If he says not these three then he need to tell what is the
purpose of moving data to JCL ? for you to give an answer.

Is This Answer Correct ?    42 Yes 2 No

How can we pass data from cobol to JCl?..

Answer / guest

We can pass the data from cobol to JCl

ex: Move 4 t0o return code.

Is This Answer Correct ?    31 Yes 4 No

How can we pass data from cobol to JCl?..

Answer / anil prajapati

we can pass data from cobol to jcl by using return-code
like
move 450 to return-code
if we are passing data likeit then at run time the maxx
return code will be this code if move code is a negative
number then after subtracting from 4096 maximum return code
will be displayed

Is This Answer Correct ?    19 Yes 2 No

How can we pass data from cobol to JCl?..

Answer / rosi

hi.
i need help
i need Passing a variable parm from JCL to a cobol/db2
program
I'm trying to write a batch cobol/db2 pgm wich receive in
linkage section some paremeters
I succeeded to pass a static string of characters but what
I need is variable parameters (INPUT )

//DDB5A59 JOB CLASS=A,MSGCLASS=R,MSGLEVEL=
(1,1),NOTIFY=xxxx
//
REGION=0M
// SET INPUT=MYNAME
<=====
//PH01S01 EXEC PGM=IKJEFT01,DYNAMNBR=20,COND=
(4,LT)
//SYSTSPRT DD
SYSOUT=*
//SYSTSIN DD
*
DSN SYSTEM
(DBSN)
RUN PROGRAM(COBPROG) PLAN(NACPLN) -

PARMS('INPUT') -

LIB
('MYDB.TRNSCTN.LOADLIB')
//SYSPRINT DD
SYSOUT=*
//SYSUDUMP DD
SYSOUT=*
//INFILE DD DSN=MYDB(&INPUT),DISP=SHR
//ERRLST DD
SYSOUT=P,DCB=RECFM=F,FCB=L56
The program (cobprog) is that when I run the job ,if PARMS
('&INPUT') returns :&INPUT and
if PARMS(&INPUT) returns :null
i need "myname" to the cobol/db2 program and name of the
member (DSN=MYDB(&INPUT),DISP=SHR)
Do you think helpe me?
Thanks

Is This Answer Correct ?    6 Yes 4 No

How can we pass data from cobol to JCl?..

Answer / mr2981

by using file we can pass data ,by using return code

Is This Answer Correct ?    9 Yes 14 No

How can we pass data from cobol to JCl?..

Answer / gigish thomas

create a Symbolic Parameter in jcl woith out goiving any
value.In the job step passthis symbolic parameter through
PARM parameter to cobol program.in the linkage section of
the cobol program assign the value/string to the symbolic
variable. It will automatically reflect to the symbolic
variable which was defined in JCL program.

Is This Answer Correct ?    4 Yes 18 No

How can we pass data from cobol to JCl?..

Answer / vip

By using the parm parameter in jcl and defining the
datanames in the linkage section of the cobol program.

Is This Answer Correct ?    9 Yes 30 No

Post New Answer

More COBOL Interview Questions

Explain fixed length record in cobol? with suitable example

1 Answers   IBM,


hi friends,can any one post the ibm mainframe inteqview questions for 1year exp candidate,for itc infotech interview?. have any body attended for this in the past?...

1 Answers   ITC Infotech,


I have dataset DS1 which has records say 1 2 3 4 5 ... ... etc And also I have second dataset DS2 whcih has records 1 3 4 5 6 8 .. ... Both the files are sorted and now I want to compare these files and write it into the third files if the records are matching.

4 Answers   FIS, Wipro,


Q:what is the difference between the variable length and fixed lenght.how it varies in the cobol.

12 Answers   CTS, Wipro,


i have a variable block which is used in my cobol program as input file having records of 4080 after compilation while runing the program im getiing file attribut mismatch and it is saying tht the record length of the file is 4084 can any one knw the answer how to reslove it ?

2 Answers  






How can I tell if a module is being called DYNAMICALLY or STATICALLY?

3 Answers   CTS,


What is diff between vsam and db2?what is advantage of db2 over vsam?which is best suited one?

1 Answers   Fidelity,


How To move a value to an array using move verb?

3 Answers   IBM,


perform I from 0 by 1 until I=5?How maney times it will executes

8 Answers  


COMP?

2 Answers  


how do you reference the printer file formats from cobol programs

0 Answers  


what is sync clause?

2 Answers   DELL,


Categories