<?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 update in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/asynchronous-update/m-p/3140521#M746367</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&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;c-&amp;gt; updte ztable from ztable is the example of asynchronous update.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 17 Dec 2007 12:18:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-17T12:18:46Z</dc:date>
    <item>
      <title>asynchronous update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/asynchronous-update/m-p/3140513#M746359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi to all Guru's,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.can anybody explain me what is asynchronous update?&lt;/P&gt;&lt;P&gt;2.Which one of the following is an example of an asynchronous update? &lt;/P&gt;&lt;P&gt;a)	insert wa into ztable. &lt;/P&gt;&lt;P&gt;b)	call function 'update_table' in update task. &lt;/P&gt;&lt;P&gt;c)	update ztable from ztable. &lt;/P&gt;&lt;P&gt;d)	modify ztable from wa. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Priya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Dec 2007 11:41:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/asynchronous-update/m-p/3140513#M746359</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-17T11:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: asynchronous update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/asynchronous-update/m-p/3140514#M746360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;which test are you taking there, my friend?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;async update -&amp;gt; process A triggers a DB update in process B, but does not wait for process B to finish.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.b)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Dec 2007 11:49:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/asynchronous-update/m-p/3140514#M746360</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2007-12-17T11:49:45Z</dc:date>
    </item>
    <item>
      <title>Re: asynchronous update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/asynchronous-update/m-p/3140515#M746361</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;asynchronous update  means at single shot we can update 'N' no of records to database...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points if helpful...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Dec 2007 11:53:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/asynchronous-update/m-p/3140515#M746361</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-17T11:53:04Z</dc:date>
    </item>
    <item>
      <title>Re: asynchronous update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/asynchronous-update/m-p/3140516#M746362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thomas , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you explain me what is asynchronous update?&lt;/P&gt;&lt;P&gt;it will be a fever for me&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Priya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Dec 2007 11:53:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/asynchronous-update/m-p/3140516#M746362</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-17T11:53:41Z</dc:date>
    </item>
    <item>
      <title>Re: asynchronous update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/asynchronous-update/m-p/3140517#M746363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi maddipatla,&lt;/P&gt;&lt;P&gt;can u tel me Which one of the following is an example of an asynchronous update? &lt;/P&gt;&lt;P&gt;a) insert wa into ztable. &lt;/P&gt;&lt;P&gt;b) call function 'update_table' in update task. &lt;/P&gt;&lt;P&gt;c) update ztable from ztable. &lt;/P&gt;&lt;P&gt;d) modify ztable from wa. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Priyalatha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Dec 2007 12:02:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/asynchronous-update/m-p/3140517#M746363</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-17T12:02:34Z</dc:date>
    </item>
    <item>
      <title>Re: asynchronous update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/asynchronous-update/m-p/3140518#M746364</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;B&amp;amp;C.........&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Dec 2007 12:06:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/asynchronous-update/m-p/3140518#M746364</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-17T12:06:19Z</dc:date>
    </item>
    <item>
      <title>Re: asynchronous update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/asynchronous-update/m-p/3140519#M746365</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;I'm so happy I found the answer:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[sap abap asynchronous update|http://www.google.com/search?num=100&amp;amp;hl=de&amp;amp;newwindow=1&amp;amp;sa=X&amp;amp;oi=spell&amp;amp;resnum=0&amp;amp;ct=result&amp;amp;cd=1&amp;amp;q=sap&lt;EM&gt;abap&lt;/EM&gt;asynchronous+update&amp;amp;spell=1]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Dec 2007 12:12:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/asynchronous-update/m-p/3140519#M746365</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2007-12-17T12:12:23Z</dc:date>
    </item>
    <item>
      <title>Re: asynchronous update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/asynchronous-update/m-p/3140520#M746366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;The perfect solution is Calling the Update Function module i.e b.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Because,&lt;/P&gt;&lt;P&gt;whenever  u  use a standard update Function module, it will update the data into all the relevat tables , with validations .&lt;/P&gt;&lt;P&gt;where as the other options like insert/update /modify will change/insert the data from datbase table without any validations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Revrt back if any issues,&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Dec 2007 12:14:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/asynchronous-update/m-p/3140520#M746366</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-17T12:14:11Z</dc:date>
    </item>
    <item>
      <title>Re: asynchronous update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/asynchronous-update/m-p/3140521#M746367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&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;c-&amp;gt; updte ztable from ztable is the example of asynchronous update.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Dec 2007 12:18:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/asynchronous-update/m-p/3140521#M746367</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-17T12:18:46Z</dc:date>
    </item>
  </channel>
</rss>

