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: 

Data type: variables of this type should hold maximum amount of data

Former Member
0 Kudos

Dear all,

In SAP we have any field like Richtext field in Lotunotes, which can hold anyamount of data, I mean it can store arbitary amount of data based on the input.

I have came across certain fileds called LCHR, but it has got a limitation. Fields of this type must be located at the end of transparent tables (in each table there can be only one such field) and must be preceded by a length field of type INT2.

But I need to know about a field which can hold maximum amount of data at a time.

Regards,

Giri

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hey you can use STRING data type. I checked that. it is working fine.

Did yiu face any problems with that...

3 REPLIES 3

Former Member
0 Kudos

Hey you can use STRING data type. I checked that. it is working fine.

Did yiu face any problems with that...

Clemenss
Active Contributor
0 Kudos

Hi Ramada,

starting with ECC600 and in all unicode systems the length of a character is system-dependent.

Fields of type STRING store an arbitrary amount of characters, type XSTRING stores an arbitrary amount of BYTES.

AFAIK a Notes Richtext field will hold much more: formatting, data and document type an what else.

There is nothing directly comparable in ABAP.

Regards

Clemens

Former Member
0 Kudos

Hi Clemens,

Thank you very much for your quick reponce.

I got it.

Regards,

giri