‎2008 Mar 17 8:33 AM
In ABAP DDIC, I am creating a field, field must store more than 255 characters of data.
Is their any data type which stores more than 255 characters.
around 1000 characters.
‎2008 Mar 17 8:38 AM
Hi,
you can declare the variable as below.
data: st(1000) type c.
‎2008 Mar 17 8:42 AM
Hi,
U can just declare it as type c. It can hold more than 255 characters.
Reward if helpful.
Regards,
Ramya
‎2008 Mar 17 8:47 AM
Enter your field name .. and click on the
predefined Type push button .. enter STRING in the data type
and length as 1000...
‎2008 Mar 17 8:58 AM