You can create a type.
types : wy_char500(500).
and you use this type in your declaration.
Isn't there any data element which you have declared of length 500 ?
Or you can go to types
types: ty_char(500) type c.
and then go to Global Data and declare any global variable of type <b>ty_char</b>
or
just declare a variable of type c. I think it takes any length. Not sure about this , though.
Regards,
Subramanian V.
Add a comment