<?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: syn -asynchronous in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/syn-asynchronous/m-p/3507461#M843594</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;synchronous -&lt;/P&gt;&lt;HR originaltext="-----" /&gt;&lt;P&gt;for example if there is a record which we r updating in a table ..then the related tables all are updated until then the next step is not processed.&lt;/P&gt;&lt;P&gt;whereas in aynchronous a record is updated  and simultaneously next step is processed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 Feb 2008 09:36:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-27T09:36:31Z</dc:date>
    <item>
      <title>syn -asynchronous</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syn-asynchronous/m-p/3507459#M843592</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi frds plz give me &lt;/P&gt;&lt;P&gt;to this answer&lt;/P&gt;&lt;P&gt;What is synchronous &amp;amp; asynchronous mode? Which is possible in Call transaction?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz respond to my mail id&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sudhakarbabu786@rediffmail.com&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Feb 2008 09:29:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syn-asynchronous/m-p/3507459#M843592</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-27T09:29:55Z</dc:date>
    </item>
    <item>
      <title>Re: syn -asynchronous</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syn-asynchronous/m-p/3507460#M843593</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;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Synchronous&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;DO.&lt;/P&gt;&lt;P&gt;&amp;#133;&amp;#133;&amp;#133;&lt;/P&gt;&lt;P&gt;    PERFORM FILL_BDC_TAB.&lt;/P&gt;&lt;P&gt;    CALL TRANSACTION &amp;#145;FK02&amp;#146;&lt;/P&gt;&lt;P&gt;	USING 	BDC_TAB&lt;/P&gt;&lt;P&gt;	MODE	&amp;#145;N&amp;#146;&lt;/P&gt;&lt;P&gt;	UPDATE	&amp;#145;S&amp;#146;.&lt;/P&gt;&lt;P&gt;      IF SY-SUBRC &amp;lt; &amp;gt; 0.&lt;/P&gt;&lt;P&gt;	WRITE: /&amp;#145;ERROR&amp;#146;.	&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With synchronous updating, we can check SY-SUBRC to determine the success of the transaction and the actual update to the database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Asynchronous&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DO.&lt;/P&gt;&lt;P&gt;&amp;#133;&amp;#133;&amp;#133;&lt;/P&gt;&lt;P&gt;    PERFORM FILL_BDC_TAB.&lt;/P&gt;&lt;P&gt;    CALL TRANSACTION &amp;#145;FK02&amp;#146;&lt;/P&gt;&lt;P&gt;	USING 	BDC_TAB&lt;/P&gt;&lt;P&gt;	MODE	&amp;#145;N&amp;#146;&lt;/P&gt;&lt;P&gt;	UPDATE	&amp;#145;A&amp;#146;.&lt;/P&gt;&lt;P&gt;      IF SY-SUBRC &amp;lt; &amp;gt; 0.&lt;/P&gt;&lt;P&gt;	WRITE: /&amp;#145;ERROR&amp;#146;.	&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With asynchronous updating, we can check SY-SUBRC to determine the success of the transaction only,  not the actual update to the database.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Feb 2008 09:32:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syn-asynchronous/m-p/3507460#M843593</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-27T09:32:37Z</dc:date>
    </item>
    <item>
      <title>Re: syn -asynchronous</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syn-asynchronous/m-p/3507461#M843594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;synchronous -&lt;/P&gt;&lt;HR originaltext="-----" /&gt;&lt;P&gt;for example if there is a record which we r updating in a table ..then the related tables all are updated until then the next step is not processed.&lt;/P&gt;&lt;P&gt;whereas in aynchronous a record is updated  and simultaneously next step is processed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Feb 2008 09:36:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syn-asynchronous/m-p/3507461#M843594</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-27T09:36:31Z</dc:date>
    </item>
    <item>
      <title>Re: syn -asynchronous</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syn-asynchronous/m-p/3507462#M843595</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;Synchronous update in which if you change data of one table then all the related Tables gets updated. And sy-subrc is returned i.e., sy-subrc is returned for once and all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Asynchronous update, when you change data of one table, the sy-subrc is returned. And then updating of other affected tables takes place.  So if system fails to update other tables, still sy-subrc returned is 0 (i.e., when first table gets updated).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In call transaction will prefer Synchronous.&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>Wed, 27 Feb 2008 09:56:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syn-asynchronous/m-p/3507462#M843595</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-27T09:56:46Z</dc:date>
    </item>
  </channel>
</rss>

