Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

remove message attributes from the message

Former Member
0 Likes
1,034

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

8 REPLIES 8
Read only

praveen_hannu
Contributor
0 Likes
976

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

Read only

0 Likes
976

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'

Read only

praveen_hannu
Contributor
0 Likes
976

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

Read only

0 Likes
976

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'

Read only

0 Likes
976

Hello

Try RH_MESSAGE_GET

Read only

SuhaSaha
Product and Topic Expert
Product and Topic Expert
0 Likes
976

Hey Dzed,

Standard Keyword MESSAGE INTO fetches the message text for you. No need of calling any func. module for this.

BR,

Suhas

Read only

SuhaSaha
Product and Topic Expert
Product and Topic Expert
0 Likes
976

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

Read only

Former Member
0 Likes
976

solved myself