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

System messages in class method

Former Member
0 Likes
556

Hi all,

I developed my program in OO but I'm having problem with displaying any system messages more than 50 characters. I had a message class and in 1 of the message, I had & & & &. But whatever I try to pass in, the message still cut off at 50 characters. Any help is greatly appreciated.

4 REPLIES 4
Read only

Former Member
0 Likes
432

message text maximum charcters are 73 ,you can display maximum 73 charcters.

I guess you are using & Symbol ( Dynamically you are passing the values),this value might be reached 73 charcters so it is cut off.

If you want to display complete text then better to use pop up Function module,pass what ever text here.

Thanks

Seshu

Read only

0 Likes
432

The problem is, it cut off at the 50th character, not 73.

Read only

0 Likes
432

I have tested now it is working fine upto 73 charcters.

Not sure can you check & -> how many charcters contains ,this may be issue.

for testing purpose just use one message upto 73 chacters then use message class in your program ( Here do not use & symbols).

Thanks

Seshu

Read only

0 Likes
432

I understand now. I'm actually building my messages and store into a variable. Then, I pass this variable to the placeholder &. Is this the reason it only display 50 characters?