IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

How to use Dynamic array in my cobol code


IBM Mainframe Forums -> COBOL Programming
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
noorkh

New User


Joined: 06 Mar 2006
Posts: 76
Location: Chennai

PostPosted: Thu Oct 05, 2006 6:03 pm
Reply with quote

Hi,

I have requirement to use Dynamic array in my cobol code.

I have declared my array as follows:

01 ARRAY-REC
03 ARRAY-CNT PIC S9(4) COMP.
03 ARRAY-FIELDS OCCURS 1 TO 2000 TIMES
DEPENDING ON ARRAY-CNT
INDEXED BY IN-INDX.
05 ARRAY-FLDS PIC X(1500).

This array will be used to store the records read from file. While reading the records i verify to the particular transaction then only i will store into this. So i don't know how much big table will be until or otherwise i read.

So can you tell me where to increment ARRAY-CNT or should i initialize with some count. Please clarify me.

As of now I am incrementing this count before each move to this Array.I have similar type of 3 more arrays. It is giving me insufficient storage error.

Can you help me out?

Thanks in advance
Noor
Back to top
View user's profile Send private message
MFRASHEED

Active User


Joined: 14 Jun 2005
Posts: 186
Location: USA

PostPosted: Thu Oct 05, 2006 8:11 pm
Reply with quote

Under manuals listed in this forum refer to

VS COBOL II Programming Guide section 3.6.4.4 Complex OCCURS DEPENDING ON

Hope this helps.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> COBOL Programming

 


Similar Topics
Topic Forum Replies
No new posts Replace each space in cobol string wi... COBOL Programming 3
No new posts COBOL -Linkage Section-Case Sensitive COBOL Programming 1
No new posts run rexx code with jcl CLIST & REXX 15
No new posts COBOL ZOS Web Enablement Toolkit HTTP... COBOL Programming 0
No new posts Compile rexx code with jcl CLIST & REXX 6
Search our Forums:

Back to Top