‎2007 Oct 24 8:02 AM
I have made a table that uses a field that is <b>char255</b> type .
I made copy as <b>ychar255</b> . The problem is that i can fill it only with 126 characters .
What can i do ?
Points will be rewarded as usual ....
‎2007 Oct 24 8:06 AM
use string for ur purpose..
declaration
data : str type string.
SSTRING 1-255 Character string string
STRING 256-... Character string string
The type SSTRING is available as of release 6.10 and it has a variable length. Its maximum length must be specified and is limited to 255. The advantage of this type compared with CHAR, is that it is assigned to the ABAP type string.
Thanks & Regards
ilesh 24x7
‎2007 Nov 07 1:34 PM