<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: remove message attributes from the message in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-message-attributes-from-the-message/m-p/6831444#M1471602</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;DEL&gt;You can use the SPLIT AT command to achieve this&lt;/DEL&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You basically use this FM to raise a message ? You can do this using something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;MESSAGE ID 'ZDXXU_INT' TYPE 'I' NUMBER '001' WITH 'XYZ'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Suhas Saha on Apr 16, 2010 2:50 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Apr 2010 09:16:48 GMT</pubDate>
    <dc:creator>SuhaSaha</dc:creator>
    <dc:date>2010-04-16T09:16:48Z</dc:date>
    <item>
      <title>remove message attributes from the message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-message-attributes-from-the-message/m-p/6831439#M1471597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I use FM RRMS_MESSAGE_HANDLING to generate a mesage in SAP BI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mesage number is 000, mesage class BRAIN , message type I&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;System generates the following message :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I : BRAIN : 000 : Mesage text&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How is it possible toget rid of I : BRAIN : 000?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Apr 2010 08:40:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-message-attributes-from-the-message/m-p/6831439#M1471597</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-16T08:40:37Z</dc:date>
    </item>
    <item>
      <title>Re: remove message attributes from the message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-message-attributes-from-the-message/m-p/6831440#M1471598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;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.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Praveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Apr 2010 08:43:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-message-attributes-from-the-message/m-p/6831440#M1471598</guid>
      <dc:creator>praveen_hannu</dc:creator>
      <dc:date>2010-04-16T08:43:39Z</dc:date>
    </item>
    <item>
      <title>Re: remove message attributes from the message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-message-attributes-from-the-message/m-p/6831441#M1471599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I pass the following parameters but it still show message type number :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          CALL FUNCTION 'RRMS_MESSAGE_HANDLING'&lt;/P&gt;&lt;P&gt;            EXPORTING&lt;/P&gt;&lt;P&gt;              I_CLASS              = 'BRAIN'&lt;/P&gt;&lt;P&gt;              I_TYPE               = 'I'&lt;/P&gt;&lt;P&gt;              I_NUMBER             = '000'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Apr 2010 08:51:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-message-attributes-from-the-message/m-p/6831441#M1471599</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-16T08:51:34Z</dc:date>
    </item>
    <item>
      <title>Re: remove message attributes from the message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-message-attributes-from-the-message/m-p/6831442#M1471600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;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. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;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.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Praveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Apr 2010 08:57:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-message-attributes-from-the-message/m-p/6831442#M1471600</guid>
      <dc:creator>praveen_hannu</dc:creator>
      <dc:date>2010-04-16T08:57:17Z</dc:date>
    </item>
    <item>
      <title>Re: remove message attributes from the message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-message-attributes-from-the-message/m-p/6831443#M1471601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thats clear &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But how to raise just informative mesage &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All messages are are shown only afterwards if there no exception no_replacement or AGAIN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These type of message are shown after the process has bee executed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          CALL FUNCTION 'RRMS_MESSAGE_HANDLING'&lt;/P&gt;&lt;P&gt;            EXPORTING&lt;/P&gt;&lt;P&gt;              I_CLASS              = 'ZBW'&lt;/P&gt;&lt;P&gt;              I_TYPE               = 'I'&lt;/P&gt;&lt;P&gt;              I_NUMBER             = '016'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Apr 2010 09:13:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-message-attributes-from-the-message/m-p/6831443#M1471601</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-16T09:13:23Z</dc:date>
    </item>
    <item>
      <title>Re: remove message attributes from the message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-message-attributes-from-the-message/m-p/6831444#M1471602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;DEL&gt;You can use the SPLIT AT command to achieve this&lt;/DEL&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You basically use this FM to raise a message ? You can do this using something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;MESSAGE ID 'ZDXXU_INT' TYPE 'I' NUMBER '001' WITH 'XYZ'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Suhas Saha on Apr 16, 2010 2:50 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Apr 2010 09:16:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-message-attributes-from-the-message/m-p/6831444#M1471602</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-04-16T09:16:48Z</dc:date>
    </item>
    <item>
      <title>Re: remove message attributes from the message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-message-attributes-from-the-message/m-p/6831445#M1471603</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try &lt;STRONG&gt;RH_MESSAGE_GET&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Apr 2010 09:23:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-message-attributes-from-the-message/m-p/6831445#M1471603</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-16T09:23:17Z</dc:date>
    </item>
    <item>
      <title>Re: remove message attributes from the message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-message-attributes-from-the-message/m-p/6831446#M1471604</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Dzed,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Standard Keyword MESSAGE INTO fetches the message text for you. No need of calling any func. module for this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Apr 2010 09:26:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-message-attributes-from-the-message/m-p/6831446#M1471604</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-04-16T09:26:49Z</dc:date>
    </item>
    <item>
      <title>Re: remove message attributes from the message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-message-attributes-from-the-message/m-p/6831447#M1471605</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;solved myself&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Apr 2010 13:27:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-message-attributes-from-the-message/m-p/6831447#M1471605</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-16T13:27:41Z</dc:date>
    </item>
  </channel>
</rss>

