‎2010 Apr 16 9:40 AM
Hello
I use FM RRMS_MESSAGE_HANDLING to generate a mesage in SAP BI.
mesage number is 000, mesage class BRAIN , message type I
System generates the following message :
I : BRAIN : 000 : Mesage text
How is it possible toget rid of I : BRAIN : 000?
thanks
‎2010 Apr 16 9:43 AM
Hi
These values are default values for this FM. Please try to override with your own data or pass null values, instead of leaving the export parameters by commenting.
Thanks
Praveen
‎2010 Apr 16 9:51 AM
I pass the following parameters but it still show message type number :
CALL FUNCTION 'RRMS_MESSAGE_HANDLING'
EXPORTING
I_CLASS = 'BRAIN'
I_TYPE = 'I'
I_NUMBER = '000'
‎2010 Apr 16 9:57 AM
Hi
Yes, these are the default values for this function module. Please try to pass the correct correct message class, number and type to generate the message.
And try to pass the values for the export parameters I_MSGV1 to I_MSGV4. So these values will display in the place of message.
Thanks
Praveen
‎2010 Apr 16 10:13 AM
thats clear
Thanks
But how to raise just informative mesage
All messages are are shown only afterwards if there no exception no_replacement or AGAIN
These type of message are shown after the process has bee executed
CALL FUNCTION 'RRMS_MESSAGE_HANDLING'
EXPORTING
I_CLASS = 'ZBW'
I_TYPE = 'I'
I_NUMBER = '016'
‎2010 Apr 16 10:23 AM
‎2010 Apr 16 10:26 AM
Hey Dzed,
Standard Keyword MESSAGE INTO fetches the message text for you. No need of calling any func. module for this.
BR,
Suhas
‎2010 Apr 16 10:16 AM
You can use the SPLIT AT command to achieve this
You basically use this FM to raise a message ? You can do this using something like:
MESSAGE ID 'ZDXXU_INT' TYPE 'I' NUMBER '001' WITH 'XYZ'.Suhas
Edited by: Suhas Saha on Apr 16, 2010 2:50 PM
‎2010 Apr 16 2:27 PM