Hi,
I want to declare a char array dynamically.
Example:
data: size type i.
size = 30. "size gets populated from another function module
data:
begin of table1,
STR(size) type c,
end of table1.
Can any one please tell me on how to declare the above STR correctly?
Thanks,
Uma