<?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: Examples for Synchronous and asynchronous in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/examples-for-synchronous-and-asynchronous/m-p/1613924#M275090</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ranjith,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Synchronous - Only after a particular transaction is completed you can do the next Transaction&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Asynchronous - Any no of transactions can be done simultaneously without depending on the first job to get completed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 23 Sep 2006 06:12:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-23T06:12:47Z</dc:date>
    <item>
      <title>Examples for Synchronous and asynchronous</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/examples-for-synchronous-and-asynchronous/m-p/1613921#M275087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        Please can any body give me the real time example for Synchronous and asynchronus &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                                               Ranjith&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Sep 2006 17:13:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/examples-for-synchronous-and-asynchronous/m-p/1613921#M275087</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-22T17:13:03Z</dc:date>
    </item>
    <item>
      <title>Re: Examples for Synchronous and asynchronous</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/examples-for-synchronous-and-asynchronous/m-p/1613922#M275088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe this will help.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/41/7af4cba79e11d1950f0000e82de14a/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/41/7af4cba79e11d1950f0000e82de14a/frameset.htm&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;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Sep 2006 17:15:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/examples-for-synchronous-and-asynchronous/m-p/1613922#M275088</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-09-22T17:15:13Z</dc:date>
    </item>
    <item>
      <title>Re: Examples for Synchronous and asynchronous</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/examples-for-synchronous-and-asynchronous/m-p/1613923#M275089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Let us take example of calling a transaction for update:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call Transaction&lt;/P&gt;&lt;P&gt;Synchronous calls are slower but should be used for transactions that are updating the database because control is not passed back to the program until a successful database commit (or rollback) has been executed. Note this the real SQL commit at the database level not the ABAP command COMMIT WORK. Synchronous calls will set the return code (sy-subrc) if an error is encountered. There are actually two synchrounous update modes: &lt;/P&gt;&lt;P&gt;'S', Synchronous update mode makes database entries describing the updates to be done and an update task (potentially running on a different computer) reads those database entries, does the update, and then deletes the entries describing the update task. &lt;/P&gt;&lt;P&gt;'L', Local update mode describes the updates to be done in the memory of the current process. No entries are made in and then deleted from the database describing the update task. &lt;/P&gt;&lt;P&gt;Asynchronous calls are the default if the UPDATE parameter is not specified. Asynchronous calls do not effect the return code (sy-subrc). &lt;/P&gt;&lt;P&gt;Note - This is opposite of how synchronous/asynchronous workflow tasks behave, in the sense that control is returned to the workflow in a synchronous step even if there is no commit or rollback encountered! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Prakash.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Prakash Ramu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Sep 2006 17:15:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/examples-for-synchronous-and-asynchronous/m-p/1613923#M275089</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-22T17:15:54Z</dc:date>
    </item>
    <item>
      <title>Re: Examples for Synchronous and asynchronous</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/examples-for-synchronous-and-asynchronous/m-p/1613924#M275090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ranjith,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Synchronous - Only after a particular transaction is completed you can do the next Transaction&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Asynchronous - Any no of transactions can be done simultaneously without depending on the first job to get completed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Sep 2006 06:12:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/examples-for-synchronous-and-asynchronous/m-p/1613924#M275090</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-23T06:12:47Z</dc:date>
    </item>
  </channel>
</rss>

