‎2006 Jun 20 10:54 AM
Hi All,
Using MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4, how can I display the exact message shown in a status bar of a transaction?
The code above matches the message id but doesnt show the exact message.
Best regards,
Kenny
‎2006 Jun 20 10:56 AM
You can use function
Format_message
Pass all the parameters . It will return you the exact message
Message was edited by: Naresh Kumar Malik
‎2006 Jun 20 10:56 AM
Hi
try this one
<b>BAPI_MESSAGE_GETDETAIL</b> and see the documentations how to use ?
Regards
Prabhu
‎2006 Jun 20 10:58 AM
hi you could use the function module
CALL FUNCTION 'MESSAGE_TEXT_BUILD'
EXPORTING
msgid = sy-msgid
msgnr = sy-msgno
msgv1 = sy-msgv1
msgv2 = sy-msgv2
msgv3 = sy-msgv3
msgv4 = sy-msgv4
IMPORTING
message_text_output = i_error-text.
Note
Award Points for helpful answers
‎2006 Jun 20 10:59 AM
Hi,
At the end of the transaction final message will come double click that message and get that message no and give it in message no it will display specific message what it displays.
If it helps reward points
Regards,
Nandha.