<?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 Regarding Data Transfer in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-data-transfer/m-p/2340495#M515745</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Expert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to know that when to use BDC,BAPI,ALE/IDOCS for data tarnsfer and is there any other technique for data transfer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks and regards&lt;/P&gt;&lt;P&gt;abaper&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 Jun 2007 05:29:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-14T05:29:39Z</dc:date>
    <item>
      <title>Regarding Data Transfer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-data-transfer/m-p/2340495#M515745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Expert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to know that when to use BDC,BAPI,ALE/IDOCS for data tarnsfer and is there any other technique for data transfer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks and regards&lt;/P&gt;&lt;P&gt;abaper&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 05:29:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-data-transfer/m-p/2340495#M515745</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T05:29:39Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Data Transfer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-data-transfer/m-p/2340496#M515746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;BDC -  can be used for data transfer through standard transcation and z transcations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      But it is always good to use BAPI or someother standard method such as BAPI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPI - is the standard business logic coded with use of screen.  so it can be used when you need to transfer data through standard transcations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ALE/IDOC - when data needs to be transferred through standard transcation but across the systems ( can be sap or other than sap system or across the clients)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 05:47:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-data-transfer/m-p/2340496#M515746</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T05:47:56Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Data Transfer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-data-transfer/m-p/2340497#M515747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;BDC:&amp;lt;/b&amp;gt; used to transfer data from legacy system to sap only.we can transfer data through standard tcodes as well as custom applications&lt;/P&gt;&lt;P&gt;se of methods depending upon amount;&lt;/P&gt;&lt;P&gt;if you have run time validation while updating the data into SAP R/3 Transaction,then use BDC Call Transaction.&lt;/P&gt;&lt;P&gt;example : when you load the data into Sales order then you need to load the into Header text of sales order.&lt;/P&gt;&lt;P&gt;for this ,you have to use Update Mode 'S'.&lt;/P&gt;&lt;P&gt;it is online update and if you small amount of data ,then prefer this one&lt;/P&gt;&lt;P&gt;2. If you have huge amount of data and then prefer Session Method.&lt;/P&gt;&lt;P&gt;we have one more advantage in session method...&lt;/P&gt;&lt;P&gt;suppose file has 1,00,000 records and the if you use all the records at time,then you will get short dump like system time exceed .&lt;/P&gt;&lt;P&gt;then you can split the each 10,000 records into one session and will process.&lt;/P&gt;&lt;P&gt;3. Direct Input method : we prefer this method only few Transaction ,&lt;/P&gt;&lt;P&gt;this will not applicable to when system has customer fields .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPI - &lt;/P&gt;&lt;P&gt;A BAPI is remotely enabled function module ie it can be invoked from remote programs like standalone JAVA programs, web interface etc..&lt;/P&gt;&lt;P&gt;You can make your function module remotely enabled in attributes of Function module but&lt;/P&gt;&lt;P&gt;A BAPI are standard SAP function modules provided by SAP for remote access. Also they are part of Businees Objest Repository(BOR).&lt;/P&gt;&lt;P&gt;BAPI are RFC enabled function modules.You create business objects and those are then registered in your BOR (Business Object Repository) which can be accessed outside the SAP system by using some other applications (Non-SAP) such as VB or JAVA. in this case u only specify the business object and its method from external system in BAPI there is no direct system call. while RFC are direct system call Some BAPIs provide basic functions and can be used for most SAP business object types. These BAPIs should be implemented the same for all business object types. Standardized BAPIs are easier to use and prevent users having to deal with a number of different BAPIs. Whenever possible, a standardized BAPI must be used in preference to an individual BAPI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is the standard business logic coded with use of screen. so it can be used when you need to transfer data through standard transcations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ALE/IDOC - used to transfer data between distributed systems or sap to other system or across clients.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 05:59:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-data-transfer/m-p/2340497#M515747</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T05:59:23Z</dc:date>
    </item>
  </channel>
</rss>

