<?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: Asynchronous and Synchronous in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/asynchronous-and-synchronous/m-p/2334927#M513996</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in BDC we r using in that what is they r&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 Jun 2007 04:17:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-14T04:17:56Z</dc:date>
    <item>
      <title>Asynchronous and Synchronous</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/asynchronous-and-synchronous/m-p/2334923#M513992</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt; pls differentiate Asynchronous and Synchronous and which one is better thank u&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 03:59:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/asynchronous-and-synchronous/m-p/2334923#M513992</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T03:59:54Z</dc:date>
    </item>
    <item>
      <title>Re: Asynchronous and Synchronous</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/asynchronous-and-synchronous/m-p/2334924#M513993</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 explain your requirement??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 04:00:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/asynchronous-and-synchronous/m-p/2334924#M513993</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T04:00:48Z</dc:date>
    </item>
    <item>
      <title>Re: Asynchronous and Synchronous</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/asynchronous-and-synchronous/m-p/2334925#M513994</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;      PerfomanceWise always Asynchronous-Process is better. Hope you know that it will not next Work-process to complete and before itself Commit work will Update the databse. But Synchronous is more stable it will wait for the next work-process to complete then only the Commit work will take place. So the process is always slow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope you understood.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward All Helpfull Answers......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 04:06:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/asynchronous-and-synchronous/m-p/2334925#M513994</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T04:06:06Z</dc:date>
    </item>
    <item>
      <title>Re: Asynchronous and Synchronous</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/asynchronous-and-synchronous/m-p/2334926#M513995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A Asynchronous updating. In this mode, the called transaction does not wait for any updates it produces to be completed. It simply passes the updates to the SAP update service. Asynchronous processing therefore usually results in faster execution of your data transfer program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;S Synchronous updating. In this mode, the called transaction waits for any updates that it produces to be completed. Execution is slower than with asynchronous updating because called transactions wait for updating to be completed. However, the called transaction is able to return any update error message that occurs to your program. It is much easier for you to analyze and recover from errors&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;one simple example : You are creating sales order from file and also you want to update header text of sales order.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when you want to update sales order header text,you need to use save_text function module ,here you need to pass sales order number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when you use call transaction update 'A', data will update transaction level and it goes to the next record,here it will not wait for database .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when you use call transaction update 'S',data will update transaction level and it will update database then it goes next record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you want to update header text,then you need to use sync update&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;database commit - &lt;/P&gt;&lt;P&gt;comitt work - it will update data in database sucessfully&lt;/P&gt;&lt;P&gt;roll back - it will not update in database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward Points if it is helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 04:06:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/asynchronous-and-synchronous/m-p/2334926#M513995</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T04:06:28Z</dc:date>
    </item>
    <item>
      <title>Re: Asynchronous and Synchronous</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/asynchronous-and-synchronous/m-p/2334927#M513996</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in BDC we r using in that what is they r&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 04:17:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/asynchronous-and-synchronous/m-p/2334927#M513996</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T04:17:56Z</dc:date>
    </item>
  </channel>
</rss>

