<?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: DATA display in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-display/m-p/7036861#M1500151</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i m writing it in a form - subroutine... im getting the error whihc i mentioned in my previous thread..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please anyone suggest me..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 31 May 2010 11:44:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-05-31T11:44:22Z</dc:date>
    <item>
      <title>DATA display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-display/m-p/7036855#M1500145</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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have a internal table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A B C 1 2 4&lt;/P&gt;&lt;P&gt;A B C 3 5 6&lt;/P&gt;&lt;P&gt;D S R 3 $ %&lt;/P&gt;&lt;P&gt;D S R 3 5 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want it to be displayed as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A B C 1 2 4&lt;/P&gt;&lt;P&gt;          3 5 6&lt;/P&gt;&lt;P&gt;D S R 3 $ %&lt;/P&gt;&lt;P&gt;          3 $ %&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know how can i handle this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;Poonam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 May 2010 10:40:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-display/m-p/7036855#M1500145</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-31T10:40:11Z</dc:date>
    </item>
    <item>
      <title>Re: DATA display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-display/m-p/7036856#M1500146</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 try AT ... in loop .. endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 May 2010 10:43:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-display/m-p/7036856#M1500146</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-31T10:43:31Z</dc:date>
    </item>
    <item>
      <title>Re: DATA display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-display/m-p/7036857#M1500147</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 control statement AT new in the loop on the first field ABC &amp;amp; b4 this loop sort the internal table on the first field&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 May 2010 10:47:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-display/m-p/7036857#M1500147</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-31T10:47:23Z</dc:date>
    </item>
    <item>
      <title>Re: DATA display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-display/m-p/7036858#M1500148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Poonam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assume this is itab:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A B C 1 2 4&lt;/P&gt;&lt;P&gt;A B C 3 5 6&lt;/P&gt;&lt;P&gt;D S R 3 $ %&lt;/P&gt;&lt;P&gt;D S R 3 5 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And Assume that itab_final is the final internal table which you want to display on the screen and now it is initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Loop at itab.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;read table itab_final with key field1 = 'Cond'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if sy-subrc ne 0.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;clear: field1,field2, field3.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;append itab_final.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;else.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;append itab_final.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;endif.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;endloop.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Therefore with this code you can get the desired output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Md Ziauddin.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 May 2010 10:59:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-display/m-p/7036858#M1500148</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-31T10:59:00Z</dc:date>
    </item>
    <item>
      <title>Re: DATA display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-display/m-p/7036859#M1500149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CAn u please give me an example?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i use AT new&lt;/P&gt;&lt;P&gt; i get this error.:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The specified type has no structure and therefore no component called&lt;/P&gt;&lt;P&gt;"ZCONTITM" . . . ..&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;its also possible for the below criteria :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A B C 1 3 4&lt;/P&gt;&lt;P&gt;A B D 14 5&lt;/P&gt;&lt;P&gt;A B C 3 4 6&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it shud diaplay as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A B C 1 3 4&lt;/P&gt;&lt;P&gt;           3 4 6&lt;/P&gt;&lt;P&gt;A B D 1 4 5&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this means also on 3rd field change it shid display&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to handle&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Poonam Naik on May 31, 2010 1:24 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 May 2010 11:15:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-display/m-p/7036859#M1500149</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-31T11:15:34Z</dc:date>
    </item>
    <item>
      <title>Re: DATA display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-display/m-p/7036860#M1500150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tell me one thing tat  the internal table structure is it like this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is the value of field1 --&amp;gt;(A B C) &lt;/P&gt;&lt;P&gt;&amp;amp; this is the value of field2 ---&amp;gt; 1 3 4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then &lt;/P&gt;&lt;P&gt;data : wa like it ,&lt;/P&gt;&lt;P&gt;          flag.&lt;/P&gt;&lt;P&gt;sort it by field1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at it.&lt;/P&gt;&lt;P&gt;clear flag.&lt;/P&gt;&lt;P&gt;wa = it&lt;/P&gt;&lt;P&gt;at new field1.&lt;/P&gt;&lt;P&gt;write : wa-field1 wa-field2.&lt;/P&gt;&lt;P&gt;flag = 'X'.&lt;/P&gt;&lt;P&gt;endat.&lt;/P&gt;&lt;P&gt;if flag ne 'X'.&lt;/P&gt;&lt;P&gt;write :  wa-field2.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 May 2010 11:26:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-display/m-p/7036860#M1500150</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-31T11:26:44Z</dc:date>
    </item>
    <item>
      <title>Re: DATA display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-display/m-p/7036861#M1500151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i m writing it in a form - subroutine... im getting the error whihc i mentioned in my previous thread..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please anyone suggest me..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 May 2010 11:44:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-display/m-p/7036861#M1500151</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-31T11:44:22Z</dc:date>
    </item>
    <item>
      <title>Re: DATA display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-display/m-p/7036862#M1500152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can u show the logic ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 May 2010 11:58:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-display/m-p/7036862#M1500152</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-31T11:58:16Z</dc:date>
    </item>
    <item>
      <title>Re: DATA display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-display/m-p/7036863#M1500153</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM fill_table .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA : w_result TYPE ty_temp_all,&lt;/P&gt;&lt;P&gt;         t_reuslt TYPE STANDARD TABLE OF ty_temp_all,&lt;/P&gt;&lt;P&gt;          w_both TYPE  ty_both.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT t_both INTO w_both.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    AT NEW w_both-zccode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      MOVE w_both-zccode   TO w_result-zccode.&lt;/P&gt;&lt;P&gt;      MOVE w_both-zcontnum TO w_result-zcontnum.&lt;/P&gt;&lt;P&gt;      MOVE w_both-zcontitm TO w_result-zcontitm.&lt;/P&gt;&lt;P&gt;    ENDAT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF w_both-flag = c_r.&lt;/P&gt;&lt;P&gt;      MOVE w_both-flag      TO w_result-flag.&lt;/P&gt;&lt;P&gt;      MOVE w_both-zdocnum   TO w_result-zdocnum.&lt;/P&gt;&lt;P&gt;      MOVE w_both-cbelnr    TO w_result-cbelnr.&lt;/P&gt;&lt;P&gt;      MOVE w_both-zicobill  TO w_result-zicobill.&lt;/P&gt;&lt;P&gt;      MOVE w_both-zpostdt   TO w_result-zpostdt.&lt;/P&gt;&lt;P&gt;   ELSEIF w_both-flag = c_b.&lt;/P&gt;&lt;P&gt;      MOVE w_both-flag     TO w_result-flag.&lt;/P&gt;&lt;P&gt;      MOVE w_both-zdocnum  TO w_result-zdocnum.&lt;/P&gt;&lt;P&gt;      MOVE w_both-cbelnr   TO w_result-cbelnr.&lt;/P&gt;&lt;P&gt;      MOVE w_both-zicobill TO w_result-zicobill.&lt;/P&gt;&lt;P&gt;      MOVE w_both-zpostdt  TO w_result-zpostdt.   &lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    APPEND w_result TO t_result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 May 2010 12:08:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-display/m-p/7036863#M1500153</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-31T12:08:38Z</dc:date>
    </item>
    <item>
      <title>Re: DATA display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-display/m-p/7036864#M1500154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;at new NEW zccode.   only give the field name here&lt;/P&gt;&lt;P&gt;and add a sort on the internal table on the zcode field&lt;/P&gt;&lt;P&gt;and after the loop statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT t_both INTO w_both.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_both = w_both.--- assgin this b4 at new statement&lt;/P&gt;&lt;P&gt;and print this wa_both varable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this may solve ur problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Madhukar Shetty on May 31, 2010 2:12 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 May 2010 12:11:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-display/m-p/7036864#M1500154</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-31T12:11:51Z</dc:date>
    </item>
    <item>
      <title>Re: DATA display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-display/m-p/7036865#M1500155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Poolnam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use ALV/SALV technology, SORT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: Using standard lists (filled with WRITE statements) is listed by SAP in the [Obsolete Techniques|http://help.sap.com/saphelp_nw70ehp2/helpdata/en/42/e5e554ee893ee7e10000000a1553f7/frameset.htm] section of ABAP programming.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Clemens Li on May 31, 2010 2:39 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 May 2010 12:38:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-display/m-p/7036865#M1500155</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2010-05-31T12:38:48Z</dc:date>
    </item>
    <item>
      <title>Re: DATA display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-display/m-p/7036866#M1500156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Poonam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Declare an internal table same as w_result eg. w_result1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOOP AT t_both INTO w_both.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;READ TABLE t_result1 WITH KEY zzcode = w_both-zzcode .&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="11" type="ul"&gt;&lt;P&gt;(initially the table t_result1 is empty, so returns sy-subrc 4 and appends the record,&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;second time reads the table t_result1, if sy-subrc eq 0 it will clear the fieldsand appends it...and so on..........)*********&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;IF sy-subrc EQ 0.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;CLEAR: field1,field2, field3.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;APPEND w_both TO t_result1.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;ELSE.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;APPEND w_both TO t_result1.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;ENDIF.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ENDLOOP.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tested it and its working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Md Ziauddin.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 May 2010 12:44:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-display/m-p/7036866#M1500156</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-31T12:44:44Z</dc:date>
    </item>
  </channel>
</rss>

