<?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: Commit Work in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work/m-p/8788444#M1678968</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its pretty simple concept of synchronous and asynchronous processing of data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the update is synchronous, you do not need to write a commit work as this is done by implicit commit. Remember execution comes back to the calling program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the update is asynchronous, like any update using a BAPI, then you have to write explicitly commit to make the system understand that the values are to be written to database now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Anubhav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 05 Oct 2012 15:24:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2012-10-05T15:24:41Z</dc:date>
    <item>
      <title>Commit Work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work/m-p/8788436#M1678960</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am calling a FM from abap program. FM inserts a record in ztable.&amp;nbsp; If I do NOT use commit work , still record gets saved in DB. Please help me in knowing where commit work is executed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;below is code :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Program : ZTEST&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE : 'calling'&lt;/P&gt;&lt;P&gt;call FUNCTION 'ZUPDATE' .&lt;/P&gt;&lt;P&gt;WRITE : 'done'.&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;FM : ZUPDATE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FUNCTION ZUPDATE. &lt;/P&gt;&lt;P&gt;DATA:&amp;nbsp; wa type ztest.&lt;/P&gt;&lt;P&gt;wa-roll = '80'.&lt;/P&gt;&lt;P&gt;wa-name =&amp;nbsp; 'test'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;insert ztest from wa.&lt;/P&gt;&lt;P&gt;ENDFUNCTION.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 02 Jun 2012 16:25:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work/m-p/8788436#M1678960</guid>
      <dc:creator>jitendra_it</dc:creator>
      <dc:date>2012-06-02T16:25:18Z</dc:date>
    </item>
    <item>
      <title>Re: Commit Work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work/m-p/8788437#M1678961</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jitendra,&lt;/P&gt;&lt;P&gt;Can u&amp;nbsp; share code inside FM &lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;ZUPDATE...&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 02 Jun 2012 16:40:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work/m-p/8788437#M1678961</guid>
      <dc:creator>former_member213851</dc:creator>
      <dc:date>2012-06-02T16:40:28Z</dc:date>
    </item>
    <item>
      <title>Re: Commit Work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work/m-p/8788438#M1678962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jitendra,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is due to the implicit commit. Read about SAP LUW.&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_46c/helpdata/en/41/7af4bfa79e11d1950f0000e82de14a/frameset.htm"&gt;http://help.sap.com/saphelp_46c/helpdata/en/41/7af4bfa79e11d1950f0000e82de14a/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Arial; text-align: -webkit-auto; background-color: #ffffff;"&gt;As well as the &lt;/SPAN&gt;&lt;STRONG style="color: #000000; text-align: -webkit-auto; background-color: #ffffff; font-family: 'Courier New';"&gt;COMMIT WORK&lt;/STRONG&gt;&lt;SPAN style="color: #000000; font-family: Arial; text-align: -webkit-auto; background-color: #ffffff;"&gt; and &lt;/SPAN&gt;&lt;STRONG style="color: #000000; text-align: -webkit-auto; background-color: #ffffff; font-family: 'Courier New';"&gt;ROLLBACK WORK&lt;/STRONG&gt;&lt;SPAN style="color: #000000; font-family: Arial; text-align: -webkit-auto; background-color: #ffffff;"&gt; statements, there are other situations where data is implicitly written to the database or rolled back, and where database LUWs therefore begin and end.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Arial; text-align: -webkit-auto; background-color: #ffffff;"&gt;&lt;A href="http://help.sap.com/saphelp_nw70/helpdata/en/fc/eb3b64358411d1829f0000e829fbfe/content.htm"&gt;http://help.sap.com/saphelp_nw70/helpdata/en/fc/eb3b64358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Shambu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 02 Jun 2012 16:41:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work/m-p/8788438#M1678962</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-06-02T16:41:35Z</dc:date>
    </item>
    <item>
      <title>Re: Commit Work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work/m-p/8788439#M1678963</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jitendra ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; This above is just a custom function module which you have created normally without update task and not remote enabled function module also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you create a function module with update task the commit work makes the difference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The below screen shots give better idea .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/107666" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/107667" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/107668" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With Regards,&lt;/P&gt;&lt;P&gt;Sudhir S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 02 Jun 2012 16:59:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work/m-p/8788439#M1678963</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-06-02T16:59:31Z</dc:date>
    </item>
    <item>
      <title>Re: Commit Work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work/m-p/8788440#M1678964</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jitendra Soni,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as suggested, read the help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shortly taken: Every interruption of a running program (screen processing, message output, RFC call or regular program end) triggers a so-called implicit database commit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABAP COMMIT WORK triggers execution of update modules (functions called 'IN UPDATE TASK'), and execution of PERFORM ON COMMIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't worry - also very experienced users just do not understand this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 02 Jun 2012 17:26:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work/m-p/8788440#M1678964</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2012-06-02T17:26:52Z</dc:date>
    </item>
    <item>
      <title>Re: Commit Work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work/m-p/8788441#M1678965</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Clemens,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So suppose, I have&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INSERT INTO zsflight VALUES wa_zsflight.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The new row is inserted immediately after this statement (I checked this in the debugger). It does not wait until it encounters a COMMIT WORK statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From your post, I understand that this is because of an implicit COMMIT that gets triggered whenever there is an interruption. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So in the above INSERT statement, what is causing that interruption? There is no screen change, there is no message, no RFC...Also the insertion of the new row happened before the program even ended (as mentioned earlier, I checked this while the prog was in debugger mode). What is the cause of this implicit COMMIT?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another question I have is - when would an explicit COMMIT WORK statement be necessary?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your time and effort.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2012 13:47:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work/m-p/8788441#M1678965</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-10-05T13:47:45Z</dc:date>
    </item>
    <item>
      <title>Re: Commit Work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work/m-p/8788442#M1678966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are using the old debugger you are performing lot of implicit db_commit. (Cause the debug used to be executed in same session)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In old versions documentation, there was the following warning in documentation&lt;/P&gt;&lt;P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;Never use the debugging function in a production system.&amp;nbsp; Use it only in those test systems in which a potential data inconsistency is unimportant.&amp;nbsp; The problem:&amp;nbsp; the debugging facility can force an unwanted database commit, which may result in inconsistent data in the database. &lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2012 14:02:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work/m-p/8788442#M1678966</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2012-10-05T14:02:51Z</dc:date>
    </item>
    <item>
      <title>Re: Commit Work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work/m-p/8788443#M1678967</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raymond,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was using the new debugger. So does the warning you mentioned, apply even to the new debugger? Will it cause implicit commits?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your time and effort.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2012 14:36:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work/m-p/8788443#M1678967</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-10-05T14:36:45Z</dc:date>
    </item>
    <item>
      <title>Re: Commit Work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work/m-p/8788444#M1678968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its pretty simple concept of synchronous and asynchronous processing of data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the update is synchronous, you do not need to write a commit work as this is done by implicit commit. Remember execution comes back to the calling program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the update is asynchronous, like any update using a BAPI, then you have to write explicitly commit to make the system understand that the values are to be written to database now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Anubhav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2012 15:24:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work/m-p/8788444#M1678968</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-10-05T15:24:41Z</dc:date>
    </item>
    <item>
      <title>Re: Commit Work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work/m-p/8788445#M1678969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The new debugger should not generate db commit, how did you check that the data was inserted in database, did you use another small report performing a SELECT bypassing buffer or a toll like SE16(n) ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The data will be commit-ed in database at first implicit commit, like when displaying a screen at the end of the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2012 16:05:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work/m-p/8788445#M1678969</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2012-10-05T16:05:12Z</dc:date>
    </item>
    <item>
      <title>Re: Commit Work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work/m-p/8788446#M1678970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;If the update is synchronous, you do not need to write a commit work as this is done by implicit commit. Remember execution comes back to the calling program.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; How does implicit commit make an update synchronous?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, &lt;BR /&gt;Venkat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Venkat Gowrishankar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2012 19:29:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work/m-p/8788446#M1678970</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-10-05T19:29:08Z</dc:date>
    </item>
    <item>
      <title>Re: Commit Work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work/m-p/8788447#M1678971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Venkat, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Implicit commit has no role in making a process synchronous or asynchronous.. Rather its the other way. If you are updating database in any synchronous process, it does not matter you write commit work or not. Data will be written to database because the commit work is executed implicitly for synchronous processes. However, in asynchronous processes you have to write explicitly commit as there are no internal sessions or transaction calls or any other change which may cause an implicit commit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Get some info from sap help on LUWs &amp;amp; how types of function modules work - Normal, Update &amp;amp; RFC. This will give some more clarity to this concept of commit work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Anubhav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Oct 2012 09:04:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work/m-p/8788447#M1678971</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-10-06T09:04:36Z</dc:date>
    </item>
    <item>
      <title>Re: Commit Work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work/m-p/8788448#M1678972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi Anubhav,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;Get some info from sap help on LUWs &amp;amp; how types of function modules work - Normal, Update &amp;amp; RFC. This will give some more clarity to this concept of commit work.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Thanks for the tip, Maybe you too should have a look&amp;nbsp; &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_macro_emoticon jive_emote" src="https://community.sap.com/1023/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, &lt;/P&gt;&lt;P&gt;Venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Oct 2012 18:22:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work/m-p/8788448#M1678972</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-10-06T18:22:05Z</dc:date>
    </item>
    <item>
      <title>Re: Commit Work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work/m-p/8788449#M1678973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you actually want to "control" the update via commit work and not an implicit database commit :&lt;/P&gt;&lt;P&gt;- change function module Z_UPDATE and declare it as an update module.&lt;/P&gt;&lt;P&gt;- change main program with&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;call FUNCTION 'Z_UPDATE'&amp;nbsp; IN UPDATE TASK.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;then executing&amp;nbsp; COMMIT WORK, ROLLBACK WORK or none of those.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Oct 2012 18:50:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work/m-p/8788449#M1678973</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2012-10-06T18:50:07Z</dc:date>
    </item>
    <item>
      <title>Re: Commit Work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work/m-p/8788450#M1678974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inside the FM 'Z_UPDATE' the insert statement will perform an implicit commit. Hence the explicit commit statement COMMIT WORK not needed here. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Karthik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 Oct 2012 09:05:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work/m-p/8788450#M1678974</guid>
      <dc:creator>former_member286481</dc:creator>
      <dc:date>2012-10-07T09:05:22Z</dc:date>
    </item>
  </channel>
</rss>

