<?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 call transaction - rollback work in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-rollback-work/m-p/762870#M37150</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, how can I &amp;lt;b&amp;gt;undo all changes&amp;lt;/b&amp;gt; made by a call transaction to a standard transaction?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to create several sales orders after the correct process of a call transaction, and if some error occurs in process when creating sales orders I want to undo all changes made with call transaction. Any idea?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've sown in  SAP Help that CALL TRANSACTION has the option:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;i&amp;gt;RACOMMIT &lt;/P&gt;&lt;P&gt;Successful end on COMMIT WORK&amp;lt;/i&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it seems not work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 09 Sep 2004 12:33:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2004-09-09T12:33:57Z</dc:date>
    <item>
      <title>call transaction - rollback work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-rollback-work/m-p/762870#M37150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, how can I &amp;lt;b&amp;gt;undo all changes&amp;lt;/b&amp;gt; made by a call transaction to a standard transaction?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to create several sales orders after the correct process of a call transaction, and if some error occurs in process when creating sales orders I want to undo all changes made with call transaction. Any idea?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've sown in  SAP Help that CALL TRANSACTION has the option:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;i&amp;gt;RACOMMIT &lt;/P&gt;&lt;P&gt;Successful end on COMMIT WORK&amp;lt;/i&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it seems not work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Sep 2004 12:33:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-rollback-work/m-p/762870#M37150</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-09-09T12:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: call transaction - rollback work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-rollback-work/m-p/762871#M37151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The only thing you can analyze after CALL TRANSACTION is sy-subrc. If it does not equal to zero then transaction was not successful and no data was updated. Otherwise it is successful and all the data have already updated in database with COMMIT WORK. And this update cannot be undone or Rolled back. If the requirement is very strict then you soul better use some BAPI instead of CALL TRANSACTION.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Sep 2004 19:16:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-rollback-work/m-p/762871#M37151</guid>
      <dc:creator>sergey_korolev</dc:creator>
      <dc:date>2004-09-09T19:16:34Z</dc:date>
    </item>
    <item>
      <title>Re: call transaction - rollback work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-rollback-work/m-p/762872#M37152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jorge,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When You are using a Call Transaction Method for creating&lt;/P&gt;&lt;P&gt;a Sales Order,You can use the structure GIT_CTU in the call transaction call which has the following options:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Parameter string for runtime of CALL TRANSACTION .&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  DATA: BEGIN OF git_ctu.&lt;/P&gt;&lt;P&gt;          INCLUDE STRUCTURE ctu_params.&lt;/P&gt;&lt;P&gt;  DATA: END OF git_ctu.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GIT_CTU-DISMODE = 'E'. &lt;/P&gt;&lt;P&gt;GIT_CTU-UPDMODE = 'A'. &lt;/P&gt;&lt;P&gt;GIT_CTU-RACOMMIT = 'X'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex:&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'LQ02' &lt;/P&gt;&lt;P&gt;                 USING GIT_BDCDATA &lt;/P&gt;&lt;P&gt;                 options from git_ctu &lt;/P&gt;&lt;P&gt;                 MESSAGES INTO GIT_MESSTAB. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think this will solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rajeev.N&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Sep 2004 01:32:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-rollback-work/m-p/762872#M37152</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-09-10T01:32:56Z</dc:date>
    </item>
    <item>
      <title>Re: call transaction - rollback work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-rollback-work/m-p/762873#M37153</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I supose that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks Sergei.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Sep 2004 12:27:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-rollback-work/m-p/762873#M37153</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-09-10T12:27:17Z</dc:date>
    </item>
  </channel>
</rss>

