<?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: perff in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/perff/m-p/4402905#M1046497</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Will you tell me ,what is your requirment?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Aug 2008 06:09:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-25T06:09:40Z</dc:date>
    <item>
      <title>perff</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perff/m-p/4402899#M1046491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts plz help me soon iam working on performance issue, i hav 2 queries consuming much time. so i used package in that queries but when i execute in devlopment system they r executing but testing system they are giving error.these r the queries i wrote&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: i_chgbom_t LIKE STANDARD TABLE OF i_chgbom.&lt;/P&gt;&lt;P&gt;  SELECT  objectclas objectid changenr&lt;/P&gt;&lt;P&gt;          username udate utime tcode&lt;/P&gt;&lt;P&gt;          INTO TABLE i_chgbom_t&lt;/P&gt;&lt;P&gt;          PACKAGE SIZE 10000 FROM cdhdr&lt;/P&gt;&lt;P&gt;          WHERE objectclas = 'STUE'&lt;/P&gt;&lt;P&gt;          AND tcode = 'CS02'&lt;/P&gt;&lt;P&gt;          AND udate IN s_aedat.&lt;/P&gt;&lt;P&gt;    APPEND LINES OF i_chgbom_t TO i_chgbom.&lt;/P&gt;&lt;P&gt;    REFRESH i_chgbom_t.&lt;/P&gt;&lt;P&gt;  ENDSELECT.&lt;/P&gt;&lt;P&gt;  IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;    SORT i_chgbom BY objectid ASCENDING udate DESCENDING utime DESCENDING.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: i_chgbom1_t LIKE STANDARD TABLE OF i_chgbom1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF NOT i_chgbom[] IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    SELECT * FROM cdpos INTO TABLE i_chgbom1_t&lt;/P&gt;&lt;P&gt;         PACKAGE SIZE 10000&lt;/P&gt;&lt;P&gt;         FOR ALL ENTRIES IN i_chgbom&lt;/P&gt;&lt;P&gt;         WHERE objectclas EQ i_chgbom-objectclas&lt;/P&gt;&lt;P&gt;         AND objectid EQ i_chgbom-objectid&lt;/P&gt;&lt;P&gt;         AND changenr EQ i_chgbom-changenr.&lt;/P&gt;&lt;P&gt;      APPEND LINES OF i_chgbom1_t TO i_chgbom1.&lt;/P&gt;&lt;P&gt;      REFRESH i_chgbom1_t.&lt;/P&gt;&lt;P&gt;    ENDSELECT.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;    SORT i_chgbom1 BY objectid ASCENDING tabkey ASCENDING changenr DESCENDING.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;error is no storage space available to extend internal table&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 05:16:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perff/m-p/4402899#M1046491</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T05:16:28Z</dc:date>
    </item>
    <item>
      <title>Re: perff</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perff/m-p/4402900#M1046492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Here you are using 2 nested select queries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead use internal table for the first and FOR ALL ENTRIES of the 1st table in the 2nd query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;P&gt;Anirban&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 05:31:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perff/m-p/4402900#M1046492</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T05:31:29Z</dc:date>
    </item>
    <item>
      <title>Re: perff</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perff/m-p/4402901#M1046493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can u plz tell me how can i use internal table for those queries.&lt;/P&gt;&lt;P&gt;i think i used internal table there i_chgbom&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 05:37:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perff/m-p/4402901#M1046493</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T05:37:23Z</dc:date>
    </item>
    <item>
      <title>Re: perff</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perff/m-p/4402902#M1046494</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Storage location: "Session memory"&lt;/P&gt;&lt;P&gt;Row width: 1548&lt;/P&gt;&lt;P&gt;Number of rows: 1150000&lt;/P&gt;&lt;P&gt;Allocated rows: 1150000&lt;/P&gt;&lt;P&gt;Newly requested rows: 10000 (in 1250 blocks)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is the error iam getting there&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 05:52:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perff/m-p/4402902#M1046494</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T05:52:08Z</dc:date>
    </item>
    <item>
      <title>Re: perff</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perff/m-p/4402903#M1046495</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi, &lt;/P&gt;&lt;P&gt;try this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: i_chgbom_t LIKE STANDARD TABLE OF i_chgbom.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT objectclas &lt;/P&gt;&lt;P&gt;       objectid &lt;/P&gt;&lt;P&gt;       changenr&lt;/P&gt;&lt;P&gt;       username &lt;/P&gt;&lt;P&gt;       udate &lt;/P&gt;&lt;P&gt;       utime &lt;/P&gt;&lt;P&gt;       tcode&lt;/P&gt;&lt;P&gt;INTO TABLE i_chgbom&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PACKAGE SIZE 10000 FROM cdhdr&lt;/P&gt;&lt;P&gt;WHERE objectclas = 'STUE'&lt;/P&gt;&lt;P&gt;AND tcode = 'CS02'&lt;/P&gt;&lt;P&gt;AND udate IN s_aedat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REFRESH i_chgbom_t.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;SORT i_chgbom BY objectid ASCENDING udate DESCENDING utime DESCENDING.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF NOT i_chgbom[] IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM cdpos &lt;/P&gt;&lt;P&gt;  INTO TABLE i_chgbom1&lt;/P&gt;&lt;P&gt;PACKAGE SIZE 10000&lt;/P&gt;&lt;P&gt;FOR ALL ENTRIES IN i_chgbom&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHERE objectclas EQ i_chgbom-objectclas&lt;/P&gt;&lt;P&gt;AND objectid EQ i_chgbom-objectid&lt;/P&gt;&lt;P&gt;AND changenr EQ i_chgbom-changenr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 05:54:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perff/m-p/4402903#M1046495</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T05:54:07Z</dc:date>
    </item>
    <item>
      <title>Re: perff</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perff/m-p/4402904#M1046496</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;/P&gt;&lt;P&gt;if i use that it is not reading any data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 06:06:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perff/m-p/4402904#M1046496</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T06:06:57Z</dc:date>
    </item>
    <item>
      <title>Re: perff</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perff/m-p/4402905#M1046497</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Will you tell me ,what is your requirment?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 06:09:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perff/m-p/4402905#M1046497</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T06:09:40Z</dc:date>
    </item>
    <item>
      <title>Re: perff</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perff/m-p/4402906#M1046498</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;these queries are consuming much time. i need to increase the performance.&lt;/P&gt;&lt;P&gt;they r having nearly 3 lakhs  records.&lt;/P&gt;&lt;P&gt;to increase the performance i used package.&lt;/P&gt;&lt;P&gt;but iam getting the error in test system.&lt;/P&gt;&lt;P&gt;this is the error in test system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Storage location: "Session memory"&lt;/P&gt;&lt;P&gt;Row width: 1548&lt;/P&gt;&lt;P&gt;Number of rows: 1150000&lt;/P&gt;&lt;P&gt;Allocated rows: 1150000&lt;/P&gt;&lt;P&gt;Newly requested rows: 10000 (in 1250 blocks)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 06:15:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perff/m-p/4402906#M1046498</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T06:15:51Z</dc:date>
    </item>
    <item>
      <title>Re: perff</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perff/m-p/4402907#M1046499</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: i_chgbom_t LIKE STANDARD TABLE OF i_chgbom.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT objectclas &amp;lt;--- put debugger and check cotain of i_chgbom&lt;/P&gt;&lt;P&gt;objectid &lt;/P&gt;&lt;P&gt;changenr&lt;/P&gt;&lt;P&gt;username &lt;/P&gt;&lt;P&gt;udate &lt;/P&gt;&lt;P&gt;utime &lt;/P&gt;&lt;P&gt;tcode&lt;/P&gt;&lt;P&gt;FROM cdhdr&lt;/P&gt;&lt;P&gt;INTO TABLE i_chgbom&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHERE objectclas = 'STUE'&lt;/P&gt;&lt;P&gt;AND tcode = 'CS02'&lt;/P&gt;&lt;P&gt;AND udate IN s_aedat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;SORT i_chgbom BY objectid ASCENDING udate DESCENDING utime DESCENDING.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF NOT i_chgbom[] IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM cdpos   &amp;lt;--- instead of * use only the spefic fields you required&lt;/P&gt;&lt;P&gt;INTO TABLE i_chgbom1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR ALL ENTRIES IN i_chgbom&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHERE objectclas EQ i_chgbom-objectclas&lt;/P&gt;&lt;P&gt;AND objectid EQ i_chgbom-objectid&lt;/P&gt;&lt;P&gt;AND changenr EQ i_chgbom-changenr.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 06:23:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perff/m-p/4402907#M1046499</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T06:23:10Z</dc:date>
    </item>
    <item>
      <title>Re: perff</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perff/m-p/4402908#M1046500</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;are there any alternative tables other than cdhdr and cdpos&lt;/P&gt;&lt;P&gt;to get the same data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 06:32:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perff/m-p/4402908#M1046500</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T06:32:23Z</dc:date>
    </item>
    <item>
      <title>Re: perff</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perff/m-p/4402909#M1046501</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;no&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 06:33:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perff/m-p/4402909#M1046501</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T06:33:23Z</dc:date>
    </item>
    <item>
      <title>Re: perff</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perff/m-p/4402910#M1046502</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if i use the same query u sent it is not giving output&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 06:34:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perff/m-p/4402910#M1046502</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T06:34:47Z</dc:date>
    </item>
    <item>
      <title>Re: perff</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perff/m-p/4402911#M1046503</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; are there any alternative tables other than cdhdr and cdpos&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What information is in these tables? What are the keys of both tables,&lt;/P&gt;&lt;P&gt;how many records are in the tables in your system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why don't you use a JOIN? Are you looking for the slowest solution or the fastest?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Siegfried&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 08:25:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perff/m-p/4402911#M1046503</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T08:25:59Z</dc:date>
    </item>
    <item>
      <title>Re: perff</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perff/m-p/4402912#M1046504</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is now the third time you are asking essentially the same stuff without closing older threads, also still not using a meaningful subject. Did you ever evaluate the previous answers given?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/thread/1004737 &lt;B&gt;[original link is broken]&lt;/B&gt;&lt;/P&gt;&lt;P&gt;(includes link to first thread)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can only warn everybody from investing any more time in trying to help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 08:32:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perff/m-p/4402912#M1046504</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2008-08-25T08:32:03Z</dc:date>
    </item>
    <item>
      <title>Re: perff</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perff/m-p/4402913#M1046505</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i need the query to be executed fastly, how can i use join in that queries, it contains objclass, objid, tabkey,udate,utime and old value&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 08:41:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perff/m-p/4402913#M1046505</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T08:41:53Z</dc:date>
    </item>
    <item>
      <title>Re: perff</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perff/m-p/4402914#M1046506</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; i need ...&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;You need to read "the rules" at the top of the forum page before you do anything else here...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your various other threads on the same topic will be locked / deleted.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 15:46:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perff/m-p/4402914#M1046506</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T15:46:44Z</dc:date>
    </item>
  </channel>
</rss>

