<?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: Commit Work for just one function module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work-for-just-one-function-module/m-p/10153227#M1820577</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Commit work writes all changes within a LUW (logical unit of work) to the database. By singling out just the changes that one FM did, you are violating the fundamental principle behind it. What should happen to the other changes, should they be rolled back? Why are they done in the first place?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please explain more about the context, maybe there is another way to do what's required.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 13 Mar 2014 19:58:11 GMT</pubDate>
    <dc:creator>ThomasZloch</dc:creator>
    <dc:date>2014-03-13T19:58:11Z</dc:date>
    <item>
      <title>Commit Work for just one function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work-for-just-one-function-module/m-p/10153226#M1820576</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;i have one question;&lt;/P&gt;&lt;P&gt;I need one solutions for commit work but just one function module. If i set commit work in function module then everything is taking the commit. But i dont like this. I need just for FM. This is impossible ?&lt;/P&gt;&lt;P&gt;Thak you, regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2014 19:53:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work-for-just-one-function-module/m-p/10153226#M1820576</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-03-13T19:53:48Z</dc:date>
    </item>
    <item>
      <title>Re: Commit Work for just one function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work-for-just-one-function-module/m-p/10153227#M1820577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Commit work writes all changes within a LUW (logical unit of work) to the database. By singling out just the changes that one FM did, you are violating the fundamental principle behind it. What should happen to the other changes, should they be rolled back? Why are they done in the first place?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please explain more about the context, maybe there is another way to do what's required.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2014 19:58:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work-for-just-one-function-module/m-p/10153227#M1820577</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2014-03-13T19:58:11Z</dc:date>
    </item>
    <item>
      <title>Re: Commit Work for just one function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work-for-just-one-function-module/m-p/10153228#M1820578</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thomas,&lt;/P&gt;&lt;P&gt;first thank you for answer. I have one enhancement. İt is for invoice grouping and i need before inv. grouping delete one document. If dont set commit then make to group all inv. ( so together should be deleted inv ). &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2014 20:49:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work-for-just-one-function-module/m-p/10153228#M1820578</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-03-13T20:49:55Z</dc:date>
    </item>
    <item>
      <title>Re: Commit Work for just one function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work-for-just-one-function-module/m-p/10153229#M1820579</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;The only way I know involves creating a &lt;A href="http://help.sap.com/abapdocu_740/en/abensap_luw.htm"&gt;nested LUW&lt;/A&gt; - opening a new &lt;A href="http://help.sap.com/abapdocu_702/en/abeninternal_session.htm"&gt;internal session&lt;/A&gt; by calling ABAP program using SUBMIT ... AND RETURN or a CALL transaction code. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Meaning, you'd have to code your logic in a report program/transaction, use the function module to merely call that report/transaction and, if necessary, use EXPORT/IMPORT or SHARED MEMORY to exchange data between the sessions. It's quite "ugly" solution IMO, and it involves session handling overhead, which can make it unsuitable for time-critical mass processing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Janis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2014 22:58:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-work-for-just-one-function-module/m-p/10153229#M1820579</guid>
      <dc:creator>Private_Member_7726</dc:creator>
      <dc:date>2014-03-13T22:58:35Z</dc:date>
    </item>
  </channel>
</rss>

