<?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 concept in SAP in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-concept-in-sap/m-p/2212895#M474240</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; Is Function Module concept meant for only modularity of the code or something to do with the performance also?...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Satya Priya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 May 2007 08:02:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-08T08:02:41Z</dc:date>
    <item>
      <title>Function Module concept in SAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-concept-in-sap/m-p/2212895#M474240</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; Is Function Module concept meant for only modularity of the code or something to do with the performance also?...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Satya Priya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 08:02:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-concept-in-sap/m-p/2212895#M474240</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T08:02:41Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module concept in SAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-concept-in-sap/m-p/2212896#M474241</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;it is mainly used for modularity and code reusebilty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;def standard Fm will improve performances.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Reshma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 08:04:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-concept-in-sap/m-p/2212896#M474241</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T08:04:27Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module concept in SAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-concept-in-sap/m-p/2212897#M474242</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;Go through the link,&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/d1/801ea7454211d189710000e8322d00/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/d1/801ea7454211d189710000e8322d00/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Azaz Ali.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 08:26:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-concept-in-sap/m-p/2212897#M474242</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T08:26:12Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module concept in SAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-concept-in-sap/m-p/2212898#M474243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Function modules are procedures that are defined in special ABAP programs only, so-called function groups, but can be called from all ABAP programs. Function groups act as containers for function modules that logically belong together. You create function groups and function modules in the ABAP Workbench using the Function Builder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Function modules allow you to encapsulate and reuse global functions in the SAP System. They are managed in a central function library. The SAP System contains several predefined functions modules that can be called from any ABAP program. Function modules also play an important role during updating  and in interaction between different SAP systems, or between SAP systems and remote systems through remote communications.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unlike subroutines, you do not define function modules in the source code of your program. Instead, you use the Function Builder. The actual ABAP interface definition remains hidden from the programmer. You can define the input parameters of a function module as optional. You can also assign default values to them. Function modules also support exception handling. This allows you to catch certain errors while the function module is running. You can test function modules without having to include them in a program using the Function Builder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Function Builder  also has a release process for function modules. This ensures that incompatible changes cannot be made to any function modules that have already been released. This applies particularly to the interface. Programs that use a released function module will not cease to work if the function module is changed.&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/db988735c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/db988735c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 11:10:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-concept-in-sap/m-p/2212898#M474243</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T11:10:59Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module concept in SAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-concept-in-sap/m-p/2212899#M474244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Function modules are procedures that are defined in function groups and can be called from any ABAP program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is used used for modularity as well as for code reusability.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 04:47:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-concept-in-sap/m-p/2212899#M474244</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T04:47:38Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module concept in SAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-concept-in-sap/m-p/2212900#M474245</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;In any language funtion modules and sub-routines are mainly used for code re-uasability and modularity.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In that funtion modules are global.&lt;/P&gt;&lt;P&gt;sub-routines are local.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But both we are using for re-usability only..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;P.SRIKANTH&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 05:40:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-concept-in-sap/m-p/2212900#M474245</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T05:40:35Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module concept in SAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-concept-in-sap/m-p/2212901#M474246</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;Interesting and cautious thing about this function group ( Which will act like a container for all logically related Fm's) is the following ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you call a FM .. all the function modules which are present in that function group will be copied into the Main memory ... leads to performance problems. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So keep it in mind  while calling function modules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward useful points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mohan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 05:59:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-concept-in-sap/m-p/2212901#M474246</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T05:59:49Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module concept in SAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-concept-in-sap/m-p/2212902#M474247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you all for spending time on my question.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 May 2007 02:48:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-concept-in-sap/m-p/2212902#M474247</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-10T02:48:08Z</dc:date>
    </item>
  </channel>
</rss>

