<?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 Function Module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/2575530#M588498</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;dear friends,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;How to write a function module in SAP. wil any1  Describe. &lt;/P&gt;&lt;P&gt; What are the exceptions in function module&lt;/P&gt;&lt;P&gt; What is a function group&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz rep asap&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 02 Aug 2007 05:32:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-02T05:32:32Z</dc:date>
    <item>
      <title>Function Module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/2575530#M588498</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;dear friends,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;How to write a function module in SAP. wil any1  Describe. &lt;/P&gt;&lt;P&gt; What are the exceptions in function module&lt;/P&gt;&lt;P&gt; What is a function group&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz rep asap&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Aug 2007 05:32:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/2575530#M588498</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-02T05:32:32Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/2575531#M588499</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;You might get more detailed answer at the ABAP forum:&lt;/P&gt;&lt;P&gt;/community &lt;B&gt;[original link is broken]&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But to put it short, you can build function modules for example with transactions SE37 or SE80.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check following links for further details:&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/22/0425f2488911d189490000e829fbbd/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/22/0425f2488911d189490000e829fbbd/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/d1/801f02454211d189710000e8322d00/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/d1/801f02454211d189710000e8322d00/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Ville&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Aug 2007 06:22:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/2575531#M588499</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-02T06:22:28Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/2575532#M588500</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Vel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Post your queries in relevant Forums to get an efficient answer. It would save Moderator's time. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Function Module : You would create a Function Module in transaction SE37.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Go to Tranasaction SE37 -&amp;gt; enter function module name that you want to create &lt;/P&gt;&lt;P&gt;2. Choose create pushbutton&lt;/P&gt;&lt;P&gt;3. Provide Function Group and Short Text (You would create the function group in transaction SE80)&lt;/P&gt;&lt;P&gt;4. Provide Import, Export, Changing,  Tables, and Exceptions (The exceptions screen only allows you to enter a text with which the exception can be triggered in the function module.)&lt;/P&gt;&lt;P&gt;5. Choose Source Code option and write the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Exceptions:&lt;/P&gt;&lt;P&gt;1. As name suggests are exceptional conditions. You would use the exceptions that you had defined under exceptions.&lt;/P&gt;&lt;P&gt;MESSAGE &amp;lt;type number&amp;gt; WITH &amp;lt;var1&amp;gt; &amp;lt;var2&amp;gt; .. RAISING &amp;lt;exception&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Function Group : A function group contains a set of logically related function modules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At runtime, all function modules belonging to a function group are loaded with the calling program. As a result, you should plan carefully which functions really belong in a group and which do not. Otherwise, calling your function modules will unnecessarily increase the amount of memory required by the user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Visit the following link for more information:&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/d1/801e9a454211d189710000e8322d00/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/d1/801e9a454211d189710000e8322d00/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naveen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Aug 2007 08:43:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/2575532#M588500</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-02T08:43:02Z</dc:date>
    </item>
  </channel>
</rss>

