‎2008 Jun 20 9:44 AM
Hi ,
Hi All,
I am using the message statement to display the error information for the user using the text elements .
Syntax i have used is :
message e000( Z_Mclass) with text-002.
and text-002 = "There is no record in the custom table which meets the given criteria.DLn :80 and ML- 99.
But whenever i run the program it displays only part of message.
Please let me know is there any restrictions for text elements description.length ?
Full points will be given for the correct answers.
Regards,
Praveen.
‎2008 Jun 20 9:46 AM
Hi,
One place holder can contain max 50 characters. so if your message lengthe is GT 50, place the text in two varaibles.
use the message e532(0U) with text-001 text-002.
Thanks,
Rajinikanth
‎2008 Jun 20 9:45 AM
Check the length of the text element. it might be greater than the longest length permissible for the message.
‎2008 Jun 20 9:46 AM
Hi,
One place holder can contain max 50 characters. so if your message lengthe is GT 50, place the text in two varaibles.
use the message e532(0U) with text-001 text-002.
Thanks,
Rajinikanth
‎2008 Jun 20 9:46 AM
hi,
message e000( Z_Mclass) with text-002.
For message no 000 have u checked the long text description in your message class
there is a check box available in message class
u check that
Regards,
priya
‎2008 Jun 20 10:01 AM
Hi Priya,
The message class Z_mclass has got &&&& with number 000.
I tried to activate the long text but its giving me a information message short text describes the object sufficiently.
as per Rajinikath I think we can display a maximum of 50 characters for a place holder .So i need to split the text .
Do you have any more findings on this ?
Thanks for your answers,
Regards,
Pravee
‎2008 Jun 20 9:46 AM
Split the message into multiple text elements.
Eg.
message e000( Z_Mclass) with text-002
text-003
text-004
text-005.
‎2008 Jun 20 10:10 AM
Hi,
You text element text-002 = "There is no record in the custom table which meets the given criteria.DLn :80 and ML- 99 " is greater than 50 so it will display only part of the message in run time.
So you need to split the mesage into 2 or 3 text elements.
message e000( Z_Mclass) with text-002 text-003 .....so on.
Hope this helps you,
Plz reward if useful.
Thanks,
Dhanashri.
Edited by: Dhanashri Pawar on Jun 20, 2008 11:10 AM