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

Why we need to use redefine clause when we can define the variable seperately... what is actual need....

5 Answers   Accenture,


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

2 Answers   Xansa,


COMPUTE X = A * B - C * D and COMPUTE X = (A * B) - (C * D) (a) Are not the same (b) Are same (c) Syntactically wrong (d) Will yield a run time error

1 Answers   TCS,


what is the diff b/w select stsmt and cursor ?

2 Answers  


How to resolve the soc4 and soc7 errors?

5 Answers   IBM, RBS,






How we copy a program from production region to development region.What is the process & syntax ?

3 Answers   CTS,


how many bytes do SPPPP999 will store?

18 Answers  


given the following: 77 A PIC 9V9 VALUE 9.5 77 B PIC 9 VALUE 9. 77 C PIC V9 VALUE 0.8 77 D PIC 9 77 E PIC 9 77 F PIC 9V999 what are the contenta of D E nad F after the following statements are executed: COMPUTE F ROUNDED=A+C/B MULTIPLY A BY C GIVING E ADD B C A GIVING D ROUNDED a.F=9.589 E=8 D=1 b.F=9.589 E=8 D=9 c.F=9.589 E=7 D=9 d.F=9.589 E=7 D=1

5 Answers   Broadridge, TCS,


What is the figurative constant in cobol?

1 Answers  


If my program receives input feed from program in other system.. if the receiving field size is less than the sending field.. what abend will be happening.

1 Answers   HCL,


WHY LRECL NEEDS TO BE 4 EXTRA THEN THE COBOL FILE LENGTH & WHAT IT CONTAIN IN THAT LENGTH

2 Answers   Cap Gemini,


What is the purpose of Identification Division?

1 Answers  


Categories