Hi,
I need to initialize only the second level of a two-d array in cobol and preserve the filrst level without looping using a perform varying statement to the second level. Is there any way without using the subscript?
Ex -
01 ws-item-count occurs 9 times.
05 ws-item-1 X(1).
05 ws-item-2 x(2).
05 ws-item-3 occurs 4 times.
10 ws-it3-a1 X(01).
10 ws-it3-a2 x(01).
10 ws-it3-a3 x(01).
Now i need to initialize only WS-ITEM-3 (which occurs 4 times but need to save the upper items at level 1 of the array)
Thanks in advance.
Abhinav