<?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 commit after batch input call transaction in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-after-batch-input-call-transaction/m-p/12538099#M2005905</link>
    <description>&lt;P&gt;when i call a batch input with call transaction CO02 without commit i see that works, but is it necessary to commit after the call transaction?&lt;/P&gt;</description>
    <pubDate>Fri, 01 Apr 2022 07:34:36 GMT</pubDate>
    <dc:creator>mark_fryu</dc:creator>
    <dc:date>2022-04-01T07:34:36Z</dc:date>
    <item>
      <title>commit after batch input call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-after-batch-input-call-transaction/m-p/12538099#M2005905</link>
      <description>&lt;P&gt;when i call a batch input with call transaction CO02 without commit i see that works, but is it necessary to commit after the call transaction?&lt;/P&gt;</description>
      <pubDate>Fri, 01 Apr 2022 07:34:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-after-batch-input-call-transaction/m-p/12538099#M2005905</guid>
      <dc:creator>mark_fryu</dc:creator>
      <dc:date>2022-04-01T07:34:36Z</dc:date>
    </item>
    <item>
      <title>Re: commit after batch input call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-after-batch-input-call-transaction/m-p/12538100#M2005906</link>
      <description>&lt;P&gt;Hi Mark, &lt;/P&gt;&lt;P&gt;it depends on which update mode you use for BatchInput.&lt;/P&gt;&lt;P&gt;A: Asynchronous&lt;BR /&gt;S: Synchronous&lt;BR /&gt;L: Local Update (explicit COMMIT needed)&lt;/P&gt;&lt;P&gt;Normally a COMMIT is needed to save the changes.&lt;/P&gt;&lt;P&gt;KR&lt;BR /&gt;Jens&lt;/P&gt;</description>
      <pubDate>Fri, 01 Apr 2022 07:43:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-after-batch-input-call-transaction/m-p/12538100#M2005906</guid>
      <dc:creator>Jeansy</dc:creator>
      <dc:date>2022-04-01T07:43:23Z</dc:date>
    </item>
    <item>
      <title>Re: commit after batch input call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-after-batch-input-call-transaction/m-p/12538101#M2005907</link>
      <description>&lt;P&gt;La ringrazio per la risposta&lt;/P&gt;&lt;P&gt;I have 'S' but what's the difference with 'A' ?&lt;/P&gt;&lt;P&gt;I need it to finish all the updates, and then continue with the abap code, what should I use?&lt;/P&gt;</description>
      <pubDate>Fri, 01 Apr 2022 08:01:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-after-batch-input-call-transaction/m-p/12538101#M2005907</guid>
      <dc:creator>Luca_Cavarretta</dc:creator>
      <dc:date>2022-04-01T08:01:59Z</dc:date>
    </item>
    <item>
      <title>Re: commit after batch input call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-after-batch-input-call-transaction/m-p/12538102#M2005908</link>
      <description>&lt;P&gt;No it's not needed. Transactions which need to update database should handle the commit themselves (save + commit work).&lt;/P&gt;</description>
      <pubDate>Fri, 01 Apr 2022 08:29:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-after-batch-input-call-transaction/m-p/12538102#M2005908</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2022-04-01T08:29:34Z</dc:date>
    </item>
    <item>
      <title>Re: commit after batch input call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-after-batch-input-call-transaction/m-p/12538103#M2005909</link>
      <description>&lt;P&gt;The simple difference in Synchronous and Asynchronous is that:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In synchronous mode, the posting is done once and the system waits for its result before commiting for the next posting (assuming that the call transaction is done in a loop.) This would consume more time. But this is considered the safe option in most cases.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--&amp;gt; A synchronous Workflow task must be executed before control is passed to the next step. It is used for tasks that do not involve required updates, because once the workitem is executed, control is passed on to the next step without checking the success or failure of any update that might or might not have taken place.&lt;/P&gt;&lt;P&gt;--&amp;gt;An asynchronous Workflow task should be used when a successful update is required prior to control being passed to the next step. The task does not end when it is executed. The task ends when a terminating event is received. The terminating event requires a COMMIT WORK before it is triggered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unless otherwise you have a strong reason, please avoid the Asynchronous mode. &lt;/P&gt;&lt;P&gt;Reward points if you wish.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Apr 2022 08:39:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-after-batch-input-call-transaction/m-p/12538103#M2005909</guid>
      <dc:creator>Jeansy</dc:creator>
      <dc:date>2022-04-01T08:39:51Z</dc:date>
    </item>
    <item>
      <title>Re: commit after batch input call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-after-batch-input-call-transaction/m-p/12538104#M2005910</link>
      <description>&lt;P&gt;ok thank you, so if i'm using "synchronous" can i not put a commit after the batch input?&lt;/P&gt;&lt;P&gt;I take this opportunity to ask another question:&lt;/P&gt;&lt;P&gt;what is the difference between:&lt;/P&gt;&lt;P&gt;-commit&lt;/P&gt;&lt;P&gt;-commit and wait&lt;/P&gt;&lt;P&gt;I need the commit which "saves" everything before moving forward&lt;/P&gt;</description>
      <pubDate>Fri, 01 Apr 2022 09:42:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-after-batch-input-call-transaction/m-p/12538104#M2005910</guid>
      <dc:creator>Luca_Cavarretta</dc:creator>
      <dc:date>2022-04-01T09:42:24Z</dc:date>
    </item>
  </channel>
</rss>

