<?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: Performance Improvement on LOOP AT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement-on-loop-at/m-p/2433736#M544181</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, &lt;/P&gt;&lt;P&gt;Try like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
adr3_tab-chngind = charnull.
modify adr3_tab TRANSPORTING chngind where chngind is initial.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 Jun 2007 14:05:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-21T14:05:22Z</dc:date>
    <item>
      <title>Performance Improvement on LOOP AT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement-on-loop-at/m-p/2433734#M544179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the snapshot from a program :&lt;/P&gt;&lt;P&gt;****************************************************************&lt;/P&gt;&lt;P&gt;constants: charnull(1)    TYPE x VALUE '00'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF adr3_tab OCCURS 0,&lt;/P&gt;&lt;P&gt;          .....&lt;/P&gt;&lt;P&gt;          .....&lt;/P&gt;&lt;P&gt;         chngind(1)      TYPE x,                         &lt;/P&gt;&lt;P&gt;     END OF adr3_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT addrnumber persnumber                                              date_from consnumber country flgdefault&lt;/P&gt;&lt;P&gt;         fax_number fax_extens faxnr_long fax_group&lt;/P&gt;&lt;P&gt;  INTO TABLE adr3_tab&lt;/P&gt;&lt;P&gt;  FROM adr3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT adr3_tab.                                         &lt;/P&gt;&lt;P&gt;    adr3_tab-chngind = charnull.                            &lt;/P&gt;&lt;P&gt;    MODIFY adr3_tab.                                        &lt;/P&gt;&lt;P&gt;ENDLOOP.       &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Above Loop eats more CPU time !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How could we improve the performance ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any advice ?&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, 21 Jun 2007 13:59:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement-on-loop-at/m-p/2433734#M544179</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T13:59:10Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Improvement on LOOP AT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement-on-loop-at/m-p/2433735#M544180</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 to use work area in ur internal table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Performance Improvement on LOOP AT &lt;/P&gt;&lt;P&gt;Posted: Jun 21, 2007 7:29 PM  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;constants: charnull(1) TYPE x VALUE '00'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF adr3_tab OCCURS 0,&lt;/P&gt;&lt;P&gt;.....&lt;/P&gt;&lt;P&gt;.....&lt;/P&gt;&lt;P&gt;chngind(1) TYPE x, &lt;/P&gt;&lt;P&gt;END OF adr3_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: it_adr3 type standard table of adr3_tab,&lt;/P&gt;&lt;P&gt;         wa_adr3 type adr3_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT addrnumber persnumber date_from consnumber country flgdefault&lt;/P&gt;&lt;P&gt;fax_number fax_extens faxnr_long fax_group&lt;/P&gt;&lt;P&gt;INTO TABLE it_adr3&lt;/P&gt;&lt;P&gt;FROM adr3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT it_adr3  into  wa_adr3.&lt;/P&gt;&lt;P&gt;wa_adr3-chngind = charnull. &lt;/P&gt;&lt;P&gt;MODIFY it_adr3 from wa_adr3. &lt;/P&gt;&lt;P&gt;ENDLOOP. &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;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;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;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;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="50" type="ul"&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;/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;/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;/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;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 14:04:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement-on-loop-at/m-p/2433735#M544180</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T14:04:51Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Improvement on LOOP AT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement-on-loop-at/m-p/2433736#M544181</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, &lt;/P&gt;&lt;P&gt;Try like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
adr3_tab-chngind = charnull.
modify adr3_tab TRANSPORTING chngind where chngind is initial.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 14:05:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement-on-loop-at/m-p/2433736#M544181</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T14:05:22Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Improvement on LOOP AT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement-on-loop-at/m-p/2433737#M544182</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try field symbol...something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;field-symbols: &amp;lt;lwa_adr3_tab&amp;gt; type ...

loop at adr3_tab assigning &amp;lt;lwa_adr3_tab&amp;gt;.
 &amp;lt;lwa_adr3_tab&amp;gt;-chngind = charnull.
* No need for modify!!!!
endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This way nothing is copied from the internal table to the header line, so it will be faster.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 14:26:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement-on-loop-at/m-p/2433737#M544182</guid>
      <dc:creator>Peter_Inotai</dc:creator>
      <dc:date>2007-06-21T14:26:34Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Improvement on LOOP AT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement-on-loop-at/m-p/2433738#M544183</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Peter Inotai  &lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;     Since I have millions(nearly 20 m) of Records on the Internal Table, will the LOOP AT again cause problem ? &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, 21 Jun 2007 14:46:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement-on-loop-at/m-p/2433738#M544183</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T14:46:35Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Improvement on LOOP AT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement-on-loop-at/m-p/2433739#M544184</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Remo J,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field symbols its the faster way to loop on an internal table.&lt;/P&gt;&lt;P&gt;You will have no problem for Peter´s proposal&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;Gabriel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 14:50:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement-on-loop-at/m-p/2433739#M544184</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T14:50:03Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Improvement on LOOP AT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement-on-loop-at/m-p/2433740#M544185</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;LOOP AT ITAB ASSIGNING &amp;lt;FS&amp;gt; cuts out the "copy cost" which occurs with LOOP AT ITAB INTO &amp;lt;WA&amp;gt; or LOOP AT ITAB (data is copied into the headre line here. For efficiency, field symbols should be used whenever possible.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 14:51:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement-on-loop-at/m-p/2433740#M544185</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T14:51:23Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Improvement on LOOP AT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement-on-loop-at/m-p/2433741#M544186</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all &lt;/P&gt;&lt;P&gt; Why the following Stmt is not efficient when comparing Field-symbols: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &amp;lt;b&amp;gt; adr3_tab-chngind = charnull.&lt;/P&gt;&lt;P&gt;   modify adr3_tab TRANSPORTING chngind where chngind is initial.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Also it does not uses even LOOP AT !  &lt;/P&gt;&lt;P&gt;   I feel this stmt works for all record on a single time ! Please correct me if I am wrong. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 14:56:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement-on-loop-at/m-p/2433741#M544186</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T14:56:29Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Improvement on LOOP AT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement-on-loop-at/m-p/2433742#M544187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Remo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, You are corect. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;modify adr3_tab TRANSPORTING chngind where chngind is initial. This statement does not need LOOP..ENDLOOP and will modify the reocrds which satisfies the condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 15:04:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement-on-loop-at/m-p/2433742#M544187</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T15:04:02Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Improvement on LOOP AT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement-on-loop-at/m-p/2433743#M544188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Using the Field-symbols inside the LOOP, do I have clear its current content using clear stmt  inside the LOOP! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at adr3_tab assigning &amp;lt;lwa_adr3_tab&amp;gt;.&lt;/P&gt;&lt;P&gt; &amp;lt;lwa_adr3_tab&amp;gt;-chngind = charnull.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;No need for modify!!!!&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   &amp;lt;b&amp;gt;clear &amp;lt;lwa_adr3_tab&amp;gt;.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it required clear the content before the next loop contents gets pointed using FS ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 15:14:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement-on-loop-at/m-p/2433743#M544188</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T15:14:36Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Improvement on LOOP AT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement-on-loop-at/m-p/2433744#M544189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any one !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2007 09:37:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement-on-loop-at/m-p/2433744#M544189</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-22T09:37:29Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Improvement on LOOP AT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement-on-loop-at/m-p/2433745#M544190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello Remo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field-symbols are the fastest way to operations on intarenal table,.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u should never use the clera statement for feilds symbols abecause it direclty work on the internal table body. unles and until if u want to clear the purticular record in the itab&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2007 09:42:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement-on-loop-at/m-p/2433745#M544190</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-22T09:42:37Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Improvement on LOOP AT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement-on-loop-at/m-p/2433746#M544191</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 from documentation.So as far I know,since it is only pointing no need toclear.&lt;/P&gt;&lt;P&gt;In "LOOP AT itab ASSIGNING &amp;lt;fs&amp;gt;", the field symbol &amp;lt;fs&amp;gt; points to the selected entry, that is, the line is not copied into a work area. You cannot reassing the field symbol to another line of the table or another field within the loop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2007 09:43:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement-on-loop-at/m-p/2433746#M544191</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2007-06-22T09:43:02Z</dc:date>
    </item>
  </channel>
</rss>

