<?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: bdc in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/3682213#M886710</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   Refer the theard for &lt;STRONG&gt;session me&lt;/STRONG&gt;thod example&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.sdn.sap.com/click.jspa?searchID=10893294&amp;amp;messageID=3643862" target="test_blank"&gt;https://forums.sdn.sap.com/click.jspa?searchID=10893294&amp;amp;messageID=3643862&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer the theard for &lt;STRONG&gt;call transaction method&lt;/STRONG&gt; example&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.sdn.sap.com/click.jspa?searchID=10893319&amp;amp;messageID=1417493" target="test_blank"&gt;https://forums.sdn.sap.com/click.jspa?searchID=10893319&amp;amp;messageID=1417493&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.sdn.sap.com/click.jspa?searchID=10893319&amp;amp;messageID=4777023" target="test_blank"&gt;https://forums.sdn.sap.com/click.jspa?searchID=10893319&amp;amp;messageID=4777023&lt;/A&gt;&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;Kiran Sure&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 Apr 2008 07:15:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-18T07:15:30Z</dc:date>
    <item>
      <title>bdc</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/3682209#M886706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all can any one xplain Asynchronous processing and&lt;/P&gt;&lt;P&gt;Synchronous Processing in database update in BDC Session method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Arun J&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Apr 2008 06:58:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/3682209#M886706</guid>
      <dc:creator>radhushankar</dc:creator>
      <dc:date>2008-04-18T06:58:10Z</dc:date>
    </item>
    <item>
      <title>Re: bdc</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/3682210#M886707</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Synchronus data processing is that in which the program calling the update task waits for the update work process to finish the update before it continues processing.&lt;/P&gt;&lt;P&gt;In Asynchronus update the callng program does not wait for update work process to finish the update and continues as normal.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A BDC done with sessions is always synchronus.&lt;/P&gt;&lt;P&gt;A BDC with call transaction is by default asynchronus&lt;/P&gt;&lt;P&gt;unless you define it explicitly as &lt;/P&gt;&lt;P&gt;call transaction 'XXXX' ...... update 'S'.&lt;/P&gt;&lt;P&gt;( If you donot define update option it is defaulted to "A" ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The update method is of importance when one transaction locks data which may be required by a subsequent transaction . The subsequent transaction will fail if data is locked from previous one. An example would be you are creating sales order for same material in succession ( with asynchronus update ). Quite likely that some of transactions would fail due to material locked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For large volume of data Call Transaction will be faster but you have no restart capability here. Suppose from 1000 transactions 100 fails . You will have to run the BDC program again exclusing the ones which wrere successful. However with session method you have the option to process the error transactions again in SM35 . So if you are sure that errors will not occur use call transaction else use session method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kiran Sure&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Apr 2008 07:02:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/3682210#M886707</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-18T07:02:07Z</dc:date>
    </item>
    <item>
      <title>Re: bdc</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/3682211#M886708</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1A.Asynchronous Method:&lt;/P&gt;&lt;P&gt;Your program doesn't wait for the called transaction to be completed.As soon as your program calls a transaction it will start carrying out other works.This will result in faster execution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Synchronous Method:&lt;/P&gt;&lt;P&gt;Your program wait for the called transaction to be completed.Unless the called transcation is completed your program wont resume processing.Processing will be slow compared to asynchrounous approach&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Apr 2008 07:02:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/3682211#M886708</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-18T07:02:11Z</dc:date>
    </item>
    <item>
      <title>Re: bdc</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/3682212#M886709</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you send me model bdc program for session as well as call transaction method??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Arun Joseph&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Apr 2008 07:08:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/3682212#M886709</guid>
      <dc:creator>radhushankar</dc:creator>
      <dc:date>2008-04-18T07:08:55Z</dc:date>
    </item>
    <item>
      <title>Re: bdc</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/3682213#M886710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   Refer the theard for &lt;STRONG&gt;session me&lt;/STRONG&gt;thod example&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.sdn.sap.com/click.jspa?searchID=10893294&amp;amp;messageID=3643862" target="test_blank"&gt;https://forums.sdn.sap.com/click.jspa?searchID=10893294&amp;amp;messageID=3643862&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer the theard for &lt;STRONG&gt;call transaction method&lt;/STRONG&gt; example&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.sdn.sap.com/click.jspa?searchID=10893319&amp;amp;messageID=1417493" target="test_blank"&gt;https://forums.sdn.sap.com/click.jspa?searchID=10893319&amp;amp;messageID=1417493&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.sdn.sap.com/click.jspa?searchID=10893319&amp;amp;messageID=4777023" target="test_blank"&gt;https://forums.sdn.sap.com/click.jspa?searchID=10893319&amp;amp;messageID=4777023&lt;/A&gt;&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;Kiran Sure&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Apr 2008 07:15:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/3682213#M886710</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-18T07:15:30Z</dc:date>
    </item>
  </channel>
</rss>

