‎2007 Sep 19 2:40 AM
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.
‎2007 Sep 19 3:09 AM
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
‎2007 Sep 19 3:31 AM
‎2007 Sep 19 3:59 AM
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
‎2007 Sep 19 9:14 AM
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?