<?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 BDC? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1755297#M327272</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can anyone tell me which is best method in BDC and what are the diffrences?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For ex. IF I am given a chance to create a BDC either in using session method or Call transaction, which one should be preferred? and Y?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please answer, points are assured!!!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Dec 2006 06:25:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-06T06:25:36Z</dc:date>
    <item>
      <title>BDC?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1755297#M327272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can anyone tell me which is best method in BDC and what are the diffrences?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For ex. IF I am given a chance to create a BDC either in using session method or Call transaction, which one should be preferred? and Y?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please answer, points are assured!!!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Dec 2006 06:25:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1755297#M327272</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-06T06:25:36Z</dc:date>
    </item>
    <item>
      <title>Re: BDC?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1755298#M327273</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;If the number of records r so high then its better to go with session method because call transaction method will not be preferable with the so many records&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call transaction doesnot have logfile concept where as session method will have by default, in call transaction u have to desgn that explicitly&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Dec 2006 06:27:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1755298#M327273</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-06T06:27:57Z</dc:date>
    </item>
    <item>
      <title>Re: BDC?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1755299#M327274</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;If the no. of records is low,you can go for BDC call transaction.Here you need to handle errors explicitly using function modules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If more records are to be inserted,you can use session method.Error log will be created.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Dec 2006 06:30:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1755299#M327274</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2006-12-06T06:30:38Z</dc:date>
    </item>
    <item>
      <title>Re: BDC?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1755300#M327275</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; &lt;/P&gt;&lt;P&gt;CALL TRANSACTION.&lt;/P&gt;&lt;P&gt;1. Synchronous Processing&lt;/P&gt;&lt;P&gt;2. Synchronous and Asynchronous&lt;/P&gt;&lt;P&gt;Database Update&lt;/P&gt;&lt;P&gt;3. Transfer form individual transaction,&lt;/P&gt;&lt;P&gt;each time the CALL Transaction is&lt;/P&gt;&lt;P&gt;called.&lt;/P&gt;&lt;P&gt;4. Separate LUW for the transaction.&lt;/P&gt;&lt;P&gt;5. System executes commit immediately&lt;/P&gt;&lt;P&gt;before and after CALL TRANSACTION&lt;/P&gt;&lt;P&gt;USING statement.&lt;/P&gt;&lt;P&gt;6. No batch input processing log is&lt;/P&gt;&lt;P&gt;generated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SESSION METHOD.&lt;/P&gt;&lt;P&gt;1. Asynchronous processing&lt;/P&gt;&lt;P&gt;2. Only Synchronous Database update (During&lt;/P&gt;&lt;P&gt;processing, no transaction is started until the&lt;/P&gt;&lt;P&gt;previous transaction has been written to the&lt;/P&gt;&lt;P&gt;database.)&lt;/P&gt;&lt;P&gt;3. Transfers data for multiple transactions.&lt;/P&gt;&lt;P&gt;4. Sessions cannot be generated in parallel.&lt;/P&gt;&lt;P&gt;5. Supports playback for correcting sessions that&lt;/P&gt;&lt;P&gt;contains errors.&lt;/P&gt;&lt;P&gt;6. A batch input processing Detailed Log is&lt;/P&gt;&lt;P&gt;generated for each session.&lt;/P&gt;&lt;P&gt;(Prgg opens a session in queue before data transfer)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Both hav advan &amp;amp; disadvan ,but in The CALL TRANSACTION method allows only a single transaction tobe processed by SAP.therefore i prefer Session method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;shan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Dec 2006 06:31:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1755300#M327275</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-06T06:31:44Z</dc:date>
    </item>
    <item>
      <title>Re: BDC?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1755301#M327276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Both have its own advantages and disadvantages.&lt;/P&gt;&lt;P&gt;I will list down the differences so that u can judge urself according to ur situation when to use which method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&amp;lt;u&amp;gt;BDC Session&amp;lt;/u&amp;gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When the program is executed, the data is not updated in the table . A session is created that has to be processed seperately. This is done thru SM35. The processing can be automated also and can be done immedieately without going to SM35 by calling the Program - RSBDCSUB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The error logs are automatically captured in this method. &lt;/P&gt;&lt;P&gt;The errored records can be changed and processed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&amp;lt;u&amp;gt;Call Transaction&amp;lt;/u&amp;gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A session is not created. The records are processed instantly. So when the program is executed .. the records are updated in system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error capturing is not possible automatically. It has to be handled by coding. U can use the extension - messages into &amp;lt;itab&amp;gt; to do that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So it all depends what is the scenario and which method to use. If you are doing some data transfer from legacy sytem to SAP .. in general the call transaction method is used more.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helped you. Feel free to ask is some this is un answered.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Dec 2006 06:34:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1755301#M327276</guid>
      <dc:creator>former_member69765</dc:creator>
      <dc:date>2006-12-06T06:34:37Z</dc:date>
    </item>
    <item>
      <title>Re: BDC?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1755302#M327277</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;please reward helpful answers with the points already assured by you!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Dec 2006 06:52:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1755302#M327277</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-06T06:52:02Z</dc:date>
    </item>
    <item>
      <title>Re: BDC?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1755303#M327278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;call transaction is online and session is offline.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Session is allways recommonded, Bz we can run the session with huge data in non performing hours like night times and week ends, to reduce the database hits.&lt;/P&gt;&lt;P&gt;Also we can set the time for session execution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In call transaction the updation is immediate. Network traffic will be more.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Dec 2006 16:02:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1755303#M327278</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-06T16:02:35Z</dc:date>
    </item>
    <item>
      <title>Re: BDC?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1755304#M327279</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi, this is prakash&lt;/P&gt;&lt;P&gt;call transaction is mainly used when u want u update the database using asynchrouns method.&lt;/P&gt;&lt;P&gt;but in context of session method the method of updating is synchrouns, large amount of data is required, so huge database is required. so finally using the call transaction method&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Oct 2007 05:00:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1755304#M327279</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-26T05:00:07Z</dc:date>
    </item>
  </channel>
</rss>

