Skip to Content
0
Former Member
Jun 02, 2008 at 09:31 PM

Dynamic Array

276 Views

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