‎2011 Jun 09 4:57 AM
I have a selection screen for a report in 46C.
When I do a MESSAGE the message text is truncated ...seems to only allow 55 characters
Is there a limit to the size of a message text area ?
‎2011 Jun 09 6:40 AM
Hi ,
All the messages are stored in T100 table under TEXT field. The size of it is 73 Char.
‎2011 Jun 09 7:28 AM
Hi,
I think you are used I. if I means it will take only 55 char .
so, what we need to do is split the char and give in the messsge.
regards,
Viru
‎2011 Jun 09 12:54 PM
I like to use messages like GR016 which has four ampersand place holders....
One can then do:
message e016(gr) with
'this is text part 1'
'this is text part 2'
'this is text part 3.
etc., to get longer message displays.
‎2011 Jun 09 7:38 AM
Hi,
You can put your message in two Text element and use it in code as below,
MESSAGE S001 with TEXT-001 TEXT-002.
Hope this would solve your problem.
Regards,
Dhananjay
‎2011 Jun 09 7:40 AM
Hi,
Yes it is having size 55 char only. so for this case we can write our custom message with hard coding as well.
Example:
message i000(z00) with 'Message'.
Ram.