<?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: Message Catching in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-catching/m-p/1438459#M208796</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use function&lt;/P&gt;&lt;P&gt;Format_message&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pass all the parameters . It will return you the exact message&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Naresh Kumar Malik&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Jun 2006 09:56:12 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-20T09:56:12Z</dc:date>
    <item>
      <title>Message Catching</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-catching/m-p/1438458#M208795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4, how can I display the exact message shown in a status bar of a transaction?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code above matches the message id but doesnt show the exact message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Kenny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 09:54:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-catching/m-p/1438458#M208795</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T09:54:45Z</dc:date>
    </item>
    <item>
      <title>Re: Message Catching</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-catching/m-p/1438459#M208796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use function&lt;/P&gt;&lt;P&gt;Format_message&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pass all the parameters . It will return you the exact message&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Naresh Kumar Malik&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 09:56:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-catching/m-p/1438459#M208796</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T09:56:12Z</dc:date>
    </item>
    <item>
      <title>Re: Message Catching</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-catching/m-p/1438460#M208797</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;try this one &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;BAPI_MESSAGE_GETDETAIL&amp;lt;/b&amp;gt; and see the documentations how to use ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Prabhu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 09:56:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-catching/m-p/1438460#M208797</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T09:56:23Z</dc:date>
    </item>
    <item>
      <title>Re: Message Catching</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-catching/m-p/1438461#M208798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi you could use the function module&lt;/P&gt;&lt;P&gt; CALL FUNCTION 'MESSAGE_TEXT_BUILD'     &lt;/P&gt;&lt;P&gt;   EXPORTING                            &lt;/P&gt;&lt;P&gt;     msgid               = sy-msgid     &lt;/P&gt;&lt;P&gt;     msgnr               = sy-msgno     &lt;/P&gt;&lt;P&gt;     msgv1               = sy-msgv1     &lt;/P&gt;&lt;P&gt;     msgv2               = sy-msgv2     &lt;/P&gt;&lt;P&gt;     msgv3               = sy-msgv3     &lt;/P&gt;&lt;P&gt;     msgv4               = sy-msgv4     &lt;/P&gt;&lt;P&gt;   IMPORTING                            &lt;/P&gt;&lt;P&gt;     message_text_output = i_error-text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note&lt;/P&gt;&lt;P&gt;Award Points for helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 09:58:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-catching/m-p/1438461#M208798</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T09:58:57Z</dc:date>
    </item>
    <item>
      <title>Re: Message Catching</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-catching/m-p/1438462#M208799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; 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.&lt;/P&gt;&lt;P&gt;If it helps reward points&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nandha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 09:59:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-catching/m-p/1438462#M208799</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T09:59:16Z</dc:date>
    </item>
  </channel>
</rss>

