How to Pass table from a cobol program to another cobol
program and how to use that table in called program

Answers were Sorted based on User's Feedback



How to Pass table from a cobol program to another cobol program and how to use that table in calle..

Answer / dinesh

Via linkage section. Use it as a normal table.

Is This Answer Correct ?    15 Yes 2 No

How to Pass table from a cobol program to another cobol program and how to use that table in calle..

Answer / guest

Declare the tabe in both alling and called programs WS_Section
and Linkage section respectively..

Is This Answer Correct ?    4 Yes 2 No

How to Pass table from a cobol program to another cobol program and how to use that table in calle..

Answer / maria

we can declare the internal table in both the called and calling program with the key word EXTERNAL .By doing this, the table data can be accessed in both the programs.

Is This Answer Correct ?    2 Yes 0 No

How to Pass table from a cobol program to another cobol program and how to use that table in calle..

Answer / gaurav

It can be passed using the COBOL pointers.

Is This Answer Correct ?    1 Yes 0 No

How to Pass table from a cobol program to another cobol program and how to use that table in calle..

Answer / sj

we can pass table via linkage section means static table

Is This Answer Correct ?    0 Yes 0 No

How to Pass table from a cobol program to another cobol program and how to use that table in calle..

Answer / guest

Can anyone explain this by example and give some sample code of both calling and called program ?

Is This Answer Correct ?    0 Yes 0 No

How to Pass table from a cobol program to another cobol program and how to use that table in calle..

Answer / santhosh

Ramkrishna is right, we cannt pass the table via linkage

Is This Answer Correct ?    1 Yes 3 No

How to Pass table from a cobol program to another cobol program and how to use that table in calle..

Answer / ramakrishna.d

We cant pass a table from one cobol program to another
cobol program

Is This Answer Correct ?    3 Yes 12 No

Post New Answer

More COBOL Interview Questions

How do u find the programs calling the given module, without having doing 3.13 on loadlib/source library?

2 Answers  


how will u pass dadta to cobol+db2 program...?

4 Answers   IBM,


Why would you use find and get rather than to obtain?

1 Answers  


What are the cobol coding sheets?

1 Answers  


Can we put move statement in COBOL copybook

3 Answers   Global Logic,


can we declare occurs in 01 level?

2 Answers   Temenos,


I have a field with data type X(10). I want to perform arithmetic operation on this field? I tried doing it by moving the value into a numeric field. but it didn't work out. I am getting a S0C7 abend. Pls let me know if there is any way of getting this done?

1 Answers  


What is the difference between a binary search and a sequential search?

10 Answers  


What are subroutines ? and how do we pass data to the sub routines?

2 Answers   Xansa,


Differentiate cobol and cobol-ii. (Most of our programs are written in cobolii, so, it is good to know, how, this is different from cobol)?

1 Answers  


how can i see junk values in dclgen or in hostvariable of comp ?

1 Answers   DELL,


give the examples for strings and unstrings in cobol

2 Answers   IBM,


Categories