<?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: Limiting SELECT hits in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/limiting-select-hits/m-p/2427942#M542571</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;This is command for entry 100 rows.&lt;/P&gt;&lt;P&gt; select* from table upto 100 rows&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 28 Jun 2007 09:08:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-28T09:08:27Z</dc:date>
    <item>
      <title>Limiting SELECT hits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/limiting-select-hits/m-p/2427933#M542562</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;How do I construct my SELECT statement so that I will only have 100 possible entries?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even if there are 200 entries, I will only select the first 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jun 2007 08:55:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/limiting-select-hits/m-p/2427933#M542562</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-28T08:55:33Z</dc:date>
    </item>
    <item>
      <title>Re: Limiting SELECT hits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/limiting-select-hits/m-p/2427934#M542563</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; Use &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select* from table upto 100 rows&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; statment&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jun 2007 08:56:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/limiting-select-hits/m-p/2427934#M542563</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-28T08:56:45Z</dc:date>
    </item>
    <item>
      <title>Re: Limiting SELECT hits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/limiting-select-hits/m-p/2427935#M542564</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;U can use 'up to 100' in select statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jun 2007 08:58:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/limiting-select-hits/m-p/2427935#M542564</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-28T08:58:33Z</dc:date>
    </item>
    <item>
      <title>Re: Limiting SELECT hits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/limiting-select-hits/m-p/2427936#M542565</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SELECT * FROM table... UPTO 100 ROWS.. WHERE..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should be able to get documentation on the addition by doing an F1 on the keyword SELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to be aware though that specifying the number of rows will only fetch the first 100 rows out of 200 from the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sudha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jun 2007 08:58:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/limiting-select-hits/m-p/2427936#M542565</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-28T08:58:40Z</dc:date>
    </item>
    <item>
      <title>Re: Limiting SELECT hits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/limiting-select-hits/m-p/2427937#M542566</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;make a addition to select statement .&lt;/P&gt;&lt;P&gt;addition: up to 100 rows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex:&lt;/P&gt;&lt;P&gt;select * &lt;/P&gt;&lt;P&gt;up to 100 rows&lt;/P&gt;&lt;P&gt;from mara&lt;/P&gt;&lt;P&gt;into table itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Navneeth K.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jun 2007 08:58:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/limiting-select-hits/m-p/2427937#M542566</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-28T08:58:48Z</dc:date>
    </item>
    <item>
      <title>Re: Limiting SELECT hits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/limiting-select-hits/m-p/2427938#M542567</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;Eg.&lt;/P&gt;&lt;P&gt;  SELECT * FROM EKPO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           INTO TABLE itab up to 100 rows.&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Neelambari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jun 2007 08:59:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/limiting-select-hits/m-p/2427938#M542567</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-28T08:59:31Z</dc:date>
    </item>
    <item>
      <title>Re: Limiting SELECT hits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/limiting-select-hits/m-p/2427939#M542568</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;select * &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt; up to 100 rows&amp;lt;/b&amp;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;Regards,&lt;/P&gt;&lt;P&gt;Omkar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jun 2007 09:00:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/limiting-select-hits/m-p/2427939#M542568</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-28T09:00:06Z</dc:date>
    </item>
    <item>
      <title>Re: Limiting SELECT hits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/limiting-select-hits/m-p/2427940#M542569</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;USe the keyword &amp;lt;b&amp;gt;up to&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select* from mara table upto 100 rows&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This up to statement will retrieve first 100 records which matches with the selection criteria.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jun 2007 09:01:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/limiting-select-hits/m-p/2427940#M542569</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-28T09:01:25Z</dc:date>
    </item>
    <item>
      <title>Re: Limiting SELECT hits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/limiting-select-hits/m-p/2427941#M542570</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;try using  select *  upto 100 ....  query&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;viji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jun 2007 09:02:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/limiting-select-hits/m-p/2427941#M542570</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-28T09:02:26Z</dc:date>
    </item>
    <item>
      <title>Re: Limiting SELECT hits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/limiting-select-hits/m-p/2427942#M542571</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;This is command for entry 100 rows.&lt;/P&gt;&lt;P&gt; select* from table upto 100 rows&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jun 2007 09:08:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/limiting-select-hits/m-p/2427942#M542571</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-28T09:08:27Z</dc:date>
    </item>
    <item>
      <title>Re: Limiting SELECT hits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/limiting-select-hits/m-p/2427943#M542572</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u people have gone mad for points everydby answering the same way cumn people this sdn helps people its not here 2 get points&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jun 2007 09:18:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/limiting-select-hits/m-p/2427943#M542572</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-28T09:18:00Z</dc:date>
    </item>
    <item>
      <title>Re: Limiting SELECT hits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/limiting-select-hits/m-p/2427944#M542573</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The select command is the most fundamental function of writing ABAP programs allowing the retrieval ofdata from SAP database tables. Below are a few examples of the various ways ofselecting data. &lt;/P&gt;&lt;P&gt;*Code to demonstrate select command&lt;/P&gt;&lt;P&gt;*Code to demonstrate select into internal table command&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
TYPES: BEGIN OF t_bkpf,
*  include structure bkpf.
  bukrs LIKE bkpf-bukrs,
  belnr LIKE bkpf-belnr,
  gjahr LIKE bkpf-gjahr,
  bldat LIKE bkpf-bldat,
  monat LIKE bkpf-monat,
  budat LIKE bkpf-budat,
  xblnr LIKE bkpf-xblnr,
  awtyp LIKE bkpf-awtyp,
  awkey LIKE bkpf-awkey,
 END OF t_bkpf.
DATA: it_bkpf TYPE STANDARD TABLE OF t_bkpf INITIAL SIZE 0,
      wa_bkpf TYPE t_bkpf.

TYPES: BEGIN OF t_bseg,
*include structure bseg.
  bukrs     LIKE bseg-bukrs,
  belnr     LIKE bseg-belnr,
  gjahr     LIKE bseg-gjahr,
  buzei     LIKE bseg-buzei,
  mwskz     LIKE bseg-mwskz,         "Tax code
  umsks     LIKE bseg-umsks,         "Special G/L transaction type
  prctr     LIKE bseg-prctr,         "Profit Centre
  hkont     LIKE bseg-hkont,         "G/L account
  xauto     LIKE bseg-xauto,
  koart     LIKE bseg-koart,
  dmbtr     LIKE bseg-dmbtr,
  mwart     LIKE bseg-mwart,
  hwbas     LIKE bseg-hwbas,
  aufnr     LIKE bseg-aufnr,
  projk     LIKE bseg-projk,
  shkzg     LIKE bseg-shkzg,
  kokrs     LIKE bseg-kokrs,
 END OF t_bseg.
DATA: it_bseg TYPE STANDARD TABLE OF t_bseg INITIAL SIZE 0,
      wa_bseg TYPE t_bseg.


*Select directly into an internal table
SELECT bukrs belnr gjahr buzei mwskz umsks prctr hkont xauto koart
       dmbtr mwart hwbas aufnr projk shkzg kokrs
  FROM bseg
  INTO TABLE it_bseg.


* Select directly into an internal table where fields are in a
* different order or not all fields are specified 
SELECT bukrs belnr gjahr buzei mwskz umsks prctr hkont xauto koart
       dmbtr mwart hwbas aufnr projk shkzg kokrs
  FROM bseg
  INTO CORRESPONDING FIELDS OF TABLE it_bseg.


*Select... endselect command
SELECT bukrs belnr gjahr buzei mwskz umsks prctr hkont xauto koart
       dmbtr mwart hwbas aufnr projk shkzg kokrs
  FROM bseg
  INTO wa_bseg.

  APPEND wa_bseg TO it_bseg.
ENDSELECT.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Select FOR ALL ENTRIES command&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;SELECT bukrs belnr gjahr bldat monat budat xblnr awtyp awkey&lt;/P&gt;&lt;P&gt;  UP TO 100 ROWS&lt;/P&gt;&lt;P&gt;  FROM bkpf&lt;/P&gt;&lt;P&gt;  INTO TABLE it_bkpf.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
IF sy-subrc EQ 0.
* The FOR ALL ENTRIES comand only retrieves data which matches
* entries within a particular internal table.
  SELECT bukrs belnr gjahr buzei mwskz umsks prctr hkont xauto koart
         dmbtr mwart hwbas aufnr projk shkzg kokrs
    FROM bseg
    INTO TABLE it_bseg
    FOR ALL ENTRIES IN it_bkpf
    WHERE bukrs EQ it_bkpf-bukrs AND
          belnr EQ it_bkpf-belnr AND
          gjahr EQ it_bkpf-gjahr.
ENDIF.



&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward  points if it is usefull .....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Girish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jun 2007 09:24:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/limiting-select-hits/m-p/2427944#M542573</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-28T09:24:25Z</dc:date>
    </item>
    <item>
      <title>Re: Limiting SELECT hits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/limiting-select-hits/m-p/2427945#M542574</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; hi,&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; make a addition to select statement .&lt;/P&gt;&lt;P&gt;&amp;gt; addition: up to 100 rows.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; ex:&lt;/P&gt;&lt;P&gt;&amp;gt; select * &lt;/P&gt;&lt;P&gt;&amp;gt; up to 100 rows&lt;/P&gt;&lt;P&gt;&amp;gt; from mara&lt;/P&gt;&lt;P&gt;&amp;gt; into table itab.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; regards,&lt;/P&gt;&lt;P&gt;&amp;gt; Navneeth K.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi! I gave the points to this answer because it is the first correct answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It should be 'UP TO' and not 'UPTO' but thanks anyways to everyone who answered!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jun 2007 10:22:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/limiting-select-hits/m-p/2427945#M542574</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-28T10:22:00Z</dc:date>
    </item>
    <item>
      <title>Re: Limiting SELECT hits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/limiting-select-hits/m-p/2427946#M542575</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; u people have gone mad for points everydby answering&lt;/P&gt;&lt;P&gt;&amp;gt; the same way cumn people this sdn helps people its&lt;/P&gt;&lt;P&gt;&amp;gt; not here 2 get points&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yep! I agree with this one. Haha. &lt;SUP&gt;_&lt;/SUP&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jun 2007 10:22:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/limiting-select-hits/m-p/2427946#M542575</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-28T10:22:44Z</dc:date>
    </item>
    <item>
      <title>Re: Limiting SELECT hits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/limiting-select-hits/m-p/2427947#M542576</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nothing to do with points but I think Santosh Kumar P came up with the first correct answer:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select* from table upto 100 rows&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;His answer should have given you more than enough to go on, if you could not work it out from that then...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jun 2007 10:31:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/limiting-select-hits/m-p/2427947#M542576</guid>
      <dc:creator>former_member378318</dc:creator>
      <dc:date>2007-06-28T10:31:01Z</dc:date>
    </item>
    <item>
      <title>Re: Limiting SELECT hits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/limiting-select-hits/m-p/2427948#M542577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Ricardo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I have answered thinking that you would get an idea to proceed not bothering about syntax as there is an F1 help to help you for sorting it out ... but i am embarrased to know that people need spoon feeding sort of answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jun 2007 10:41:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/limiting-select-hits/m-p/2427948#M542577</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-28T10:41:22Z</dc:date>
    </item>
  </channel>
</rss>

