<?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 statement logic in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-logic/m-p/4872535#M1139066</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am afraid this can only be done in two steps:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;1.
SELECT DISTINCT objnr
FROM ...
INTO TABLE itab1
WHERE status EQ '3'. " All objnr are selected., which have status 3 (!)

2.
SELECT DISTINCT objnr
FROM ...
INTO TABLE itab2
FOR ALL ENTRIES IN itab1
WHERE objnr NE itab1-objnr. "All objnr are selected which don't have status 3&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another solution would be to use somenested select:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT objnr
FROM ...
INTO wa
WHERE status NE 3.
IF sy-subrc EQ 0.
SELECT COUNT( * ) 
FROM ... 
WHERE objnr EQ wa-objnr
AND status EQ '3'. "here it is checked if objnr with status 3 exists
IF sy-subrc NE 0. " if no ==&amp;gt; append itab
APPEND wa TO itab.
ENDIF.
ENDIF.
ENDSELECT.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(I don't know which one would be better performancve wise, probably the first)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Nov 2008 10:20:43 GMT</pubDate>
    <dc:creator>JozsefSzikszai</dc:creator>
    <dc:date>2008-11-25T10:20:43Z</dc:date>
    <item>
      <title>select statement logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-logic/m-p/4872528#M1139059</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;Database table contains data like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;objnr          status&lt;/P&gt;&lt;P&gt;60000        1&lt;/P&gt;&lt;P&gt;60000        2&lt;/P&gt;&lt;P&gt;60000        3&lt;/P&gt;&lt;P&gt;60001        1&lt;/P&gt;&lt;P&gt;60001        2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  i want  to read the objnr if status is not equal to  3( i don't need objnr 60000 because status is 3)&lt;/P&gt;&lt;P&gt; my internal table contains data only  60001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i write select statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Suresh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2008 10:09:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-logic/m-p/4872528#M1139059</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-25T10:09:04Z</dc:date>
    </item>
    <item>
      <title>Re: select statement logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-logic/m-p/4872529#M1139060</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 like this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select objnr from &amp;lt;table&amp;gt;  into table itab where status &amp;lt;&amp;gt; '3'.&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;Kalp...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2008 10:12:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-logic/m-p/4872529#M1139060</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-25T10:12:16Z</dc:date>
    </item>
    <item>
      <title>Re: select statement logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-logic/m-p/4872530#M1139061</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 way to get solution&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select &amp;lt;data&amp;gt; from &amp;lt;table-name&amp;gt; where status NE '3'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2008 10:14:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-logic/m-p/4872530#M1139061</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-25T10:14:48Z</dc:date>
    </item>
    <item>
      <title>Re: select statement logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-logic/m-p/4872531#M1139062</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;sorry Try like this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select objnr from &amp;lt;table&amp;gt; into table itab where status  NE '3'.&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;Kalp...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2008 10:15:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-logic/m-p/4872531#M1139062</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-25T10:15:15Z</dc:date>
    </item>
    <item>
      <title>Re: select statement logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-logic/m-p/4872532#M1139063</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 this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select objnr from tablename into lt_itab where status NE '3'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;N M Poojari.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2008 10:16:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-logic/m-p/4872532#M1139063</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-25T10:16:58Z</dc:date>
    </item>
    <item>
      <title>Re: select statement logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-logic/m-p/4872533#M1139064</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Select objnr status from &amp;lt;table_name&amp;gt; into &amp;lt;internal_tab&amp;gt;&lt;/P&gt;&lt;P&gt;                                            where status NE 3.&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;Raj.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rajat  Chaturvedi on Nov 25, 2008 3:47 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2008 10:17:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-logic/m-p/4872533#M1139064</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-25T10:17:31Z</dc:date>
    </item>
    <item>
      <title>Re: select statement logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-logic/m-p/4872534#M1139065</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suresh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Define Range for status field as follows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: r_stat type range of &amp;lt;status&amp;gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;r_stat-sign = 'I'.&lt;/P&gt;&lt;P&gt;r_stat-option = 'NE'.&lt;/P&gt;&lt;P&gt;r_stat-low = '3'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append r_stat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now select the objnr from database table using this range.&lt;/P&gt;&lt;P&gt;select objnr&lt;/P&gt;&lt;P&gt;          status&lt;/P&gt;&lt;P&gt;   from &amp;lt;table&amp;gt;&lt;/P&gt;&lt;P&gt;   into table &amp;lt;i_tab&amp;gt;&lt;/P&gt;&lt;P&gt;where status in r_stat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vikas.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2008 10:20:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-logic/m-p/4872534#M1139065</guid>
      <dc:creator>VikasB</dc:creator>
      <dc:date>2008-11-25T10:20:40Z</dc:date>
    </item>
    <item>
      <title>Re: select statement logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-logic/m-p/4872535#M1139066</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am afraid this can only be done in two steps:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;1.
SELECT DISTINCT objnr
FROM ...
INTO TABLE itab1
WHERE status EQ '3'. " All objnr are selected., which have status 3 (!)

2.
SELECT DISTINCT objnr
FROM ...
INTO TABLE itab2
FOR ALL ENTRIES IN itab1
WHERE objnr NE itab1-objnr. "All objnr are selected which don't have status 3&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another solution would be to use somenested select:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT objnr
FROM ...
INTO wa
WHERE status NE 3.
IF sy-subrc EQ 0.
SELECT COUNT( * ) 
FROM ... 
WHERE objnr EQ wa-objnr
AND status EQ '3'. "here it is checked if objnr with status 3 exists
IF sy-subrc NE 0. " if no ==&amp;gt; append itab
APPEND wa TO itab.
ENDIF.
ENDIF.
ENDSELECT.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(I don't know which one would be better performancve wise, probably the first)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2008 10:20:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-logic/m-p/4872535#M1139066</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2008-11-25T10:20:43Z</dc:date>
    </item>
    <item>
      <title>Re: select statement logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-logic/m-p/4872536#M1139067</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Suresh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to create two more internal tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IT1 contains data from the DB table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IT2 contains all OBJNR for which STATUS = 3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IT3 contains all OBJNR for which STATUS NE 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SELECT F1 F2 F3 FROM TAB
INTO TABLE IT1
WHERE OBJNR IN S_OBJNR. "DONOT use STATUS here, else you'll get wrong data

LOOP AT IT1 INTO WA.
  IF WA-STATUS = '3'.
    APPEND WA TO IT2.
    CLEAR WA.  
  ENDIF.
ENDLOOP.

SORT IT2 BY OBJNR.

LOOP AT IT1 INTO WA.
  READ TABLE IT2 WITH KEY OBJNR = WA-OBJNR BINARY SEARCH.
  IF SY-SUBRC NE 0.
    APPEND WA TO IT3.
    CLEAR WA.
  ENDIF.
ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this is clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2008 10:26:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-logic/m-p/4872536#M1139067</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2008-11-25T10:26:19Z</dc:date>
    </item>
    <item>
      <title>Re: select statement logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-logic/m-p/4872537#M1139068</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Eric,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Iam using below code but both internal table contains same data.&lt;/P&gt;&lt;P&gt;where is my code wrong?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : r_stat     TYPE RANGE OF jest-stat,&lt;/P&gt;&lt;P&gt;         r_inact    TYPE RANGE OF jest-inact,&lt;/P&gt;&lt;P&gt;         wa_stat    LIKE LINE OF r_stat,&lt;/P&gt;&lt;P&gt;         wa_inact   LIKE LINE OF r_inact.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR: wa_stat,&lt;/P&gt;&lt;P&gt;       wa_inact.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REFRESH: r_stat,&lt;/P&gt;&lt;P&gt;         r_inact.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_stat-sign   = 'I'.&lt;/P&gt;&lt;P&gt;wa_stat-option = 'EQ'.&lt;/P&gt;&lt;P&gt;wa_stat-low    = 'I0045'.&lt;/P&gt;&lt;P&gt;APPEND wa_stat TO r_stat.&lt;/P&gt;&lt;P&gt;CLEAR wa_stat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_stat-sign   = 'I'.&lt;/P&gt;&lt;P&gt;wa_stat-option = 'EQ'.&lt;/P&gt;&lt;P&gt;wa_stat-low    = '0012'.&lt;/P&gt;&lt;P&gt;APPEND wa_stat TO r_stat.&lt;/P&gt;&lt;P&gt;CLEAR wa_stat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_stat-sign   = 'I'.&lt;/P&gt;&lt;P&gt;wa_stat-option = 'EQ'.&lt;/P&gt;&lt;P&gt;wa_stat-low    = 'I0016'.&lt;/P&gt;&lt;P&gt;wa_stat-high   = 'I0016'.&lt;/P&gt;&lt;P&gt;APPEND wa_stat TO r_stat.&lt;/P&gt;&lt;P&gt;CLEAR wa_stat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_inact-sign   = 'I'.&lt;/P&gt;&lt;P&gt;wa_inact-option = 'EQ'.&lt;/P&gt;&lt;P&gt;wa_inact-low    = ' '.&lt;/P&gt;&lt;P&gt;APPEND wa_inact TO r_inact.&lt;/P&gt;&lt;P&gt;CLEAR wa_inact.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF ty_aufk,&lt;/P&gt;&lt;P&gt;       aufnr TYPE aufk-aufnr,&lt;/P&gt;&lt;P&gt;       END OF ty_aufk.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: gt_aufk TYPE TABLE OF ty_aufk,&lt;/P&gt;&lt;P&gt;      gt_aufk1 TYPE TABLE OF ty_aufk,&lt;/P&gt;&lt;P&gt;      wa_aufk TYPE ty_aufk.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT  distinct a&lt;SUB&gt;aufnr INTO TABLE gt_aufk FROM aufk AS a JOIN jest AS b ON a&lt;/SUB&gt;objnr = b~objnr&lt;/P&gt;&lt;P&gt;                             WHERE a~werks EQ '0001'&lt;/P&gt;&lt;P&gt;                               AND a~auart EQ 'YB02'&lt;/P&gt;&lt;P&gt;                               AND b~stat  IN r_stat&lt;/P&gt;&lt;P&gt;                               AND b~inact IN r_inact   .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; sort gt_aufk.&lt;/P&gt;&lt;P&gt; if not gt_aufk is initial.&lt;/P&gt;&lt;P&gt;  select distinct aufnr  from aufk into  table  gt_aufk1  for all entries in gt_aufk&lt;/P&gt;&lt;P&gt;                                    WHERE aufnr ne gt_aufk-aufnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2008 11:47:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-logic/m-p/4872537#M1139068</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-25T11:47:24Z</dc:date>
    </item>
    <item>
      <title>Re: select statement logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-logic/m-p/4872538#M1139069</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry, my first idea was wrong (FOR ALL ENTRIES and NOT EQUAL in WHERE don't like each other...). Pls. rewrite the code the following way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : range TYPE RANGE OF objnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;1.
SELECT DISTINCT objnr AS low
FROM ...
INTO TABLE range
WHERE status EQ '3'. " All objnr are selected., which have status 3 (!) into a range

1./a 
LOOP AT range.
range-sign = 'E'.
range-option = 'EQ'.
MODIFY range.
ENDLOOP.

2.
SELECT DISTINCT objnr
FROM ...
INTO TABLE itab2
WHERE objnr IN rannge "All objnr are selected which don't have status 3&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now the values (which we don't need later) are selected into a range. The range is modified (in step 1/a), so exclusions happen and finally the range is used to exclude the values in the final selection&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2008 12:30:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-logic/m-p/4872538#M1139069</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2008-11-25T12:30:28Z</dc:date>
    </item>
  </channel>
</rss>

