Lokendra Kumar
2nd January 2003, 14:28
Hi All,
Happy new year to u.
Defining the dynamic array in one shot is not possible in baan. But baan provided the ALLOC.MEM() function to meet the requiremet of developers.
I would like to mentioned the lines of my report script code for better code understanding.
declaration:
long counter
string item.code(16,1) based | 1D array for 1 item code of 16
| character length
detail.1:
before.layout:
counter = counter + 1
alloc.mem(item.code, 16, counter)
item.code(16, counter) = tiitm001.item
*********
But the item code is not being saved in the variable item.code
Can any one help me
Lokendra Kumar
Happy new year to u.
Defining the dynamic array in one shot is not possible in baan. But baan provided the ALLOC.MEM() function to meet the requiremet of developers.
I would like to mentioned the lines of my report script code for better code understanding.
declaration:
long counter
string item.code(16,1) based | 1D array for 1 item code of 16
| character length
detail.1:
before.layout:
counter = counter + 1
alloc.mem(item.code, 16, counter)
item.code(16, counter) = tiitm001.item
*********
But the item code is not being saved in the variable item.code
Can any one help me
Lokendra Kumar