<?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: Exceptions in Function Modules in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/exceptions-in-function-modules/m-p/3616527#M871228</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Santo,,,,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look into this link ,, where u will get  a clear information on exceptions,,,,,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw70/helpdata/en/9f/db98fc35c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw70/helpdata/en/9f/db98fc35c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://abapprogramming.blogspot.com/2007/06/lesson-24-function-groups-and-function.html" target="test_blank"&gt;http://abapprogramming.blogspot.com/2007/06/lesson-24-function-groups-and-function.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the function module, you can create your own local types and data objects, and call subroutines or other function modules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can make a function module trigger exceptions .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To do this, you must first declare the exceptions in the interface definition, that is, assign each one a different name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the source code of your function module, you program the statements that trigger an exception under the required condition. At runtime, the function module is terminated when an exception is triggered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The changes to exporting and changing parameters are the same as in subroutines. There are two statements that you can use to trigger an exception. In the forms given below, stands for the name of an exception that you declared in the interface. The system reacts differently according to whether or not the exception was listed in the function module call: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RAISE .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the exception is listed in the calling program, the system returns control to it directly. If the exception is not listed, a runtime error occurs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MESSAGE () RAISING .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the exception is listed in the calling program, the statement has the same effect as RAISE . If it is not listed, the system sends message from message class with type , and no runtime error occurs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Function modules differ from subroutines in that you must assume that they will be used by other programmers. For this reason, you should ensure that you complete the steps listed here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Documentation (can be translated)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should document both your parameters and exceptions with short texts (and long texts if necessary) and your entire function module. The system provides a text editor for you to do this, containing predefined sections for Functionality, Example Call, Hints, and Further Information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Work list&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you change an active function module, it acquires the status active (revised). When you save it, another version is created with the status inactive . When you are working on a function module, you can switch between the inactive version and the last version that you activated. When you activate the inactive version, the previous active version is overwritten.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Function test&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once you have activated your function module, you can test it using the built-in test environment in the Function Builder. If an exception is triggered, the test environment displays it, along with any message that you may have specified for it. You can also switch into the Debugger and the Runtime Analysis tool. You can save test data and compare sets of results.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you insert a function module call in your program, you should use the Pattern function. Then, you only need to enter the name of the function module (input help is available). The system then inserts the call and the exception handling (MESSAGE statement) into your program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You assign parameters by name. The formal parameters are always on the left-hand side of the expressions:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Exporting parameters are passed by the program. If a parameter is optional, you do not need to pass it. Default values are displayed if they exist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Importing parameters are received by the program. All importing parameters are optional. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Changing parameters are both passed and received. You do not have to list optional parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Default values are displayed if they exist.&lt;/P&gt;&lt;P&gt;The system assigns a value to each exception, beginning at one, and continuing to number them sequentially in the order they are declared in the function module definition. You can assign a value to all other exceptions that you have not specifically listed using the special exception OTHERS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you list the exceptions and one is triggered in the function module, the corresponding value is placed in the return code field sy-subrc. If you did not list the exception in the function call, a runtime error or a message occurs, depending on the statement you used in the function module to trigger the exception.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you create a function module, you must assign it to a function group. The function group is the main program in which a function module is embedded.&lt;/P&gt;&lt;P&gt;A function group is a program with type F, and is not executable . The entire function group is loaded in a program the first time that you call a function module that belongs to it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The system also triggers the LOAD-OF-PROGRAM event for the function group.&lt;/P&gt;&lt;P&gt;The function group remains active in the background until the end of the calling program. It is therefore a suitable means of retaining data objects for the entire duration of a program. All of the function modules in a group can access the group's global data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward if found helpful,,,,,,,,,,,,,,,,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks And Regards ,,,,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sreekar.Kadiri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 31 Mar 2008 07:37:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-31T07:37:07Z</dc:date>
    <item>
      <title>Exceptions in Function Modules</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exceptions-in-function-modules/m-p/3616521#M871222</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;How can I create an Exception in a Function Module and Raise that based on some condition? Plz help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Mar 2008 07:23:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exceptions-in-function-modules/m-p/3616521#M871222</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-31T07:23:17Z</dc:date>
    </item>
    <item>
      <title>Re: Exceptions in Function Modules</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exceptions-in-function-modules/m-p/3616522#M871223</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Under SE37 go to the exception tab and give names to the exception.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then in the source tab, use statement like RAISE &amp;lt;exception name&amp;gt; or MESSAGE Ennn(xxx) RAISING &amp;lt;exception name&amp;gt; to raise the error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look at [Understanding Function Module Code|http://help.sap.com/saphelp_47x200/helpdata/en/d1/801f1c454211d189710000e8322d00/frameset.htm]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Mar 2008 07:25:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exceptions-in-function-modules/m-p/3616522#M871223</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2008-03-31T07:25:28Z</dc:date>
    </item>
    <item>
      <title>Re: Exceptions in Function Modules</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exceptions-in-function-modules/m-p/3616523#M871224</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How can I define what message to be shown when an exception happens!???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Mar 2008 07:30:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exceptions-in-function-modules/m-p/3616523#M871224</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-31T07:30:56Z</dc:date>
    </item>
    <item>
      <title>Re: Exceptions in Function Modules</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exceptions-in-function-modules/m-p/3616524#M871225</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the exception Tab of SE37 place/add the exceptions which ever you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in the coding part according to the condition raise them.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Mar 2008 07:31:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exceptions-in-function-modules/m-p/3616524#M871225</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-31T07:31:45Z</dc:date>
    </item>
    <item>
      <title>Re: Exceptions in Function Modules</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exceptions-in-function-modules/m-p/3616525#M871226</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Go to the exception tab in the function module. Give the names of the exceptions with short text. Then Save and activate the FM. In side of the source code of that FM write &lt;/P&gt;&lt;P&gt;DATA RCODE LIKE SONV-RCODE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now after any occurence of exeption &lt;/P&gt;&lt;P&gt;write &lt;/P&gt;&lt;P&gt;Raise exception name and give rcode = exception number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now inside of the calling program&lt;/P&gt;&lt;P&gt;just call the function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Give points if satisfied.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Mar 2008 07:32:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exceptions-in-function-modules/m-p/3616525#M871226</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-31T07:32:43Z</dc:date>
    </item>
    <item>
      <title>Re: Exceptions in Function Modules</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exceptions-in-function-modules/m-p/3616526#M871227</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you use the MESSAGE ... RAISING syntax, choose standard or create specific message (SE91, or SE16 on table T100) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the calling program, you can also choice a message, and display it when the exception is received (assigned to a SY-SUBRC in the CALL FUNCTION EXCEPTION statement)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Mar 2008 07:36:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exceptions-in-function-modules/m-p/3616526#M871227</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2008-03-31T07:36:23Z</dc:date>
    </item>
    <item>
      <title>Re: Exceptions in Function Modules</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exceptions-in-function-modules/m-p/3616527#M871228</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Santo,,,,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look into this link ,, where u will get  a clear information on exceptions,,,,,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw70/helpdata/en/9f/db98fc35c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw70/helpdata/en/9f/db98fc35c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://abapprogramming.blogspot.com/2007/06/lesson-24-function-groups-and-function.html" target="test_blank"&gt;http://abapprogramming.blogspot.com/2007/06/lesson-24-function-groups-and-function.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the function module, you can create your own local types and data objects, and call subroutines or other function modules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can make a function module trigger exceptions .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To do this, you must first declare the exceptions in the interface definition, that is, assign each one a different name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the source code of your function module, you program the statements that trigger an exception under the required condition. At runtime, the function module is terminated when an exception is triggered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The changes to exporting and changing parameters are the same as in subroutines. There are two statements that you can use to trigger an exception. In the forms given below, stands for the name of an exception that you declared in the interface. The system reacts differently according to whether or not the exception was listed in the function module call: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RAISE .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the exception is listed in the calling program, the system returns control to it directly. If the exception is not listed, a runtime error occurs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MESSAGE () RAISING .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the exception is listed in the calling program, the statement has the same effect as RAISE . If it is not listed, the system sends message from message class with type , and no runtime error occurs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Function modules differ from subroutines in that you must assume that they will be used by other programmers. For this reason, you should ensure that you complete the steps listed here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Documentation (can be translated)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should document both your parameters and exceptions with short texts (and long texts if necessary) and your entire function module. The system provides a text editor for you to do this, containing predefined sections for Functionality, Example Call, Hints, and Further Information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Work list&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you change an active function module, it acquires the status active (revised). When you save it, another version is created with the status inactive . When you are working on a function module, you can switch between the inactive version and the last version that you activated. When you activate the inactive version, the previous active version is overwritten.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Function test&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once you have activated your function module, you can test it using the built-in test environment in the Function Builder. If an exception is triggered, the test environment displays it, along with any message that you may have specified for it. You can also switch into the Debugger and the Runtime Analysis tool. You can save test data and compare sets of results.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you insert a function module call in your program, you should use the Pattern function. Then, you only need to enter the name of the function module (input help is available). The system then inserts the call and the exception handling (MESSAGE statement) into your program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You assign parameters by name. The formal parameters are always on the left-hand side of the expressions:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Exporting parameters are passed by the program. If a parameter is optional, you do not need to pass it. Default values are displayed if they exist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Importing parameters are received by the program. All importing parameters are optional. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Changing parameters are both passed and received. You do not have to list optional parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Default values are displayed if they exist.&lt;/P&gt;&lt;P&gt;The system assigns a value to each exception, beginning at one, and continuing to number them sequentially in the order they are declared in the function module definition. You can assign a value to all other exceptions that you have not specifically listed using the special exception OTHERS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you list the exceptions and one is triggered in the function module, the corresponding value is placed in the return code field sy-subrc. If you did not list the exception in the function call, a runtime error or a message occurs, depending on the statement you used in the function module to trigger the exception.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you create a function module, you must assign it to a function group. The function group is the main program in which a function module is embedded.&lt;/P&gt;&lt;P&gt;A function group is a program with type F, and is not executable . The entire function group is loaded in a program the first time that you call a function module that belongs to it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The system also triggers the LOAD-OF-PROGRAM event for the function group.&lt;/P&gt;&lt;P&gt;The function group remains active in the background until the end of the calling program. It is therefore a suitable means of retaining data objects for the entire duration of a program. All of the function modules in a group can access the group's global data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward if found helpful,,,,,,,,,,,,,,,,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks And Regards ,,,,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sreekar.Kadiri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Mar 2008 07:37:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exceptions-in-function-modules/m-p/3616527#M871228</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-31T07:37:07Z</dc:date>
    </item>
    <item>
      <title>Re: Exceptions in Function Modules</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exceptions-in-function-modules/m-p/3616528#M871229</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can just declare  exceptions in the exception tab and in the source code you can raise this exception using RAISE statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For eg:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-SUBRC ne 0.&lt;/P&gt;&lt;P&gt;Raise &amp;lt;Exception&amp;gt;.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Mar 2008 08:40:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exceptions-in-function-modules/m-p/3616528#M871229</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-31T08:40:37Z</dc:date>
    </item>
    <item>
      <title>Re: Exceptions in Function Modules</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exceptions-in-function-modules/m-p/3616529#M871230</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tx&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Apr 2008 04:31:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exceptions-in-function-modules/m-p/3616529#M871230</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-23T04:31:52Z</dc:date>
    </item>
    <item>
      <title>Re: Exceptions in Function Modules</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exceptions-in-function-modules/m-p/3616530#M871231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tx&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Apr 2008 04:32:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exceptions-in-function-modules/m-p/3616530#M871231</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-23T04:32:08Z</dc:date>
    </item>
  </channel>
</rss>

