<?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: Problem with COMMIT WORKS command in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-commit-works-command/m-p/2868363#M672950</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 had a similar error. When I called perform or a call transaction and after that code I called commit works, nothing works. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I must use commit and rollback work in the same block of code, and everything works fine. So I think that for a correct use, all code must be inside the same code block for working properly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 27 Sep 2007 09:06:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-27T09:06:17Z</dc:date>
    <item>
      <title>Problem with COMMIT WORKS command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-commit-works-command/m-p/2868362#M672949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I&amp;#146;ve a little problem. It seams that I don&amp;#146;t understand how &amp;#145;commit work&amp;#146; command works. When I&amp;#146;m calling transaction with USING parameter:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'FPSA' USING itab_bdcdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When inside of that transaction &amp;#145;Commit works&amp;#146; occur, than commit is being executed and transaction is ending which is not good, because there is still code left that should be executed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I run transaction without USING&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'FPSA'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Everything works fine. I&amp;#146;ve tried using UPDATE addition in CALL FUNCTION, but without result. Does anybody know what is the problem?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2007 08:45:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-commit-works-command/m-p/2868362#M672949</guid>
      <dc:creator>marcin_cholewczuk</dc:creator>
      <dc:date>2007-09-27T08:45:56Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with COMMIT WORKS command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-commit-works-command/m-p/2868363#M672950</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 had a similar error. When I called perform or a call transaction and after that code I called commit works, nothing works. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I must use commit and rollback work in the same block of code, and everything works fine. So I think that for a correct use, all code must be inside the same code block for working properly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2007 09:06:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-commit-works-command/m-p/2868363#M672950</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-27T09:06:17Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with COMMIT WORKS command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-commit-works-command/m-p/2868364#M672951</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is meant to work exactly as you described:&lt;/P&gt;&lt;P&gt;A transaction called with CALL TRANSACTION USING returns right after COMMIT occurs - if you don't provide any additional options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is a way to make such transaction continue with the code after the commit. You just have to use "OPTIONS FROM" addition of the "CALL TRANSACTION" statement - parameter RACOMMIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For more information put the cursor on CALL TRANSACTION statement in your abap code and press F1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;good luck&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2007 09:32:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-commit-works-command/m-p/2868364#M672951</guid>
      <dc:creator>Maciej_DomagaBa</dc:creator>
      <dc:date>2007-09-27T09:32:30Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with COMMIT WORKS command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-commit-works-command/m-p/2868365#M672952</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've found that out, but still thankyou.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2007 11:27:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-commit-works-command/m-p/2868365#M672952</guid>
      <dc:creator>marcin_cholewczuk</dc:creator>
      <dc:date>2007-09-27T11:27:24Z</dc:date>
    </item>
  </channel>
</rss>

