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

Answer Posted / gaurav

It can be passed using the COBOL pointers.

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

) How do u handle errors in BMS macro

1512


Explain the configuration section of a cobol program with examples of syntax.

661


A table has two indexes defined. Which one will be used by the SEARCH?

759


what are decleratives in cobol?

1831


Our issue is there seems to be a disconnect, or no link, between our SELECT statement and our SD. We had SELECT SORT-FILE and SELECT SORT-FILE ASSIGN TO SORTWRK. ASSIGN TO SORTWRK1 SORTWRK2 SORTWRK3 SORTWRK4. with SD SORT_FILE RECORD CONTAINS 7833 CHARACTERS. In either case, at run time, the system ignored our SORTWRK# DD statements and allocated 16 sort works with the SORTWK## naming convention. Any ideas why the system does not recognize the connection? We do not even need the SORTWRK DD statements. Thanks

2337






write a cobol logic. i have file that has 10 records .1 record go to first output file and second record goes to 2 output and etc

712


example for sub strings ? and refernce modifications whit output pls

1846


How can we find that module can be called – whether DYNAMICALLY or STATICALLY?

714


Whats the difference between search & search ALL?

5270


How did the release of cobol/370 version 1.3 improve the performance of release 1.1?

645


Can we change the password using ALTER? anyone tried and changed?

1550


1.Is it possible to move the data from 99.99 to 99v99? 2.What is the CICS-vsam Compilation process? 3.In My GDG 5 generation will be there GDG3 got an abend what will happen? 4.In my GDG first generation is +1 And I want to add the new generation what will happen previous generation? 5.How can you give the PIC clause below conditions A). s9 (reddy), B). s9 (5) occurs 5 times? 6.How override the proc from a particular step? and what is symbolic and override Procs?

5379


Are you comfortable in cobol or jcl?

643


How to use the same COBOL program in Batch and CICS on lines? explain with an example

1914


I have a program with an Array of 5000 occurences which is being passed from 5 sub levels to the front end screen. Thess 5 programs using each 5*2 = 10 different arrays with size as 5000. This is causing the transaction to utilize more storage consupmtion. I am looking to reduce the storage consumption. As part of that initially i thought Dynamic array may solve my problem. After viewing the comments given i see its same as normal array. IS there any other way we can resolve this issue?

1232