‎2006 Jun 01 4:42 PM
Hi all,
i displayed a error message. when i double click on the error message it opens a popup and says E: 'Error 123'..So what i need id instead of E: ineed Error: ...How do I achieve this..
Thanks In advance
Vicky
‎2006 Jun 01 4:44 PM
hi Vicky,
display u'r error this way..
<b>message e100 with 'error'</b>.
MESSAGE e003(zp) WITH 'No Records Found'(001).
GO TO <b>SE91</b> and mainitain Long Text
Regards,
Santosh
Reward Points if it helps
‎2006 Jun 01 4:47 PM
It doesnt work in that way the only thing i want is Error: in the popup when i double click on the error message instead of E:
‎2006 Jun 01 4:48 PM
‎2006 Jun 01 4:52 PM
Hi,
in se93 maintain the message with <b>&</b>
<b>message e000 with 'Error occured'.</b>
Regards
vijay
‎2006 Jun 01 5:07 PM
Hey Rich ,
Iam using this kind of message..
message id text-001 type 'E' number text-002 with 'Error'.
But still i see the E: in the popup.
Thanks
VIcky
‎2006 Jun 01 5:10 PM
message id text-001 type 'Error:' number text-002 with 'Error'.
Do like above.
Regards,
Ravi
‎2006 Jun 01 5:11 PM
I don't think that can be avoided as the long text also will have to indicate the type of the message.
Regards,
Ravi
‎2006 Jun 01 5:20 PM
If you do 'Message .....' then you will get it. If you want to avoid it, use the function module POPUP_DISPLAY_MESSAGE. See the sample below
CALL FUNCTION 'POPUP_DISPLAY_MESSAGE'
EXPORTING
titel = 'Error'
msgid = '00'
msgty = 'E'
msgno = '011'
* MSGV1 =
* MSGV2 =
* MSGV3 =
* MSGV4 =
‎2006 Jun 01 5:54 PM
‎2006 Jun 01 4:46 PM
You will have to maintain a LONG TEXT for this message in the message class(SE91). Then when you double click that long text will be displayed.
Regards,
Ravi
Note :Please mark the helpful answers
‎2006 Jun 01 4:48 PM
maintain long text in the message class for the correspondng message using se91.
Cheers,
Abdul
Mark all useful answers....
‎2006 Jun 01 4:50 PM
Did u define the message class in SE91, it will not give u the error when u double click on it as Rich says
‎2006 Jun 01 4:50 PM
Hi,
if you use message e000(ERROR)with 'improper xyz'.
then you get the word <b>error</b>.but ualso get E.Check this out.
Regards,
Aswin