<?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: SELECT, performance? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-performance/m-p/4080175#M975591</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is this code better then first one????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  SELECT   cpident
           FROM bdcp
           INTO CORRESPONDING FIELDS OF TABLE lt_bdcp
           WHERE cdobjid LIKE lv_car
           AND   cretime =&amp;lt; lv_date.
  IF NOT lt_bdcp[] IS INITIAL.

    SELECT cpident
           mestype
           INTO   CORRESPONDING FIELDS OF TABLE lt_bdcps
           FROM   bdcps
           FOR ALL ENTRIES IN lt_bdcp
           WHERE  cpident = lt_bdcp-cpident
           AND    mestype = i_mestyp
           AND    process NE 'X'.

    LOOP AT lt_bdcps INTO wa_bdcps.

      UPDATE bdcps SET    process = 'X'
                   WHERE  cpident = wa_bdcps-cpident
                   AND    mestype = i_mestyp.

    ENDLOOP.

  ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 30 Jun 2008 15:17:33 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-30T15:17:33Z</dc:date>
    <item>
      <title>SELECT, performance?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-performance/m-p/4080165#M975581</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;PRE&gt;&lt;CODE&gt;
CONSTANTS: lv_car(4) VALUE 'CAR%'.

  SELECT * FROM bdcp
           INTO TABLE lt_bdcp
           WHERE CDOBJID LIKE lv_car
           AND   CRETIME =&amp;lt; lv_date.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If table BDCP has more then 700.000 records, is my code ok or do I have to try something else?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Adibo.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jun 2008 14:26:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-performance/m-p/4080165#M975581</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-30T14:26:58Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT, performance?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-performance/m-p/4080166#M975582</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;Dont Go for SELECT * but give the neccessary fields by name. That will  reduce the Processing Time and also the performance will increase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will help.&lt;/P&gt;&lt;P&gt;Reward If Helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sumit Agarwal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jun 2008 14:28:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-performance/m-p/4080166#M975582</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-30T14:28:57Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT, performance?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-performance/m-p/4080167#M975583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;  Always you have to filter while reading of data for better performance and for that sake you can use various techniques to filter data by using &lt;STRONG&gt;select-options&lt;/STRONG&gt; and make use of where clause in the select statement..&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;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jun 2008 14:29:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-performance/m-p/4080167#M975583</guid>
      <dc:creator>bpawanchand</dc:creator>
      <dc:date>2008-06-30T14:29:22Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT, performance?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-performance/m-p/4080168#M975584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to provide more where clause fields in your query.&lt;/P&gt;&lt;P&gt;What are you trying to find using this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jun 2008 14:29:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-performance/m-p/4080168#M975584</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-30T14:29:48Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT, performance?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-performance/m-p/4080169#M975585</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Don't use Select *, just use require fields for selection, and where is must in order to reduce the time to get data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rewards points if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;RK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jun 2008 14:31:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-performance/m-p/4080169#M975585</guid>
      <dc:creator>rthoodi</dc:creator>
      <dc:date>2008-06-30T14:31:40Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT, performance?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-performance/m-p/4080170#M975586</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;I have to delete some changepointers..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  DATA: lt_bdcp TYPE STANDARD TABLE OF bdcp,
        wa_bdcp TYPE bdcp.
  DATA: lv_time TYPE cpcretime,
        lv_process TYPE process.

  DATA: lv_datum TYPE sy-datum,
        lv_date(14),
        lv_day(2),
        lv_month(2),
        lv_year(4).

  CONSTANTS: lv_car(4) VALUE 'CAR%'. 

  lv_datum = sy-datum.

  lv_year = lv_datum+0(4).
  lv_month = lv_datum+4(2).
  lv_day   = lv_datum+6(2).

  CONCATENATE lv_year lv_month lv_day '235959' INTO lv_date.

  SELECT * FROM bdcp
           INTO TABLE lt_bdcp
           WHERE CDOBJID LIKE lv_car
           AND   CRETIME =&amp;lt; lv_date.
  IF NOT lt_bdcp[] IS INITIAL.

    LOOP AT lt_bdcp INTO wa_bdcp.

      SELECT SINGLE process
             INTO   lv_process
             FROM   bdcps
             WHERE  cpident = wa_bdcp-cpident
             AND    mestype = i_mestyp
             AND    process NE 'X'.
      IF sy-subrc = 0.

        UPDATE bdcps SET    process = 'X'
                     WHERE  cpident = wa_bdcp-cpident
                     AND    mestype = i_mestyp.
      ENDIF.
    ENDLOOP.
  ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will just select bdcp-cpident..This is the field I need&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jun 2008 14:34:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-performance/m-p/4080170#M975586</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-30T14:34:25Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT, performance?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-performance/m-p/4080171#M975587</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;Check if you can follow an index for table BDCP. Your current statement does NOT follow one of the sap standard indexes .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have not created your own index it will result in a poor performance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Bert&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jun 2008 14:37:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-performance/m-p/4080171#M975587</guid>
      <dc:creator>b_deterd2</dc:creator>
      <dc:date>2008-06-30T14:37:28Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT, performance?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-performance/m-p/4080172#M975588</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
  types: BEGIN OF ls_bdcp,
          cpident type cpident,
         end of ls_bdcp.

  DATA: lt_bdcp TYPE STANDARD TABLE OF ls_bdcp,
        wa_bdcp TYPE ls_bdcp.

  SELECT   cpident
           FROM bdcp
           INTO CORRESPONDING FIELDS OF TABLE lt_bdcp
           WHERE CDOBJID LIKE lv_car
           AND   CRETIME =&amp;lt; lv_date.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jun 2008 14:39:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-performance/m-p/4080172#M975588</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-30T14:39:31Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT, performance?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-performance/m-p/4080173#M975589</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;when working with select statement &lt;/P&gt;&lt;P&gt;1. make your selection limit to important fields&lt;/P&gt;&lt;P&gt;2. Use all the primary key fields in where clause&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this should definitely help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;padma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jun 2008 14:49:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-performance/m-p/4080173#M975589</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-30T14:49:48Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT, performance?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-performance/m-p/4080174#M975590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Adibo,&lt;/P&gt;&lt;P&gt;Two important things missing in performance point of view.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Select only reqired fields(Always avoid Select * unless u r going to use all the selected fields)&lt;/P&gt;&lt;P&gt;2. UR where clause fields are not in the same order as they appear in data base.&lt;/P&gt;&lt;P&gt;3. Avoid using INTO CORRESPONDING FIELDS OF. Instead use INTO TABLE. Use ur internal table as same structure as the field list in select.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Also there is a secondary INDEX available for field CRETIME&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So modify ur select like below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SELECT   cpident&lt;/P&gt;&lt;P&gt;           FROM bdcp&lt;/P&gt;&lt;P&gt;           INTO CORRESPONDING FIELDS OF TABLE lt_bdcp&lt;/P&gt;&lt;P&gt;           WHERE  CRETIME =&amp;lt; lv_date&lt;/P&gt;&lt;P&gt;           AND  CDOBJID LIKE lv_car.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also avoid LIKE in select if possible. This also causes major performance issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Got one idea to replace &lt;STRONG&gt;LIKE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;RANGES: r_cdobjid FOR bdcp-cdobjid.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CLEAR:r_cdobjid ,r_cdobjid [].&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;r_cdobjid-sign = 'I'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;r_cdobjid-option = 'CP'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;r_cdobjid-low = 'CAR'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;APPEND r_cdobjid.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT   cpident&lt;/P&gt;&lt;P&gt;           FROM bdcp&lt;/P&gt;&lt;P&gt;           INTO TABLE lt_bdcp1&lt;/P&gt;&lt;P&gt;           WHERE  CRETIME LE lv_date&lt;/P&gt;&lt;P&gt;           AND  CDOBJID IN r_cdobjid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This select will be comparatively faster than first one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Vinod Reddy Vemuru on Jun 30, 2008 8:35 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jun 2008 14:59:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-performance/m-p/4080174#M975590</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2008-06-30T14:59:15Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT, performance?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-performance/m-p/4080175#M975591</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is this code better then first one????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  SELECT   cpident
           FROM bdcp
           INTO CORRESPONDING FIELDS OF TABLE lt_bdcp
           WHERE cdobjid LIKE lv_car
           AND   cretime =&amp;lt; lv_date.
  IF NOT lt_bdcp[] IS INITIAL.

    SELECT cpident
           mestype
           INTO   CORRESPONDING FIELDS OF TABLE lt_bdcps
           FROM   bdcps
           FOR ALL ENTRIES IN lt_bdcp
           WHERE  cpident = lt_bdcp-cpident
           AND    mestype = i_mestyp
           AND    process NE 'X'.

    LOOP AT lt_bdcps INTO wa_bdcps.

      UPDATE bdcps SET    process = 'X'
                   WHERE  cpident = wa_bdcps-cpident
                   AND    mestype = i_mestyp.

    ENDLOOP.

  ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jun 2008 15:17:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-performance/m-p/4080175#M975591</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-30T15:17:33Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT, performance?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-performance/m-p/4080176#M975592</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have look into the following statements based on the performance perspective.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------" /&gt;&lt;P&gt;1) SELECT   cpident&lt;/P&gt;&lt;P&gt;           FROM bdcp&lt;/P&gt;&lt;P&gt;           INTO CORRESPONDING FIELDS OF TABLE lt_bdcp&lt;/P&gt;&lt;P&gt;           WHERE cdobjid LIKE lv_car&lt;/P&gt;&lt;P&gt;           AND   cretime =&amp;lt; lv_date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Rows per      Distinct              1           11&lt;/P&gt;&lt;P&gt;  generic key     values             - 10        - 100&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     Key fields               Number of areas that are&lt;/P&gt;&lt;P&gt; 1   CDOBJID         312.440      291.368       20.543&lt;/P&gt;&lt;P&gt; 2   CRETIME         736.037      717.678       18.025&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please activate the secondary index BDCP-1 to improve the performance.&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="------------------------------------------------------" /&gt;&lt;P&gt; 2)   SELECT cpident&lt;/P&gt;&lt;P&gt;           mestype&lt;/P&gt;&lt;P&gt;           INTO   CORRESPONDING FIELDS OF TABLE lt_bdcps&lt;/P&gt;&lt;P&gt;           FROM   bdcps&lt;/P&gt;&lt;P&gt;           FOR ALL ENTRIES IN lt_bdcp&lt;/P&gt;&lt;P&gt;           WHERE  cpident = lt_bdcp-cpident&lt;/P&gt;&lt;P&gt;           AND    mestype = i_mestyp&lt;/P&gt;&lt;P&gt;           AND    process NE 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Rows per      Distinct              1&lt;/P&gt;&lt;P&gt;  generic key     values             - 10&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     Key fields               Number of a&lt;/P&gt;&lt;P&gt; 1   CPIDENT       1.025.991      975.746&lt;/P&gt;&lt;P&gt; 2   MESTYPE       3.981.314    3.981.314&lt;/P&gt;&lt;P&gt; 3   PROCESS       4.089.112    4.089.112&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since you have mentioned NE for process field, oracle could select a full table scan on BDCPS. In this case i would suggest you to include a hint on primary index of BDCPS to improve the performance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yours Sincerely&lt;/P&gt;&lt;P&gt;Dileep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jun 2008 16:30:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-performance/m-p/4080176#M975592</guid>
      <dc:creator>former_member251078</dc:creator>
      <dc:date>2008-06-30T16:30:08Z</dc:date>
    </item>
  </channel>
</rss>

