<?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 insert + commit work in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-commit-work/m-p/1159422#M119970</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There comes a strange problem, I have used the following line of code...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES /CBP/UA03_something.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    DATA WA TYPE /CBP/UA03_CALIB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WA-BNAME = p_user.&lt;/P&gt;&lt;P&gt;    WA-WAREA = ls_return-FIELDVAL.&lt;/P&gt;&lt;P&gt;    WA-GLTGV = sy-datum.&lt;/P&gt;&lt;P&gt;    WA-GLTGB = lv_gltgb.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    INSERT INTO /CBP/UA03_something VALUES WA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    if sy-subrc eq 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     "commit work.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and now when I saw in the table ( /CBP/UA03_something), few records are being inserted ( while testing the code ), however the commit-work is commented, how comes its inserted &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt; ????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I have to delete the records from that table ?? and delete option is not avaiable in sel6 ?? is there any other way as well?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Jan 2006 16:28:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-01-02T16:28:48Z</dc:date>
    <item>
      <title>insert + commit work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-commit-work/m-p/1159422#M119970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There comes a strange problem, I have used the following line of code...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES /CBP/UA03_something.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    DATA WA TYPE /CBP/UA03_CALIB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WA-BNAME = p_user.&lt;/P&gt;&lt;P&gt;    WA-WAREA = ls_return-FIELDVAL.&lt;/P&gt;&lt;P&gt;    WA-GLTGV = sy-datum.&lt;/P&gt;&lt;P&gt;    WA-GLTGB = lv_gltgb.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    INSERT INTO /CBP/UA03_something VALUES WA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    if sy-subrc eq 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     "commit work.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and now when I saw in the table ( /CBP/UA03_something), few records are being inserted ( while testing the code ), however the commit-work is commented, how comes its inserted &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt; ????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I have to delete the records from that table ?? and delete option is not avaiable in sel6 ?? is there any other way as well?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jan 2006 16:28:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-commit-work/m-p/1159422#M119970</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-02T16:28:48Z</dc:date>
    </item>
    <item>
      <title>Re: insert + commit work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-commit-work/m-p/1159423#M119971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;When you use INSERT INTO /CBP/UA03_something VALUES WA.&lt;/P&gt;&lt;P&gt;you don't need to commit work to insert values into the table.&lt;/P&gt;&lt;P&gt;if you want to delete all the records from the abap code use the line&lt;/P&gt;&lt;P&gt;"Delete from /CBP/UA03_something"&lt;/P&gt;&lt;P&gt;don't forget to remove this line afterwards or you'll keep on deleting the records.&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;André&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jan 2006 16:36:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-commit-work/m-p/1159423#M119971</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-02T16:36:56Z</dc:date>
    </item>
    <item>
      <title>Re: insert + commit work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-commit-work/m-p/1159424#M119972</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;records are inserted because of a automatic commit after the run of the program. The deletion of the records can be done via a short abap  using&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;delete from /cbp/ua03_something. " to delete all records or&lt;/P&gt;&lt;P&gt;delete from /cbp/ua03_something&lt;/P&gt;&lt;P&gt;where ....                  " to delete selective records&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;Siggi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Siegfried Szameitat&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jan 2006 16:37:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-commit-work/m-p/1159424#M119972</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-02T16:37:23Z</dc:date>
    </item>
    <item>
      <title>Re: insert + commit work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-commit-work/m-p/1159425#M119973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Haider,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; For the first point, the insert works even without a commit work is because an auto commit happens after execution of any program automatically and hence you should remember to rollback in case if you have to.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Point two, the delete option will not be available if you go in display mode of the table or neither in SE16. All that you can do is either delete it in Debugging mode of SE16 or delete it programatically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps....&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Srikanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jan 2006 16:38:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-commit-work/m-p/1159425#M119973</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-02T16:38:32Z</dc:date>
    </item>
    <item>
      <title>Re: insert + commit work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-commit-work/m-p/1159426#M119974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Haider,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did u check in Debugging mode, or after executing completing the program?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Variant 1&lt;/P&gt;&lt;P&gt;INSERT INTO dbtab VALUES wa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inserts one line into a database table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The line to be inserted is taken from the work area wa and the data read from left to right according to the structure of the table work area dbtab (see TABLES ). Here, the structure of wa is not taken into account. For this reason, the work area wa must be at least as wide (see DATA ) as the table work area dbtab and the alignment of the work area wa must correspond to the alignment of the table work area. Otherwise, a runtime error occurs. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When the command has been executed, the system field SY-DBCNT contains the number of inserted lines (0 or 1). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The return code value is set as follows: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SY-SUBRC = 0 Line was successfully inserted. &lt;/P&gt;&lt;P&gt;SY_SUBRC = 4 Line could not be inserted since a line with the same key already exists. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bcauz, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Lines specified in the INSERT command are not actually added to the database table until after the next ROLLBACK WORK . Lines added within a transaction remain locked until the transaction has finished. The end of a transaction is either a COMMIT WORK , where all database changes performed within the transaction are made irrevocable, or a ROLLBACK WORK , which cancels all database changes performed within the transaction.&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Run your program in one window and after completion check in se16. In your case, an auto-commit is occuring which is storing the records into table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Rajasekhar Dinavahi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jan 2006 16:39:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-commit-work/m-p/1159426#M119974</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-02T16:39:42Z</dc:date>
    </item>
    <item>
      <title>Re: insert + commit work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-commit-work/m-p/1159427#M119975</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;Thanks guys, for your input, meanwhile I have wrote a small program to delete the inserted records, huuuuuuah, thanks, works fine.......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am surprised, why it did automatically commit ??? well being belongs to java world, I never thought it happend like this, as I was working over the live data, ( It is my mistake that without reading in details what opensql doing used the database trascations commands, ( shot of time and have to finished the things, but now lesson leared, never use assume any thing while coding ....:-) ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again for input...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jan 2006 16:45:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-commit-work/m-p/1159427#M119975</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-02T16:45:51Z</dc:date>
    </item>
    <item>
      <title>Re: insert + commit work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-commit-work/m-p/1159428#M119976</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;1.I believe what happened is that the execution of this program or code section it wasn't within a PERFORM ON COMMIT or in an UPDATE TASK, and that's why it didn't need a commit work to insert the rows, because without the usage of the above mentioned update techniques on the DB, the DB will execute implicits commit works, when you use DB statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.I'm not very familiar with that table you are using but you could try making a program using DB statement 'DELETE' with the same rows you inserted to delete them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.There is always another way to do things. &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gilberto.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jan 2006 16:49:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-commit-work/m-p/1159428#M119976</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-02T16:49:08Z</dc:date>
    </item>
    <item>
      <title>Re: insert + commit work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-commit-work/m-p/1159429#M119977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As the others have said, there is an automatic commit when the program completes. So the easy fix is to change the program:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
INSERT INTO /CBP/UA03_something VALUES WA.
if sy-subrc ne 0.
  rollback work.
endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;and don't comment it out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jan 2006 17:21:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-commit-work/m-p/1159429#M119977</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-02T17:21:23Z</dc:date>
    </item>
    <item>
      <title>Re: insert + commit work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-commit-work/m-p/1159430#M119978</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Haider, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you use an Insert on Database table, it directly inserts a record into the table. Commit is not required. Insert statement itself commit's.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now to delete the records from the table.&lt;/P&gt;&lt;P&gt;1. GOTO SE16.&lt;/P&gt;&lt;P&gt;2. Enter Table name&lt;/P&gt;&lt;P&gt;3. Enter&lt;/P&gt;&lt;P&gt;4. Execute (F8)&lt;/P&gt;&lt;P&gt;5. &lt;/P&gt;&lt;P&gt;a) If you want to delete some particular records, select the corresponding check box and press SHIFT+F2.&lt;/P&gt;&lt;P&gt;b) If you want to delete all contents then:&lt;/P&gt;&lt;P&gt;In the menu bar press TableEntry -&amp;gt; Delete all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lokesh&lt;/P&gt;&lt;P&gt;Pls. reward appropriate points&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jan 2006 17:22:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-commit-work/m-p/1159430#M119978</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-02T17:22:26Z</dc:date>
    </item>
    <item>
      <title>Re: insert + commit work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-commit-work/m-p/1159431#M119979</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Haider,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; IMPLICIT COMMIT&lt;/P&gt;&lt;P&gt; -&lt;/P&gt;&lt;HR originaltext="---------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. If you read sap documentation / help&lt;/P&gt;&lt;P&gt;   on SAP LUW,&lt;/P&gt;&lt;P&gt;   we come to know that&lt;/P&gt;&lt;P&gt;   whenever screens change,&lt;/P&gt;&lt;P&gt;   R/3 does commit automatically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. So in our SE38 program,&lt;/P&gt;&lt;P&gt;   after the lines are executed,&lt;/P&gt;&lt;P&gt;   and the screen for WRITE statement / ALV&lt;/P&gt;&lt;P&gt;   comes or the program ends and goes&lt;/P&gt;&lt;P&gt;   back to initial screen,&lt;/P&gt;&lt;P&gt;   then there is a SCREEN CHANGE.&lt;/P&gt;&lt;P&gt;   R/3 does the commit, automatically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. This is the reason&lt;/P&gt;&lt;P&gt;   UPDATE Module (FM) concept&lt;/P&gt;&lt;P&gt;   was developed by SAP &lt;/P&gt;&lt;P&gt;   to avoid this Implicit Commit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit M.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2006 04:25:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-commit-work/m-p/1159431#M119979</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-03T04:25:18Z</dc:date>
    </item>
    <item>
      <title>Re: insert + commit work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-commit-work/m-p/1159432#M119980</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;using INSERT, MODIFY , UPDATE, DELETE statements&lt;/P&gt;&lt;P&gt;to manipulate database table,&lt;/P&gt;&lt;P&gt;no need to give commit work.&lt;/P&gt;&lt;P&gt;when the program end is reached, automatically the data&lt;/P&gt;&lt;P&gt;will be updated unless any runtime error comes.&lt;/P&gt;&lt;P&gt;if any runtime error comes, the "ROLL BACK" happens automatically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so no need to commit work statement&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2006 09:16:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-commit-work/m-p/1159432#M119980</guid>
      <dc:creator>hymavathi_oruganti</dc:creator>
      <dc:date>2006-01-03T09:16:25Z</dc:date>
    </item>
    <item>
      <title>Re: insert + commit work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-commit-work/m-p/1159433#M119981</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI, many thanks for so many answers, however all of them says the same story &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just curious, to know in which case "commit work" could be use, or its useless ABAP statement ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2006 10:36:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-commit-work/m-p/1159433#M119981</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-03T10:36:00Z</dc:date>
    </item>
    <item>
      <title>Re: insert + commit work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-commit-work/m-p/1159434#M119982</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Haider,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Well, we cannot say that its a useless statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Commit work does :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Calls the subroutines specified by PERFORM ... ON COMMIT &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Executes asynchronously any update requests (see CALL FUNCTION ... IN UPDATE TASK) specified in these subroutines or started just before &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Processes the function modules specified in CALL FUNCTION ... IN BACKGROUND TASK &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Resets the time slice counter to 0. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ensures that the locks of the SAP locking concept are handled in accordance with its SCOPE Parameter. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Executes a database commit on all database connections &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Closes all open database cursors (OPEN CURSOR) on all database connections &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Releases all database locks on all database connections &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;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2006 10:42:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-commit-work/m-p/1159434#M119982</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-03T10:42:14Z</dc:date>
    </item>
    <item>
      <title>Re: insert + commit work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-commit-work/m-p/1159435#M119983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;update bundling techniques are there which use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM ...... ON COMMIT&lt;/P&gt;&lt;P&gt;CALL FUNCTION ......ON UPDATE TASK&lt;/P&gt;&lt;P&gt;etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the above are used if we want to bypass the automatic commits by the system.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2006 11:00:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-commit-work/m-p/1159435#M119983</guid>
      <dc:creator>hymavathi_oruganti</dc:creator>
      <dc:date>2006-01-03T11:00:01Z</dc:date>
    </item>
    <item>
      <title>Re: insert + commit work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-commit-work/m-p/1159436#M119984</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sometimes, when doing a large number of updates, you may get an error like "the rollback area is too small" and a dump. You can get around this by dividing up the number of updates into manageable chunks and doing explicit commits every so often.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your question is answered, please close this post and the other ones you have left open.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Rob Burbank&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2006 17:19:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-commit-work/m-p/1159436#M119984</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-03T17:19:18Z</dc:date>
    </item>
  </channel>
</rss>

