<?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 peform work after commit? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-peform-work-after-commit/m-p/12060143#M1969276</link>
    <description>&lt;P&gt;Agreed with your clarification of the question &lt;SPAN class="mention-scrubbed"&gt;sandra.rossi&lt;/SPAN&gt; (I am unable to edit the question now).  &lt;/P&gt;</description>
    <pubDate>Wed, 16 Oct 2019 15:05:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2019-10-16T15:05:16Z</dc:date>
    <item>
      <title>How to peform work after commit?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-peform-work-after-commit/m-p/12060136#M1969269</link>
      <description>&lt;P&gt;PEFORM subroutine on COMMIT executes the subroutine before the actual commit happens. Is there any way to call a function module or subroutine AFTER the actual commit happens?&lt;/P&gt;</description>
      <pubDate>Mon, 14 Oct 2019 13:46:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-peform-work-after-commit/m-p/12060136#M1969269</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-10-14T13:46:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to peform work after commit?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-peform-work-after-commit/m-p/12060137#M1969270</link>
      <description>&lt;P&gt;(1) Create an event handler method for TRANSACTION_FINISHED event of   CL_SYSTEM_TRANSACTION_STATE class and implement your logic there.&lt;/P&gt;&lt;P&gt;(2)SET handler in your enhancement logic&lt;/P&gt;</description>
      <pubDate>Mon, 14 Oct 2019 14:04:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-peform-work-after-commit/m-p/12060137#M1969270</guid>
      <dc:creator>rajad</dc:creator>
      <dc:date>2019-10-14T14:04:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to peform work after commit?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-peform-work-after-commit/m-p/12060138#M1969271</link>
      <description>&lt;P&gt;You mean, that during the internal processing of ABAP "&lt;STRONG&gt;COMMIT WORK&lt;/STRONG&gt;", all recorded "PERFORM subroutine ON COMMIT" (before COMMIT WORK) are actually processed before the &lt;STRONG&gt;database&lt;/STRONG&gt; commit occurs.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Oct 2019 14:15:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-peform-work-after-commit/m-p/12060138#M1969271</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-10-14T14:15:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to peform work after commit?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-peform-work-after-commit/m-p/12060139#M1969272</link>
      <description>&lt;P&gt;Thanks for the solution. My follow-up question is: how do I export parameters from my SET HANDLER context to my event handler method? (I tried to add parameters to my event handler, but I get the error "&lt;STRONG&gt;Event
parameter &amp;lt;param&amp;gt; does not exist"&lt;/STRONG&gt; )&lt;/P&gt;</description>
      <pubDate>Mon, 14 Oct 2019 14:28:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-peform-work-after-commit/m-p/12060139#M1969272</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-10-14T14:28:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to peform work after commit?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-peform-work-after-commit/m-p/12060140#M1969273</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;You can try implementing your logic in function modules and use the update option as V1 or V2. Though all the FMs will be triggered on COMMIT, you can determine which FMs trigger first at commit. See if it serves your requirement.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;GK&lt;/P&gt;</description>
      <pubDate>Mon, 14 Oct 2019 15:19:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-peform-work-after-commit/m-p/12060140#M1969273</guid>
      <dc:creator>GK817</dc:creator>
      <dc:date>2019-10-14T15:19:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to peform work after commit?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-peform-work-after-commit/m-p/12060141#M1969274</link>
      <description>&lt;A href="https://answers.sap.com/users/129702/aveekbaruah.html"&gt;Aveek Kumar Baruah&lt;/A&gt; in the class containing your event handler, define and initialize attributes with the values you need.</description>
      <pubDate>Mon, 14 Oct 2019 15:56:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-peform-work-after-commit/m-p/12060141#M1969274</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-10-14T15:56:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to peform work after commit?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-peform-work-after-commit/m-p/12060142#M1969275</link>
      <description>&lt;P&gt;There are several solutions proposed by SAP. So that to limit the number of answers, can you explain what kind of logic you want to perform?&lt;/P&gt;</description>
      <pubDate>Mon, 14 Oct 2019 15:58:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-peform-work-after-commit/m-p/12060142#M1969275</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-10-14T15:58:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to peform work after commit?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-peform-work-after-commit/m-p/12060143#M1969276</link>
      <description>&lt;P&gt;Agreed with your clarification of the question &lt;SPAN class="mention-scrubbed"&gt;sandra.rossi&lt;/SPAN&gt; (I am unable to edit the question now).  &lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2019 15:05:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-peform-work-after-commit/m-p/12060143#M1969276</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-10-16T15:05:16Z</dc:date>
    </item>
  </channel>
</rss>

