<?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: BAPI_TRANSACTION_COMMIT with WAIT = 'X' does not work.  Any suggestions? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-with-wait-x-does-not-work-any-suggestions/m-p/7770632#M1584507</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In complement to what I said, the locks which may occur in the V2 updates may cause issues, because the commit with wait only for V1 upates (see for example the comment in SAP note 744403). However, V2 are normally used for history, logs, etc., so lock issues should be unfrequent. Usually people do a WAIT UP TO SECONDS, or restart the failed transactions. But your solution could be used too. I think I would try to delay the V2 updates, if possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sandra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 Jun 2011 12:35:43 GMT</pubDate>
    <dc:creator>Sandra_Rossi</dc:creator>
    <dc:date>2011-06-14T12:35:43Z</dc:date>
    <item>
      <title>BAPI_TRANSACTION_COMMIT with WAIT = 'X' does not work.  Any suggestions?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-with-wait-x-does-not-work-any-suggestions/m-p/7770620#M1584495</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1) 'BAPI_PRODORD_CREATE'&lt;/P&gt;&lt;P&gt;2) CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          wait = 'X'.&lt;/P&gt;&lt;P&gt;3) BAPI_PRODORD_CHECK_MAT_AVAIL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sometimes it works fine, other times the BAPI_PRODORD_CHECK_MAT_AVAIL passes an error that says the "Order does not exist."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried a "Wait up to 10 seconds".  That makes the processing go extremely slow and even that doesn't make it work 100%.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Apr 2011 15:49:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-with-wait-x-does-not-work-any-suggestions/m-p/7770620#M1584495</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-15T15:49:54Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_TRANSACTION_COMMIT with WAIT = 'X' does not work.  Any suggestions?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-with-wait-x-does-not-work-any-suggestions/m-p/7770621#M1584496</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you checked your return from first bapi and corrected any situation where you order is not getting created?  You are checking for success prior to last BAPI call?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Apr 2011 17:14:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-with-wait-x-does-not-work-any-suggestions/m-p/7770621#M1584496</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-15T17:14:14Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_TRANSACTION_COMMIT with WAIT = 'X' does not work.  Any suggestions?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-with-wait-x-does-not-work-any-suggestions/m-p/7770622#M1584497</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just before every BAPI call, try to use SET UPDATE TASK LOCAL.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Apr 2011 17:40:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-with-wait-x-does-not-work-any-suggestions/m-p/7770622#M1584497</guid>
      <dc:creator>Tamas_Hoznek</dc:creator>
      <dc:date>2011-04-15T17:40:26Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_TRANSACTION_COMMIT with WAIT = 'X' does not work.  Any suggestions?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-with-wait-x-does-not-work-any-suggestions/m-p/7770623#M1584498</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Why are u checking if the order was created?&lt;/P&gt;&lt;P&gt;The return of the bapi BAPI_PRODORD_CREATE gives u a number of order.&lt;/P&gt;&lt;P&gt;So, it means that it the order exits.&lt;/P&gt;&lt;P&gt;What u r doing it is not so good, as delays always occurs, so that's why sometimes it passes ok and others says that it is not create.&lt;/P&gt;&lt;P&gt;I guess better not check it using that bapi, try to see if the data is on the order table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Apr 2011 17:41:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-with-wait-x-does-not-work-any-suggestions/m-p/7770623#M1584498</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-15T17:41:58Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_TRANSACTION_COMMIT with WAIT = 'X' does not work.  Any suggestions?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-with-wait-x-does-not-work-any-suggestions/m-p/7770624#M1584499</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is no error from the first BAPI.  The production order is created correctly.  The problem is that it hasn't committed in time for the production order material availability check BAPI.  If I go to transaction co03 with the order number created by the bapi create the production order exists.  It is all a timing issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can even run this code 10 times in a row.  Sometimes the availability check works, sometimes the production order hasn't committed to the database in time and the availability check fails because of no production order.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Apr 2011 18:35:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-with-wait-x-does-not-work-any-suggestions/m-p/7770624#M1584499</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-15T18:35:49Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_TRANSACTION_COMMIT with WAIT = 'X' does not work.  Any suggestions?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-with-wait-x-does-not-work-any-suggestions/m-p/7770625#M1584500</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try what I suggested and let us know if it worked.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Apr 2011 18:37:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-with-wait-x-does-not-work-any-suggestions/m-p/7770625#M1584500</guid>
      <dc:creator>Tamas_Hoznek</dc:creator>
      <dc:date>2011-04-15T18:37:51Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_TRANSACTION_COMMIT with WAIT = 'X' does not work.  Any suggestions?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-with-wait-x-does-not-work-any-suggestions/m-p/7770626#M1584501</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am going to try the following&lt;/P&gt;&lt;P&gt;SET UPDATE TASK LOCAL&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;After BAPI prod order create, select from table aufk for order number.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will report back with details.  Thanks for the suggestions.  I bet one of them will work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Apr 2011 18:56:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-with-wait-x-does-not-work-any-suggestions/m-p/7770626#M1584501</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-15T18:56:05Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_TRANSACTION_COMMIT with WAIT = 'X' does not work.  Any suggestions?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-with-wait-x-does-not-work-any-suggestions/m-p/7770627#M1584502</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The programmer I have working on this has gone home for the weekend.  I will have to follow up next week.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I gave some points for the helpfull suggestions.  I will plan on returning next week with a solution that worked.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Apr 2011 20:09:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-with-wait-x-does-not-work-any-suggestions/m-p/7770627#M1584502</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-15T20:09:24Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_TRANSACTION_COMMIT with WAIT = 'X' does not work.  Any suggestions?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-with-wait-x-does-not-work-any-suggestions/m-p/7770628#M1584503</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Joel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you shouldn't give points before testing the solutions, because if the solution doesn't work, it misleads people who seek for &lt;STRONG&gt;right&lt;/STRONG&gt; answers. Well you can still reassign them later.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My opinion is that COMMIT WORK AND WAIT (what does bapi_transaction_commit) has the same effect on waiting update task to be terminated than using the local update task. The only difference is a matter of performance. But I'd be happy if someone could tell me that I'm wrong &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One possible reason is that an asynchronous RFC has been run to update the data, and so this is disconnected from the update task. Once, I couldn't say, it seemed that the only way was to add a WAIT UP TO 1 or 2 SECONDS (I couldn't check by myself so  I'm always suspicious on this kind of solution!)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The best way to know is to run a trace (ST05 for example) to check what does the updates.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sandra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Apr 2011 23:35:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-with-wait-x-does-not-work-any-suggestions/m-p/7770628#M1584503</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2011-04-15T23:35:16Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_TRANSACTION_COMMIT with WAIT = 'X' does not work.  Any suggestions?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-with-wait-x-does-not-work-any-suggestions/m-p/7770629#M1584504</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;From what I found, &lt;/P&gt;&lt;P&gt;1) the commit_wait is automatically ran in many BAPI's, but not all.  It is oftern duplication to add it yourself&lt;/P&gt;&lt;P&gt;2) The commit_wait logic appears to end on the application server.  Once the application server passes the commit to the database then the application server thinks it is done and continues processing the program.  In reality the database is still processing and the record is still locked in the database.  This means the commit and wait code is not a 100% guarantee.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Solution:&lt;/P&gt;&lt;P&gt;1) Function module ENQUEUE_READ (or transaction SM12).  This checks to see if the database lock is in place.  Set a break-point in the code and in a separate window run one of these.  You will see the locks.  Now you know the lock condition add some ABAP code to Do loop at reading the results on the relevant lock. Exit and continue processing when the locks are removed.  See my comments in step 2 about a wait a few seconds between loops and providing an exit time to avoid infinite loops.  I think solution 1 is better than solution 2, even though I implemented solution 2.  &lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;2) loop on a select from the database (you need to know the table being updated by the bapi to do this).  exit the loop when the record is inserted.  This is what I did since I hadn't found the solution in step 1 when I implemented my fix.  Don't put a wait statement in the loop though.  The wait is taxing on the database because it executes a commit.    I used "get time field" to handle a 2 second wait between database reads.  I also used this to exit after 30 seconds to avoid an infinite loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below is some sample code of solution 2.  I used it in between a BAPI production order create and BAPI check production order material availability.  I was getting an error saying the production order hadn't been created in the material availability check when in fact it had been created but just not committed to the database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DO.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; Only select from DB every two seconds&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      CLEAR do_time3.&lt;/P&gt;&lt;P&gt;      do_time3 = do_time1 - do_time2.&lt;/P&gt;&lt;P&gt;      IF do_time3  GT gc_000002.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;* Determine if confirmation has committed to database&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        SELECT SINGLE aufnr FROM resb INTO lv_aufnr WHERE aufnr = g_aufnr AND&lt;/P&gt;&lt;P&gt;                                                          xloek = space   AND&lt;/P&gt;&lt;P&gt;                                                          xwaok =  gc_x    AND&lt;/P&gt;&lt;P&gt;                                                          kzear =  gc_x    AND&lt;/P&gt;&lt;P&gt;                                                          matnr IN r_range.&lt;/P&gt;&lt;P&gt;        IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;          EXIT.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;      GET TIME  FIELD do_time1.&lt;/P&gt;&lt;P&gt;      do_time2 = do_time2 + gc_000002.&lt;/P&gt;&lt;P&gt;      do_exit = ( do_time1 - do_time ).&lt;/P&gt;&lt;P&gt;      IF do_exit GT gc_000030.&lt;/P&gt;&lt;P&gt;        EXIT.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;      CLEAR do_exit.&lt;/P&gt;&lt;P&gt;    ENDDO.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jun 2011 21:59:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-with-wait-x-does-not-work-any-suggestions/m-p/7770629#M1584504</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-13T21:59:34Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_TRANSACTION_COMMIT with WAIT = 'X' does not work.  Any suggestions?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-with-wait-x-does-not-work-any-suggestions/m-p/7770630#M1584505</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Add code to check for database lock on the relevant record using function module ENQUEUE_READ (or transaction SM12)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jun 2011 22:05:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-with-wait-x-does-not-work-any-suggestions/m-p/7770630#M1584505</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-13T22:05:09Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_TRANSACTION_COMMIT with WAIT = 'X' does not work.  Any suggestions?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-with-wait-x-does-not-work-any-suggestions/m-p/7770631#M1584506</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you for the feedback, but you are wrong, especially on the first point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; 1) the commit_wait is automatically ran in many BAPI's, but not all.  It is oftern duplication to add it yourself&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;No, maybe a few old BAPIs do that (see SAP note 131838 - Collective note for BAPIs w/ 'Commit Work' command), but since a long time now, they don't do it anymore, hopefully, this is a basis principle of BAPIs, as explained here -&amp;gt; &lt;A href="http://help.sap.com/saphelp_nw70/helpdata/en/43/b46c4253c111d395fa00a0c94260a5/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw70/helpdata/en/43/b46c4253c111d395fa00a0c94260a5/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; 2) The commit_wait logic appears to end on the application server.  Once the application server passes the commit to the database then the application server thinks it is done and continues processing the program.  In reality the database is still processing and the record is still locked in the database.  This means the commit and wait code is not a 100% guarantee.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Yes and no. Yes, BAPIs usually use the principle of update in a SAP LUW. Very useful when you have multiple screens. It is not specific to BAPIs. But NO, because calling function module BAPI_TRANSACTION_COMMIT with WAIT='X' does a COMMIT WORK AND WAIT, and it waits for the end of the asynchronous update task. Statement SET UPDATE TASK LOCAL is another way to execute updates synchronously as the updates are done in the same workprocess, so it does not require a wait.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Solution : ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Your solutions are usually not needed if the BAPIs and the calling program are correctly written. Each time I've seen some WAIT UP TO x SECONDS or such solutions, that was a bad use of function module calls and COMMITs, most often due to a misunderstanding how SAP LUWs work (when they are really started or ended, for example using SUBMIT and RFCs).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There could be some (very rare though) issues with the SAP lock system also, the SAP notes should be searched.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sandra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jun 2011 09:02:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-with-wait-x-does-not-work-any-suggestions/m-p/7770631#M1584506</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2011-06-14T09:02:02Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_TRANSACTION_COMMIT with WAIT = 'X' does not work.  Any suggestions?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-with-wait-x-does-not-work-any-suggestions/m-p/7770632#M1584507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In complement to what I said, the locks which may occur in the V2 updates may cause issues, because the commit with wait only for V1 upates (see for example the comment in SAP note 744403). However, V2 are normally used for history, logs, etc., so lock issues should be unfrequent. Usually people do a WAIT UP TO SECONDS, or restart the failed transactions. But your solution could be used too. I think I would try to delay the V2 updates, if possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sandra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jun 2011 12:35:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-transaction-commit-with-wait-x-does-not-work-any-suggestions/m-p/7770632#M1584507</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2011-06-14T12:35:43Z</dc:date>
    </item>
  </channel>
</rss>

