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

Char size

Former Member
0 Likes
602

Hello.

How can I use a char greater than 132 digits within an abap program ?

Even when I define a field with size 300 or type of domain with char 1000 size it gets only and exactly 132 digits when I'm concatenating few fields into it.

Thanks in advance,

Rebeka

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
575

Hi rebeka!

Try using string instead of char.

rewrd if helpful.

Hello.

How can I use a char greater than 132 digits within an abap program ?

Even when I define a field with size 300 or type of domain with char 1000 size it gets only and exactly 132 digits when I'm concatenating few fields into it.

Thanks in advance,

Rebeka

3 REPLIES 3
Read only

athavanraja
Active Contributor
0 Likes
575

it gets only and exactly 132 digits when I'm concatenating few fields into it.

how did you find this out? during debugging, if yes, in debuggin mode you wont be able to see the full value.

try this in debuggin to see specific areas

varaibleofsize300+132(100)

Read only

Former Member
0 Likes
576

Hi rebeka!

Try using string instead of char.

rewrd if helpful.

Read only

Former Member
0 Likes
575

Hi,

Try to declare that field as TYPE STRING.

Rgds,

Bujji