Application Development 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: 

Field string

Former Member
0 Kudos

Hi Friends,

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

Thanx in advance

Regards,

Venu,

1 ACCEPTED SOLUTION

gopi_narendra
Active Contributor
0 Kudos

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

gopi_narendra
Active Contributor
0 Kudos

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