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 the difference between CONTINUE & NEXT SENTENCE ?
WORKING-STORAGE SECTION. 01 VAR1 COMP-2 VALUE 0. PROCEDURE DIVISION. MOVE 10.2115 TO VAR1. DISPLAY 'VAR1 =' VAR1. GOBACK. 10.2115 is stored as .10211499999999996E 02 in OS VS Cobol 10.2115 is stored as .10211500000000000E 02 in ecobol. Any reason why?
A s9(4). B v9(4) value 0.21 can i move this?
Can we put move statement in COBOL copybook
What is the difference between PIC 9.99 and PIC9v99?
) How do u handle errors in BMS macro
How to display string in the reverse order using occurs clause?
RENAME clause takes new SPACE in memory.TRUE or FALSE? a)TRUE 2)FALSE
How to code fscode 10 in cobol program? Where yoy code in your pgm?give ans for the question.
study the following code 01 A1 05 B PIC 99 05 C PIC X(4) 01 A2 05 B PIC 99V99 05 C PIC A(4) pick out the valid statement from the following a.A1 and A2 can not have sub-ordinates b.A1 and A2 can have the same sub-ordinates but must have same PIC clause c.there is nothing wrong d.A1 and A2 can have same sub-ordinates provided they are not at 01 level
how you read control card into array?
what is difference bt COND, REGION & TIME parameters at JOB & EXEC. give an exp.