<?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 'CALL TRANSACTION' statements in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-call-transaction-statements/m-p/2195815#M468632</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;  In session method while processing in back ground you can find the diffrence.&lt;/P&gt;&lt;P&gt;No need to use the UPDATE in the Call transaction statmen, the Syncrounos is the default one. Here it will pickup 'S' for Update by default.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sreeram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 30 Apr 2007 16:55:39 GMT</pubDate>
    <dc:creator>sreeramkumar_madisetty</dc:creator>
    <dc:date>2007-04-30T16:55:39Z</dc:date>
    <item>
      <title>Difference between 'CALL TRANSACTION' statements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-call-transaction-statements/m-p/2195811#M468628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;Is there any difference between the below statments?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION &amp;lt;transaction number&amp;gt; USING t_bdcdata&lt;/P&gt;&lt;P&gt;MODE 'N'&lt;/P&gt;&lt;P&gt;UPDATE 'S'&lt;/P&gt;&lt;P&gt;MESSAGES INTO t_messtab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION &amp;lt;transaction number&amp;gt; USING t_bdcdata&lt;/P&gt;&lt;P&gt;MODE 'N'&lt;/P&gt;&lt;P&gt;MESSAGES INTO t_messtab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even though I don't use the update statement in the second ABAP statement, the update seems to be working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please clarify.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 16:48:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-call-transaction-statements/m-p/2195811#M468628</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-30T16:48:44Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between 'CALL TRANSACTION' statements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-call-transaction-statements/m-p/2195812#M468629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;No need to use the UPDATE in the Call transaction statmen, the Syncrounos is the default one, so if you ignore this statment also it will take it as 'S'&lt;/P&gt;&lt;P&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; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 16:52:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-call-transaction-statements/m-p/2195812#M468629</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-30T16:52:50Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between 'CALL TRANSACTION' statements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-call-transaction-statements/m-p/2195813#M468630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is some info about the UPDATE option for CALL TRANSACTION from the SAP help:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;... UPDATE upd &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;The UPDATE addition determines the processing mode for batch input processing. You can specify a character-type object for upd. Its possible content and its effect are displayed in the following table. Without use of one of the additions UPDATE or OPTIONS FROM, the effect is the same as if upd had the content "A". &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;upd Effect &lt;/P&gt;&lt;P&gt;"A" Asynchronous update. Updates of called programs are executed in the same way as if in the COMMIT WORK statement the AND WAIT addition was not specified. &lt;/P&gt;&lt;P&gt;"S" Synchronous processing. Updates of the called programs are executed in the same way as if in the COMMIT WORK statement the AND WAIT addition had been specified. &lt;/P&gt;&lt;P&gt;"L" Local update. Updates of the called program are executed in such a way as if the SET UPDATE TASK LOCAL statement had been executed in it. &lt;/P&gt;&lt;P&gt;Other As for "A". &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note &lt;/P&gt;&lt;P&gt;This option is not available for execution of actual batch input sessions. There the update is always synchronous. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps.&lt;/P&gt;&lt;P&gt; - April King&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 16:54:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-call-transaction-statements/m-p/2195813#M468630</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-30T16:54:46Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between 'CALL TRANSACTION' statements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-call-transaction-statements/m-p/2195814#M468631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CALL TRANSACTION &amp;lt;transaction number&amp;gt; USING t_bdcdata&lt;/P&gt;&lt;P&gt;MODE 'N'&lt;/P&gt;&lt;P&gt;UPDATE 'S'&lt;/P&gt;&lt;P&gt;MESSAGES INTO t_messtab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;S means synchoronus update...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u use S or dont use S also, the call transaction automatically takes S as default.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 16:55:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-call-transaction-statements/m-p/2195814#M468631</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-30T16:55:31Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between 'CALL TRANSACTION' statements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-call-transaction-statements/m-p/2195815#M468632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;  In session method while processing in back ground you can find the diffrence.&lt;/P&gt;&lt;P&gt;No need to use the UPDATE in the Call transaction statmen, the Syncrounos is the default one. Here it will pickup 'S' for Update by default.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sreeram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 16:55:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-call-transaction-statements/m-p/2195815#M468632</guid>
      <dc:creator>sreeramkumar_madisetty</dc:creator>
      <dc:date>2007-04-30T16:55:39Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between 'CALL TRANSACTION' statements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-call-transaction-statements/m-p/2195816#M468633</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;CALL TRANSACTION &amp;lt;transaction number&amp;gt; USING t_bdcdata&lt;/P&gt;&lt;P&gt;MODE 'N'&lt;/P&gt;&lt;P&gt;UPDATE 'S'&lt;/P&gt;&lt;P&gt;MESSAGES INTO t_messtab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Above code is doing synchronous update.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION &amp;lt;transaction number&amp;gt; USING t_bdcdata&lt;/P&gt;&lt;P&gt;MODE 'N'&lt;/P&gt;&lt;P&gt;MESSAGES INTO t_messtab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you don't specify the update mode, then the update is always synchronous (by default).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Asynchronous Update &amp;#150; The program does not wait for the work process to finish the update. Commit Work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Synchronous Update &amp;#150; The program wait for the work process to finish the update. Commit Work and Wait&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;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 16:57:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-call-transaction-statements/m-p/2195816#M468633</guid>
      <dc:creator>ferry_lianto</dc:creator>
      <dc:date>2007-04-30T16:57:19Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between 'CALL TRANSACTION' statements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-call-transaction-statements/m-p/2195817#M468634</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;There is no difference.  In UPDATION, Synchronous is default.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bhaskar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 17:25:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-call-transaction-statements/m-p/2195817#M468634</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-30T17:25:48Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between 'CALL TRANSACTION' statements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-call-transaction-statements/m-p/2195818#M468635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I do not understand that so many respondents in this thread say that 'S' is default, when the SAP doc clearly says that 'A' is the default.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 09:37:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-call-transaction-statements/m-p/2195818#M468635</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T09:37:53Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between 'CALL TRANSACTION' statements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-call-transaction-statements/m-p/2195819#M468636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;assume program control at line 10&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;10 call transaction ...in update 'S' (synchronous)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This would mean that the program control will not move to next line 11 until the call transaction has executed and completed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Again&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assume program control at line 10&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;10 call transaction ...in non synchronous&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This would mean that the program control will not move to next line 11 immediately even when the call transaction is executing and will not wait for success or failure of the call transaction statement&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 09:43:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-call-transaction-statements/m-p/2195819#M468636</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T09:43:52Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between 'CALL TRANSACTION' statements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-call-transaction-statements/m-p/2195820#M468637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi krishen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in call transaction method updates data database table in a synchronous way by default. if u wanna update through asynchronous way then u should explicity giv update  'A'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if helpful reward some points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards,&lt;/P&gt;&lt;P&gt;suresh babu aluri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 09:56:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-call-transaction-statements/m-p/2195820#M468637</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T09:56:06Z</dc:date>
    </item>
  </channel>
</rss>

