<?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: How to Suppress information message from Function module ? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-suppress-information-message-from-function-module/m-p/7569329#M1565232</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nags,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pleasa mark &lt;STRONG&gt;ALL&lt;/STRONG&gt; useful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Jan 2011 06:19:02 GMT</pubDate>
    <dc:creator>awin_prabhu</dc:creator>
    <dc:date>2011-01-07T06:19:02Z</dc:date>
    <item>
      <title>How to Suppress information message from Function module ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-suppress-information-message-from-function-module/m-p/7569324#M1565227</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Every one , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a problem when executing the function module in RF Tranasaction ,   I have a requirement to create a handling units through COPAWA transaction, i am using few function modules  which is using by transactions ,  in that  the function module it is giving an information message from FM COHU_EXBEREIT_LINE_CHECK, i need to use this function module becuase it will validate the entries . that is the reason i am using it     &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but I want to suppress the message ., &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions , please. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nags&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jan 2011 02:29:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-suppress-information-message-from-function-module/m-p/7569324#M1565227</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-07T02:29:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to Suppress information message from Function module ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-suppress-information-message-from-function-module/m-p/7569325#M1565228</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Add an Exception &lt;STRONG&gt;error_message&lt;/STRONG&gt; while calling your function module in the program. It will suppress S, I, W messages&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
 EXCEPTIONS
   CHECK_ERROR      = 1
   OTHERS           = 2
   ERROR_MESSAGE    = 3.                 "  Add this line also
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jan 2011 03:24:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-suppress-information-message-from-function-module/m-p/7569325#M1565228</guid>
      <dc:creator>awin_prabhu</dc:creator>
      <dc:date>2011-01-07T03:24:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to Suppress information message from Function module ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-suppress-information-message-from-function-module/m-p/7569326#M1565229</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I  tried the above one in the program  via editor, but i am getting the below error .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Erro message :   " &lt;STRONG&gt;Formal argument 'OTHERS'  must be at the end of the exception "&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please let me know further.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Nags&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jan 2011 04:57:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-suppress-information-message-from-function-module/m-p/7569326#M1565229</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-07T04:57:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to Suppress information message from Function module ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-suppress-information-message-from-function-module/m-p/7569327#M1565230</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its clearly says what to do?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Add &lt;STRONG&gt;OTHERS&lt;/STRONG&gt; at the end of &lt;STRONG&gt;EXCEPTION&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;EXCEPTIONS
   CHECK_ERROR      = 1
      ERROR_MESSAGE    = 2.   
OTHERS           = 3.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jan 2011 05:02:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-suppress-information-message-from-function-module/m-p/7569327#M1565230</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-07T05:02:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to Suppress information message from Function module ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-suppress-information-message-from-function-module/m-p/7569328#M1565231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Problem Sloved .. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Nags&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jan 2011 05:57:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-suppress-information-message-from-function-module/m-p/7569328#M1565231</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-07T05:57:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to Suppress information message from Function module ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-suppress-information-message-from-function-module/m-p/7569329#M1565232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nags,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pleasa mark &lt;STRONG&gt;ALL&lt;/STRONG&gt; useful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jan 2011 06:19:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-suppress-information-message-from-function-module/m-p/7569329#M1565232</guid>
      <dc:creator>awin_prabhu</dc:creator>
      <dc:date>2011-01-07T06:19:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to Suppress information message from Function module ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-suppress-information-message-from-function-module/m-p/7569330#M1565233</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;I am unable to find right FMs to execute COPAWA can you please help on the same? I need to interface SAP and MII.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anoop&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 May 2011 09:45:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-suppress-information-message-from-function-module/m-p/7569330#M1565233</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-30T09:45:20Z</dc:date>
    </item>
  </channel>
</rss>

