<?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: diff btw BAPI AND CALL TRANSACTION and fn module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-btw-bapi-and-call-transaction-and-fn-module/m-p/1685033#M301704</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Balu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A BAPI is faster because it is updating the DB "directly" through ABAP code. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A BDC with call transaction goes through the whole screen sequence like any user would do, simply put, it is filling screens. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 06 Nov 2006 16:36:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-06T16:36:44Z</dc:date>
    <item>
      <title>diff btw BAPI AND CALL TRANSACTION and fn module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-btw-bapi-and-call-transaction-and-fn-module/m-p/1685032#M301703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai can anybody tell me  what is the difference between BAPI  and CALL TRANSACTION?&lt;/P&gt;&lt;P&gt;BAPI and BDC?&lt;/P&gt;&lt;P&gt;Diff between function module and BAPI function module?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Nov 2006 16:34:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-btw-bapi-and-call-transaction-and-fn-module/m-p/1685032#M301703</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-06T16:34:34Z</dc:date>
    </item>
    <item>
      <title>Re: diff btw BAPI AND CALL TRANSACTION and fn module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-btw-bapi-and-call-transaction-and-fn-module/m-p/1685033#M301704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Balu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A BAPI is faster because it is updating the DB "directly" through ABAP code. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A BDC with call transaction goes through the whole screen sequence like any user would do, simply put, it is filling screens. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Nov 2006 16:36:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-btw-bapi-and-call-transaction-and-fn-module/m-p/1685033#M301704</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-06T16:36:44Z</dc:date>
    </item>
    <item>
      <title>Re: diff btw BAPI AND CALL TRANSACTION and fn module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-btw-bapi-and-call-transaction-and-fn-module/m-p/1685034#M301705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Major difference is that a BAPI call is not screen dependent, so when the screen sequence changes, it does not effect when using BAPIs.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPIs are function modules that are well documented and are RFC enabled.  THey also usually perform some specificy business action, such as "Create Purchase ORder".&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>Mon, 06 Nov 2006 16:37:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-btw-bapi-and-call-transaction-and-fn-module/m-p/1685034#M301705</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-11-06T16:37:09Z</dc:date>
    </item>
    <item>
      <title>Re: diff btw BAPI AND CALL TRANSACTION and fn module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-btw-bapi-and-call-transaction-and-fn-module/m-p/1685035#M301706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The CALL TRANSACTION is a simulation of a SAP transaction.&lt;/P&gt;&lt;P&gt;It calls screens and uses fields of this screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPI is a function module simulating a SAP transaction but without screen but with all controls.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Function Module is included in BAPI and realizes a fucntionnality of a transaction. (control, compute, ... )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sebastien&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Nov 2006 16:40:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-btw-bapi-and-call-transaction-and-fn-module/m-p/1685035#M301706</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-06T16:40:52Z</dc:date>
    </item>
  </channel>
</rss>

