<?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: Difference between Function Modules, RFCs and BAPIs... in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-function-modules-rfcs-and-bapis/m-p/1174965#M124115</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;All of them are function modules in their implementation except that BAPI's can rarely be something other than a function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RFC and BAPI are callable remotely(from a system other than from within SAP).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPI is the implementation of the method of a business object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, BAPIs are RFCs and RFCs are function modules if you look at it that way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Feb 2006 19:36:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-02-15T19:36:05Z</dc:date>
    <item>
      <title>Difference between Function Modules, RFCs and BAPIs...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-function-modules-rfcs-and-bapis/m-p/1174962#M124112</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;Can you please clear me the difference between &lt;/P&gt;&lt;P&gt;1. Function modules,&lt;/P&gt;&lt;P&gt;2. RFCs,&lt;/P&gt;&lt;P&gt;3. BAPIs..&lt;/P&gt;&lt;P&gt;Please provide me some examples..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Thiru&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2006 19:14:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-function-modules-rfcs-and-bapis/m-p/1174962#M124112</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-15T19:14:06Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between Function Modules, RFCs and BAPIs...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-function-modules-rfcs-and-bapis/m-p/1174963#M124113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;b&amp;gt;Function Modules&amp;lt;/b&amp;gt; --&amp;gt; A reuseable piece of code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex. SD_DATETIME_DIFFERENCE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;RFC&amp;lt;/b&amp;gt; --&amp;gt; The same a Function Module but allow external connection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex. RFC_READ_TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;BAPI&amp;lt;/b&amp;gt; --&amp;gt; Function Modules used for high traffic of for invoice transacctions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex. GL_POSTING_POST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Blag.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2006 19:30:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-function-modules-rfcs-and-bapis/m-p/1174963#M124113</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-15T19:30:40Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between Function Modules, RFCs and BAPIs...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-function-modules-rfcs-and-bapis/m-p/1174964#M124114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Function modules are modularzation elements in the ABAP programming language.  The encapsulate some function that can be reused.  They provide an interface or signature in which to pass data to and from the function module.  RFC is a remote enabled function module.  All you need to do is set the flag on the attributes tab of the function module and you have an RFC.  A BAPI is nothing more than a function module.  BAPIs usualy contain the logic for some business function, like "Create Sales Order", or "Change Purchase Order".  Again they provide an interface to pass data to and get data from the BAPI.  You will never see "Exceptions" in a BAPI as they are designed to be called from other systems, and may no be able to handle exceptions.  Also, you will never see a BAPIs signature change.  If SAP feels the need to change the signature of the BAPI, then will create a new bapi.  Example, is BAPI_SALESORDER_CREATEFROMDAT1 and BAPI_SALESORDER_CREATEFROMDAT2.  They won't change the signature, but they will create a new one and  incorporate the change.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2006 19:35:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-function-modules-rfcs-and-bapis/m-p/1174964#M124114</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-02-15T19:35:58Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between Function Modules, RFCs and BAPIs...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-function-modules-rfcs-and-bapis/m-p/1174965#M124115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;All of them are function modules in their implementation except that BAPI's can rarely be something other than a function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RFC and BAPI are callable remotely(from a system other than from within SAP).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPI is the implementation of the method of a business object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, BAPIs are RFCs and RFCs are function modules if you look at it that way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2006 19:36:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-function-modules-rfcs-and-bapis/m-p/1174965#M124115</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-15T19:36:05Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between Function Modules, RFCs and BAPIs...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-function-modules-rfcs-and-bapis/m-p/1174966#M124116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, according to BAPI help, a BAPI is a:&lt;/P&gt;&lt;P&gt;Standardized programming interface enabling external applications to access business processes and data in the R/3 System. &lt;/P&gt;&lt;P&gt;BAPIs are defined in the BOR as methods of SAP business object types that carry out specific business functions. &lt;/P&gt;&lt;P&gt;BAPIs are implemented as RFC-enabled function modules and are created in the Function Builder of the ABAP Workbench.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPIs are a subset of RFC enabled function modules in that they are released to the customer and correspond to a logical unit of work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RFC enabled FMs are a subset of general function modules, but are able to access other R3 systems.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2006 19:37:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-function-modules-rfcs-and-bapis/m-p/1174966#M124116</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-15T19:37:50Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between Function Modules, RFCs and BAPIs...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-function-modules-rfcs-and-bapis/m-p/1174967#M124117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please mark your post as a question, and remember to award points for helpful answers and mark you posts as solved when answered completely..  Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2006 19:45:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-function-modules-rfcs-and-bapis/m-p/1174967#M124117</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-02-15T19:45:04Z</dc:date>
    </item>
  </channel>
</rss>

