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?
No Answer is Posted For this Question
Be the First to Post Answer
What is cobol?
What will happen if you code GO BACK instead of STOP RUN in a stand alone COBOL program ?
8 Answers Arigo Infotech, IBM,
study the following 01 A PIC 99V0 VALUE 5 01 B PIC 9V9 VALUE 6 01 C PIC 99V9 VALUE 2.5 01 D PIC 99 VALUE 3 COMPUTE A ROUNDED B C = A+B*C/D ON SIZE ERROR PERFORM PRINT-ERROR the comments of A.B.C after execution of the above statement are a.A=10 B=0 C=10 b.A=10 B=9.9 C=9.9 c.A=10 B=0 C=9.9 d.A=10 B=6 C=10
How can we know that cobol program is using report file or simple file....?
In an array processing what is the thing that can be done by using subscripts but not by using index
1.Can we define condition-name conditions in FD entry.
how will u code parm parameter and where pls ?
I know my query will return more than one row but I don't want cursor what should I do?
What the difference is between continue and next sentence?
If i initialize the 01 level variable in array, will it initialize all the array elements (occurs)?
what is the difference between start and startbr?
What does EXIT do ?