<?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: Difference between UPDATE options for CALL TRANSACTION in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-update-options-for-call-transaction/m-p/4955276#M1155331</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check F1 help of Statement &lt;STRONG&gt;SET UPDATE TASK LOCAL&lt;/STRONG&gt;. &lt;/P&gt;&lt;P&gt; from SE38&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Dec 2008 22:20:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-11T22:20:26Z</dc:date>
    <item>
      <title>Difference between UPDATE options for CALL TRANSACTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-update-options-for-call-transaction/m-p/4955274#M1155329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When using CALL TRANSACTION, you can specify one of thee update options:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Local&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Synchronous&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Asynchronous&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think the Synchronous and Asynchronous updates will decide whether to return to the calling program before or after the DB commit operation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone explain what the use of Local would be?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Dec 2008 22:08:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-update-options-for-call-transaction/m-p/4955274#M1155329</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-11T22:08:43Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between UPDATE options for CALL TRANSACTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-update-options-for-call-transaction/m-p/4955275#M1155330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there... check the link below&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;You use the UPDATE parameter to specify how updates produced by a transaction should be processed. You can select between these modes:

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.

Asynchronous processing is NOT recommended for processing any larger amount of data. 
This is because the called transaction receives no completion message from the update 
module in asynchronous updating. The calling data transfer program, in turn, cannot determine
whether a called transaction ended with a successful update of the database or not.

If you use asynchronous updating, then you will need to use the update management
facility (Transaction SM12) to check whether updates have been terminated abnormally
during session processing. Error analysis and recovery is less convenient than with 
synchronous updating.

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.

L Local updating. If you update data locally, the update of the database will not be 
processed in a separate process, but in the process of the calling program. 
(See the ABAP keyword documentation on SET UPDATE TASK LOCAL for more information.)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;[Link|http://help.sap.com/saphelp_sm32/helpdata/EN/fa/09715a543b11d1898e0000e8322d00/content.htm]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Dec 2008 22:19:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-update-options-for-call-transaction/m-p/4955275#M1155330</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2008-12-11T22:19:01Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between UPDATE options for CALL TRANSACTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-update-options-for-call-transaction/m-p/4955276#M1155331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check F1 help of Statement &lt;STRONG&gt;SET UPDATE TASK LOCAL&lt;/STRONG&gt;. &lt;/P&gt;&lt;P&gt; from SE38&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Dec 2008 22:20:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-update-options-for-call-transaction/m-p/4955276#M1155331</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-11T22:20:26Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between UPDATE options for CALL TRANSACTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-update-options-for-call-transaction/m-p/4955277#M1155332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Timothy,&lt;/P&gt;&lt;P&gt;the called ABAP-transaction shares NEVER a common Db-transaction with the calling program.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Klaus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Dec 2008 23:27:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-update-options-for-call-transaction/m-p/4955277#M1155332</guid>
      <dc:creator>former_member183804</dc:creator>
      <dc:date>2008-12-11T23:27:11Z</dc:date>
    </item>
  </channel>
</rss>

