<?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: Calling a function module without actually committing the changes in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-function-module-without-actually-committing-the-changes/m-p/4621129#M1088554</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A rollback won't work if a commit has been done. So if any of your FMs has a commit, you'd be out of luck.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Oct 2008 17:49:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-23T17:49:32Z</dc:date>
    <item>
      <title>Calling a function module without actually committing the changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-function-module-without-actually-committing-the-changes/m-p/4621125#M1088550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;Is there any way to call a function module without actually committing the update it makes (kind of like how SE37 doesn't commit updates)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some functions offer this functionality via testrun parameters which is great, but then some don't and it's nice to be able to simulate the outcome before actually running it for real.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any input appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;L&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Oct 2008 16:55:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-function-module-without-actually-committing-the-changes/m-p/4621125#M1088550</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-23T16:55:21Z</dc:date>
    </item>
    <item>
      <title>Re: Calling a function module without actually committing the changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-function-module-without-actually-committing-the-changes/m-p/4621126#M1088551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF test_flag = 'X'.&lt;/P&gt;&lt;P&gt;    ROLLBACK WORK.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;    COMMIT WORK AND WAIT.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Oct 2008 17:18:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-function-module-without-actually-committing-the-changes/m-p/4621126#M1088551</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-23T17:18:07Z</dc:date>
    </item>
    <item>
      <title>Re: Calling a function module without actually committing the changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-function-module-without-actually-committing-the-changes/m-p/4621127#M1088552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just define the function module like &lt;STRONG&gt;Remote-Enabled Module&lt;/STRONG&gt; in the attributes tab. Read this for reference &lt;SPAN __jive_macro_name="thread" id="133579"&gt;&lt;/SPAN&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Oct 2008 17:19:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-function-module-without-actually-committing-the-changes/m-p/4621127#M1088552</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-23T17:19:11Z</dc:date>
    </item>
    <item>
      <title>Re: Calling a function module without actually committing the changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-function-module-without-actually-committing-the-changes/m-p/4621128#M1088553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was thinking about that actually.  Now I wonder if I could do the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;call function n
importing stuff

do some internal program work using stuff

call function x
exporting stuff
importing morestuff

do some internal program work

rollback work&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basically could I call a bunch of update functions in my program, get all the results and outputs from these updates for my own use, and then roll back all the updates in one shot so nothing is actually changed?  Basically updates that build on each other, but I don't want to commit anything.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sounds kind of dangerous to me, but if the rollback would work then this would be very useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Oct 2008 17:45:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-function-module-without-actually-committing-the-changes/m-p/4621128#M1088553</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-23T17:45:03Z</dc:date>
    </item>
    <item>
      <title>Re: Calling a function module without actually committing the changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-function-module-without-actually-committing-the-changes/m-p/4621129#M1088554</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A rollback won't work if a commit has been done. So if any of your FMs has a commit, you'd be out of luck.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Oct 2008 17:49:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-function-module-without-actually-committing-the-changes/m-p/4621129#M1088554</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-23T17:49:32Z</dc:date>
    </item>
  </channel>
</rss>

