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

Maximum Characters

Former Member
0 Likes
687

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.

4 REPLIES 4
Read only

Former Member
0 Likes
642

Hi,

you can declare the variable as below.

data: st(1000) type c.

Read only

Former Member
0 Likes
642

Hi,

U can just declare it as type c. It can hold more than 255 characters.

Reward if helpful.

Regards,

Ramya

Read only

Former Member
0 Likes
642

Enter your field name .. and click on the

predefined Type push button .. enter STRING in the data type

and length as 1000...

Read only

0 Likes
642

u can use type 'String'.

reward if useful