How To move a value to an array using move verb?
Answer Posted / pak
move VALUE to array_name(index/subscript)
where VALUE is the data to be input in array.
if the array is indexed use,index or else subscript
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is the difference between comp and comp-3?
What is the difference between structured cobol programming and object alternativelyiented cobol?
What are declaratives and what are their uses in cobol?
Name some of the examples of COBOl 11?
Can we change the password using ALTER? anyone tried and changed?
how to access the file from prodution from changeman tool and to submit a file to production
What are the various section in data division and briefly explain them.
What is the default value(s) for an initialize and what keyword allows for an override of the default?
if we have " ibm mainframe ",in that how to remove first and last leading space eg:"ibm mainframe" like that the answer we need
Why is it necessary that file needs to be opened in I-O mode for REWRITE?
how to refer the data field?
what is the use of outrecord?
What are the different open modes available in cobol?
What are the different rules of SORT operation?
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?