<?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 &amp; Rollback with Eg! in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-rollback-with-eg/m-p/2338294#M515083</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Can any one explain with example where to use commit &amp;amp; rollback&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Looking for your help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rahul.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Jun 2007 17:31:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-06T17:31:01Z</dc:date>
    <item>
      <title>Commit &amp; Rollback with Eg!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-rollback-with-eg/m-p/2338294#M515083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Can any one explain with example where to use commit &amp;amp; rollback&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Looking for your help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rahul.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 17:31:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-rollback-with-eg/m-p/2338294#M515083</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T17:31:01Z</dc:date>
    </item>
    <item>
      <title>Re: Commit &amp; Rollback with Eg!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-rollback-with-eg/m-p/2338295#M515084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;COMMIT and ROLLBACK are closely related to LUW(Logical Unit of Work).  What this means is that all tables are updated successfully or none at all.  This helps with data consistancy and integrity.  Here is some light reading on the subject.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw70/helpdata/en/41/7af4bfa79e11d1950f0000e82de14a/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw70/helpdata/en/41/7af4bfa79e11d1950f0000e82de14a/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 17:36:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-rollback-with-eg/m-p/2338295#M515084</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-06-06T17:36:00Z</dc:date>
    </item>
    <item>
      <title>Re: Commit &amp; Rollback with Eg!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-rollback-with-eg/m-p/2338296#M515085</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;Please check this Uwe's reply from other thread with sample code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPIs are indeed a good example to explain the use of commit work and rollback. BAPIs are RFC-enabled function modules that allow us to access SAP business objects (e.g. materials) from outside.&lt;/P&gt;&lt;P&gt;In case of failure BAPIs do not raise any exceptions but usually return the collected messages in a TABLES parameter RETURN (of line type BAPIRET2).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After calling a BAPI you have to evaluate the returned messages:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA:
  lt_return    TYPE BAPIRETTAB (table type of BAPIRET2).
 
 
  CALL FUNCTION 'BAPI_MATERIAL_SAVEDATA' 
    EXPORTING
       ...
    IMPORTING
      ...
    TABLES
     ...
       return = lt_return.
 
  LOOP AT lt_return TRANSPORTING NO FIELDS
                 WHERE ( type CA 'AEX' ).  " (A)bort, (E)rror, X=dump
    EXIT.
  ENDLOOP.
  IF ( syst-subrc = 0 ).
    CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
 
  ELSE.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
      EXPORTING  
        wait = 'X'.  " synchronous
  ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please note that BAPIs may or may not return a Success message (type='S') in case of success. An empty RETURN messages indicates a successful BAPI call.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 17:36:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-rollback-with-eg/m-p/2338296#M515085</guid>
      <dc:creator>ferry_lianto</dc:creator>
      <dc:date>2007-06-06T17:36:35Z</dc:date>
    </item>
    <item>
      <title>Re: Commit &amp; Rollback with Eg!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-rollback-with-eg/m-p/2338297#M515086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you have one custom table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : i_itab like ztest occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assume that you have data in internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  commit work.&lt;/P&gt;&lt;P&gt;  modify ztest from table i_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;other program : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : i_itab like ztest occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assume that you have data in internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  rollback work.&lt;/P&gt;&lt;P&gt;  modify ztest from table i_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see the results in database table on each step&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 17:48:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-rollback-with-eg/m-p/2338297#M515086</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T17:48:22Z</dc:date>
    </item>
    <item>
      <title>Re: Commit &amp; Rollback with Eg!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-rollback-with-eg/m-p/2338298#M515087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Seshu!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Pls tell me the output of the above program its sounds intresting&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 18:06:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-rollback-with-eg/m-p/2338298#M515087</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T18:06:20Z</dc:date>
    </item>
    <item>
      <title>Re: Commit &amp; Rollback with Eg!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-rollback-with-eg/m-p/2338299#M515088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rahul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;comments are in bold &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you have one custom table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : i_itab like ztest occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assume that you have data in internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;commit work. " &amp;lt;b&amp;gt;When you use commit work ,it will update the data sucessfully&amp;lt;/b&amp;gt;modify ztest from table i_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;other program : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : i_itab like ztest occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assume that you have data in internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rollback work. " &amp;lt;b&amp;gt;It will not update the data even you use modify command because rollback.&amp;lt;/b&amp;gt;modify ztest from table i_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see the results in database table on each step&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 18:17:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-rollback-with-eg/m-p/2338299#M515088</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T18:17:03Z</dc:date>
    </item>
    <item>
      <title>Re: Commit &amp; Rollback with Eg!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-rollback-with-eg/m-p/2338300#M515089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Seshu!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Thank u very much &lt;/P&gt;&lt;P&gt;   I have one more doubt can u tell me commit and rollback can be used in bdc if yes, can u pls tell me a eg where to use it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rahul.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 18:33:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-rollback-with-eg/m-p/2338300#M515089</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T18:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: Commit &amp; Rollback with Eg!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-rollback-with-eg/m-p/2338301#M515090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Seshu!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Thank u very much &lt;/P&gt;&lt;P&gt;   I have one more doubt can u tell me commit and rollback can be used in bdc if yes, can u pls tell me a eg where to use it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rahul.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 18:34:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-rollback-with-eg/m-p/2338301#M515090</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T18:34:49Z</dc:date>
    </item>
    <item>
      <title>Re: Commit &amp; Rollback with Eg!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-rollback-with-eg/m-p/2338302#M515091</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;commit and rollback  - should not use in BDC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in call transaction - there is option ( if you use UPDATE 'S' ) then this will work as commit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 18:36:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-rollback-with-eg/m-p/2338302#M515091</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T18:36:30Z</dc:date>
    </item>
    <item>
      <title>Re: Commit &amp; Rollback with Eg!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-rollback-with-eg/m-p/2338303#M515092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, there is no chance to use COMMIT or ROLLBACK when doing BDC call transaction.  The reason is that the CALL TRANSACTION does an implicit COMMIT WORK at the completion of the statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 18:37:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-rollback-with-eg/m-p/2338303#M515092</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-06-06T18:37:38Z</dc:date>
    </item>
    <item>
      <title>Re: Commit &amp; Rollback with Eg!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-rollback-with-eg/m-p/2338304#M515093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then where it it is used apart from BAPI's&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 18:41:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-rollback-with-eg/m-p/2338304#M515093</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T18:41:41Z</dc:date>
    </item>
    <item>
      <title>Re: Commit &amp; Rollback with Eg!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-rollback-with-eg/m-p/2338305#M515094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use BAPI_TRANSACTION_COMITT Function module&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 18:43:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-rollback-with-eg/m-p/2338305#M515094</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T18:43:00Z</dc:date>
    </item>
    <item>
      <title>Re: Commit &amp; Rollback with Eg!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-rollback-with-eg/m-p/2338306#M515095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Seshu!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   It is onley used in bapi's thats all apart from that where it is used&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 18:46:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-rollback-with-eg/m-p/2338306#M515095</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T18:46:04Z</dc:date>
    </item>
    <item>
      <title>Re: Commit &amp; Rollback with Eg!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-rollback-with-eg/m-p/2338307#M515096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We do not use commit work in bapi,we use FM BAPI_transaction_committ after bapi fm .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 18:58:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-rollback-with-eg/m-p/2338307#M515096</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T18:58:35Z</dc:date>
    </item>
    <item>
      <title>Re: Commit &amp; Rollback with Eg!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-rollback-with-eg/m-p/2338308#M515097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok Thats Right!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   We use FM in BAPI Thats right i want to know commit &amp;amp; Roll back where it is used&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls Reply Friend &lt;/P&gt;&lt;P&gt;Rahul.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 19:05:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-rollback-with-eg/m-p/2338308#M515097</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T19:05:12Z</dc:date>
    </item>
    <item>
      <title>Re: Commit &amp; Rollback with Eg!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-rollback-with-eg/m-p/2338309#M515098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Rahul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We will not use comitt work in BAPI or BDC,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;some times we have direct updation to custom tables,then we use comitt work or roll back.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the selection-screen we have &lt;/P&gt;&lt;P&gt;option like test mode ,update mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when the user choose test mode we will not update database ( Here we use Roll back) and also when ever we have error updating one table and &lt;/P&gt;&lt;P&gt;again we are updating one more table ( In this case if first table updates then need to update second table,otherwise should not update&lt;/P&gt;&lt;P&gt;when the user choose update mode we will update database table ( here we use committ work )&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 19:18:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-rollback-with-eg/m-p/2338309#M515098</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T19:18:10Z</dc:date>
    </item>
    <item>
      <title>Re: Commit &amp; Rollback with Eg!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/commit-rollback-with-eg/m-p/2338310#M515099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Seshu!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Thank u very much i am clear with the concept.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rahul.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 19:47:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/commit-rollback-with-eg/m-p/2338310#M515099</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T19:47:24Z</dc:date>
    </item>
  </channel>
</rss>

