<?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: Exception Handler in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-handler/m-p/1589782#M265558</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;When u use call the fm try to use the excptions OTHER and ERROR_MESSAGES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ..................&lt;/P&gt;&lt;P&gt;  EXCEPTIONS&lt;/P&gt;&lt;P&gt;    ERROR_MESSAGE = 1&lt;/P&gt;&lt;P&gt;    OTHERS        = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway if the dump is raised by another fm called by your fm probably u should check your enviroment because some data are missing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 05 Oct 2006 07:22:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-05T07:22:22Z</dc:date>
    <item>
      <title>Exception Handler</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-handler/m-p/1589779#M265555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Guyz!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this post finds you all high on spirit. I am having a serios problem of exception handling. I am just giving scenario of my situation. Let say one standard SAP function module is there, where no exception handling logic has been provided. Rite now while executing my program it is going to dump as I am using that function module. So what best I can do to avoid this situation without modifying standard SAP function module. Neither I want to search for any note for the particular function module. All I need from you guyz is, something that I can do from my application program or in the customer namespace to avoid this bottleneck.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Manas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Oct 2006 07:11:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-handler/m-p/1589779#M265555</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-05T07:11:14Z</dc:date>
    </item>
    <item>
      <title>Re: Exception Handler</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-handler/m-p/1589780#M265556</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  Check for SY-SUBRC once Standard function Module is Executed. If SY-SUBRC &amp;lt;&amp;gt; 0. then EXIt or STOP (As per your Requirement). This could avoid from Dump.&lt;/P&gt;&lt;P&gt;  Hope this helps out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Prashanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Oct 2006 07:13:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-handler/m-p/1589780#M265556</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-05T07:13:57Z</dc:date>
    </item>
    <item>
      <title>Re: Exception Handler</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-handler/m-p/1589781#M265557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to execute the Function module in SE37 with the parameters you are passing through the program. If it is's giving a dump then you need to debug &amp;amp; check with parameter is problematic. I think there is some problem with export/table/changing parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dharitree&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Oct 2006 07:22:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-handler/m-p/1589781#M265557</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-05T07:22:22Z</dc:date>
    </item>
    <item>
      <title>Re: Exception Handler</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-handler/m-p/1589782#M265558</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;When u use call the fm try to use the excptions OTHER and ERROR_MESSAGES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ..................&lt;/P&gt;&lt;P&gt;  EXCEPTIONS&lt;/P&gt;&lt;P&gt;    ERROR_MESSAGE = 1&lt;/P&gt;&lt;P&gt;    OTHERS        = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway if the dump is raised by another fm called by your fm probably u should check your enviroment because some data are missing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Oct 2006 07:22:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-handler/m-p/1589782#M265558</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-05T07:22:22Z</dc:date>
    </item>
  </channel>
</rss>

