Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Field string

Former Member
0 Likes
521

Hi Friends,

Can any one tell me how to define and use field strings.

Thanx in advance

Regards,

Venu,

1 ACCEPTED SOLUTION
Read only

gopi_narendra
Active Contributor
0 Likes
422

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.

Regards

- Gopi

1 REPLY 1
Read only

gopi_narendra
Active Contributor
0 Likes
423

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.

Regards

- Gopi