‎2008 Jan 24 10:52 AM
hi all,
Is there any function module which will give message when we pass message id.i am using bapi and its giving me id not the actual message...
Regards
Lalit
‎2008 Jan 24 10:54 AM
Lalit,
Use FM
"FORMAT_MESSAGE"
Don't forget to reward if useful.....
‎2008 Jan 24 10:54 AM
Lalit,
Use FM
"FORMAT_MESSAGE"
Don't forget to reward if useful.....
‎2008 Jan 24 10:55 AM
Hi Lalith,
check FM SWO_TEXT_MESSAGE
Thanks
Lakshman
Edited by: Lakshman Tandra on Jan 24, 2008 12:03 PM
‎2008 Jan 24 10:56 AM
Hi,
generally bapi will return the message text in return-message i.e in return table message field will display the text.
Plzz reward points if it helps.
‎2008 Jan 24 11:09 AM
Hi,
use the FM
CALL FUNCTION 'BALW_BAPIRETURN_GET2'
EXPORTING
type = sy-msgty
cl = sy-msgid
number = sy-msgno
par1 = sy-msgv1
par2 = sy-msgv2
par3 = sy-msgv3
par4 = sy-msgv4
IMPORTING
return = it_ret1.
Regards,
Nagaraj
‎2008 Jan 24 11:23 AM