<?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: how to put commit in user exit in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-put-commit-in-user-exit/m-p/1496117#M230346</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is not advisable to use the COMMIT WORK statement inside a User exit as it can lead to errors and/or inconsistencies.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Sep 2006 19:13:00 GMT</pubDate>
    <dc:creator>suresh_datti</dc:creator>
    <dc:date>2006-09-05T19:13:00Z</dc:date>
    <item>
      <title>how to put commit in user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-put-commit-in-user-exit/m-p/1496116#M230345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi! &lt;/P&gt;&lt;P&gt; I waana know that is it possible to out commit after coding user exit.. and if it is can anybody tell me how to do that..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Sep 2006 19:04:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-put-commit-in-user-exit/m-p/1496116#M230345</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-05T19:04:07Z</dc:date>
    </item>
    <item>
      <title>Re: how to put commit in user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-put-commit-in-user-exit/m-p/1496117#M230346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is not advisable to use the COMMIT WORK statement inside a User exit as it can lead to errors and/or inconsistencies.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Sep 2006 19:13:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-put-commit-in-user-exit/m-p/1496117#M230346</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-09-05T19:13:00Z</dc:date>
    </item>
    <item>
      <title>Re: how to put commit in user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-put-commit-in-user-exit/m-p/1496118#M230347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We had a case where one of the developer put a Commit in the user exit and it created big problems.  We created a OSS note only to realize that it was our mistake, lesson learned was never to put a commit in the user exit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hith&lt;/P&gt;&lt;P&gt;Sunil Achyut&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Sep 2006 19:14:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-put-commit-in-user-exit/m-p/1496118#M230347</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-05T19:14:50Z</dc:date>
    </item>
    <item>
      <title>Re: how to put commit in user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-put-commit-in-user-exit/m-p/1496119#M230348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should not do that.&lt;/P&gt;&lt;P&gt;After the user exits code is triggered, the transaction's own commits statements will commit the database anyway.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Sep 2006 19:21:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-put-commit-in-user-exit/m-p/1496119#M230348</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-05T19:21:39Z</dc:date>
    </item>
    <item>
      <title>Re: how to put commit in user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-put-commit-in-user-exit/m-p/1496120#M230349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;instead of using commit...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create a Z function module and put your logic into that &lt;/P&gt;&lt;P&gt;and call that function module with 'in update task' addition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then your function module will be called when the transaction is commited or rollbacked if your transaction is cancelled without saving... it is the best way in your case.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Sep 2006 19:50:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-put-commit-in-user-exit/m-p/1496120#M230349</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-05T19:50:21Z</dc:date>
    </item>
  </channel>
</rss>

