<?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 problem reading MKPF in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-reading-mkpf/m-p/1045411#M87753</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To start - your SQL is selecting INTO TABLE.  Are you expecting multiple records (possibly)?  If not, do a SELECT SINGLE to stop the DB serach.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are expecting multiple records, here is the relationship that should get you thru:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VTTK is the shipment header.   VTTP is the shipment detail, which includes the Delivery number (VBELN).  There is a secondary index on VTTP-VBELN.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So... use the shipment number and get the delivery from VTTP.  Then go to VBFA (Doc flow table) using the delivery number to get the material document number (note set vbtyp_n = 'R' --&amp;gt; Goods Movement... this is your material doc number).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward those points!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 Dec 2005 20:27:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-12-15T20:27:25Z</dc:date>
    <item>
      <title>Performance problem reading MKPF</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-reading-mkpf/m-p/1045402#M87744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello SAPients.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to modify a program to improve the performance of it. I've analysed and found that the problem occurs when the program reads table MKPF in this query:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          select * from mkpf&lt;/P&gt;&lt;P&gt;            into table i_mkpf&lt;/P&gt;&lt;P&gt;            where bktxt = i_vttk-tknum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BKTXT is a free form text field and of course MKPF doesn't have an index on this field. I've been searching for other way to go from the shipment to the material document but I can't find the right tables to establish a relation among them and improve the performance of this report. Does anybody knows the tables and their relations to go from the shipment number to the material document? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Dec 2005 23:16:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-reading-mkpf/m-p/1045402#M87744</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-07T23:16:51Z</dc:date>
    </item>
    <item>
      <title>Re: Performance problem reading MKPF</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-reading-mkpf/m-p/1045403#M87745</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;You can solve the below sql.&lt;/P&gt;&lt;P&gt;VBFA table has information about Documentary flow.&lt;/P&gt;&lt;P&gt;I think that VBFA is the bridge.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT c.*&lt;/P&gt;&lt;P&gt;FROM sapr3.VTTP a, sapr3.VBFA b, sapr3.MKPF c&lt;/P&gt;&lt;P&gt;WHERE a.mandt = '100'&lt;/P&gt;&lt;P&gt;  AND a.tknum = '0034734699'&lt;/P&gt;&lt;P&gt;  AND b.mandt = a.mandt&lt;/P&gt;&lt;P&gt;  AND b.vbelv = a.vbeln&lt;/P&gt;&lt;P&gt;  AND b.vbtyp_n = 'R'&lt;/P&gt;&lt;P&gt;  AND c.mandt = b.mandt&lt;/P&gt;&lt;P&gt;  AND c.mblnr = b.vbeln;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, I think that You had better create an index of mkpf(bktxt field).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Dec 2005 02:27:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-reading-mkpf/m-p/1045403#M87745</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-08T02:27:00Z</dc:date>
    </item>
    <item>
      <title>Re: Performance problem reading MKPF</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-reading-mkpf/m-p/1045404#M87746</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;Create Index for BKTXT in MKPF. IF creating index is an issue . Please let me know then I will try to provide other solution .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Dec 2005 02:52:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-reading-mkpf/m-p/1045404#M87746</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-08T02:52:34Z</dc:date>
    </item>
    <item>
      <title>Re: Performance problem reading MKPF</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-reading-mkpf/m-p/1045405#M87747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I also have the same performance issue with this Query, So Creating Index on BKTXT will resolve ur problem this is the only solution for this query....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Dec 2005 04:20:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-reading-mkpf/m-p/1045405#M87747</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-08T04:20:00Z</dc:date>
    </item>
    <item>
      <title>Re: Performance problem reading MKPF</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-reading-mkpf/m-p/1045406#M87748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kil Nam Kim.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried your solution but it didn't work. The query doesn't return the same records as the original query on BKTXT. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can't create an index on BKTXT because of the policies of the company. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anybody with other idea?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2005 19:08:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-reading-mkpf/m-p/1045406#M87748</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-15T19:08:52Z</dc:date>
    </item>
    <item>
      <title>Re: Performance problem reading MKPF</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-reading-mkpf/m-p/1045407#M87749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i think through shipment number you would be getting outbound delivery as reference, so this delivery number coudl be used as reference. You can try querying on the purchase order history documents to get the material document number.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2005 19:14:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-reading-mkpf/m-p/1045407#M87749</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-15T19:14:35Z</dc:date>
    </item>
    <item>
      <title>Re: Performance problem reading MKPF</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-reading-mkpf/m-p/1045408#M87750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;select * from mkpf&lt;/P&gt;&lt;P&gt;into table i_mkpf&lt;/P&gt;&lt;P&gt;where bktxt = i_vttk-tknum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do you need all the fields...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not then try to select only the required fields,&lt;/P&gt;&lt;P&gt;that will reduce some load, create an internal table with required fields and select them to that table...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try and check the performance...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2005 19:15:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-reading-mkpf/m-p/1045408#M87750</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-15T19:15:32Z</dc:date>
    </item>
    <item>
      <title>Re: Performance problem reading MKPF</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-reading-mkpf/m-p/1045409#M87751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'd really hate to tell you to pick up the whole table, but it may be faster.  Test it out and see.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;


select * from mkpf
     into table i_mkpf.

delete from i_MKPF where bktxt &amp;lt;&amp;gt; i_vttk-tknum.



&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2005 19:16:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-reading-mkpf/m-p/1045409#M87751</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-12-15T19:16:01Z</dc:date>
    </item>
    <item>
      <title>Re: Performance problem reading MKPF</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-reading-mkpf/m-p/1045410#M87752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try to follow this.&lt;/P&gt;&lt;P&gt; from VTTK table then &lt;/P&gt;&lt;P&gt; 1) GET ALL shipment items , here you will have VBELN(this is nothing but Delivery no)&lt;/P&gt;&lt;P&gt; 2) then Goto LIPS &amp;amp; get VBELN  by passing VTTP-VBELN.&lt;/P&gt;&lt;P&gt;  3) use this LIPS-VBELN get LIKP details(both have Delivery nos)&lt;/P&gt;&lt;P&gt; 4)then use this LIKP-VBELN &amp;amp; for MKPF-VBELN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example :&lt;/P&gt;&lt;P&gt;this code is in reverse order of your requirement.&lt;/P&gt;&lt;P&gt;(i.e, i am starting for MKPF &amp;amp; getting VTTK details)&lt;/P&gt;&lt;P&gt;  SELECT MBLNR&lt;/P&gt;&lt;P&gt;         MJAHR&lt;/P&gt;&lt;P&gt;         XBLNR&lt;/P&gt;&lt;P&gt;         INTO TABLE IT_MKPF_TMP&lt;/P&gt;&lt;P&gt;         FROM MKPF&lt;/P&gt;&lt;P&gt;         WHERE VGART = 'WL'&lt;/P&gt;&lt;P&gt;         AND CPUDT IN S_DATUM.&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    EXIT.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;  LOOP AT IT_MKPF_TMP.&lt;/P&gt;&lt;P&gt;    IT_MKPF1-VBELN = IT_MKPF_TMP-XBLNR+0(10).&lt;/P&gt;&lt;P&gt;    IT_MKPF1-MJAHR = IT_MKPF_TMP-MJAHR.&lt;/P&gt;&lt;P&gt;    APPEND IT_MKPF1.&lt;/P&gt;&lt;P&gt;    CLEAR : IT_MKPF1,&lt;/P&gt;&lt;P&gt;            IT_MKPF_TMP.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SORT IT_MKPF1 BY VBELN.&lt;/P&gt;&lt;P&gt;  DELETE ADJACENT DUPLICATES FROM IT_MKPF1 COMPARING VBELN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT A~VBELN&lt;/P&gt;&lt;P&gt;         A~TRAID&lt;/P&gt;&lt;P&gt;         A~BTGEW&lt;/P&gt;&lt;P&gt;         A~KODAT&lt;/P&gt;&lt;P&gt;         A~KUNNR&lt;/P&gt;&lt;P&gt;         A~ANZPK&lt;/P&gt;&lt;P&gt;         A~ROUTA&lt;/P&gt;&lt;P&gt;         A~WADAT&lt;/P&gt;&lt;P&gt;         A~LIFNR&lt;/P&gt;&lt;P&gt;         A~VSTEL&lt;/P&gt;&lt;P&gt;         A~LFART&lt;/P&gt;&lt;P&gt;         A~KOUHR&lt;/P&gt;&lt;P&gt;         A~WADAT_IST&lt;/P&gt;&lt;P&gt;         A~LFDAT&lt;/P&gt;&lt;P&gt;         A~BOLNR                  &lt;/P&gt;&lt;P&gt;         INTO TABLE IT_LIKP&lt;/P&gt;&lt;P&gt;         FROM LIKP AS A JOIN VBUK AS B&lt;/P&gt;&lt;P&gt;         ON A&lt;SUB&gt;VBELN = B&lt;/SUB&gt;VBELN&lt;/P&gt;&lt;P&gt;         FOR ALL ENTRIES IN IT_MKPF1&lt;/P&gt;&lt;P&gt;          WHERE A~VBELN IN S_VBELN                          &lt;/P&gt;&lt;P&gt;            AND A~VBELN = IT_MKPF1-VBELN                   &lt;/P&gt;&lt;P&gt;            AND A~VSTEL IN S_WERKS&lt;/P&gt;&lt;P&gt;            AND B~WBSTK = 'C'&lt;/P&gt;&lt;P&gt;            AND A~LFART NE C_LFART                           &lt;/P&gt;&lt;P&gt;            AND A~LFART NE C_LFART1.                         &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF IT_LIKP[] IS INITIAL.&lt;/P&gt;&lt;P&gt;    EXIT.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;  SORT IT_LIKP BY VBELN.&lt;/P&gt;&lt;P&gt;*--Get Delivery Line items&lt;/P&gt;&lt;P&gt;  SELECT VBELN&lt;/P&gt;&lt;P&gt;         POSNR&lt;/P&gt;&lt;P&gt;         WERKS&lt;/P&gt;&lt;P&gt;         LGORT&lt;/P&gt;&lt;P&gt;         CHARG&lt;/P&gt;&lt;P&gt;         MATNR&lt;/P&gt;&lt;P&gt;         LFIMG&lt;/P&gt;&lt;P&gt;         VGBEL&lt;/P&gt;&lt;P&gt;         MFRGR&lt;/P&gt;&lt;P&gt;         MEINS&lt;/P&gt;&lt;P&gt;         VRKME&lt;/P&gt;&lt;P&gt;         UMVKZ&lt;/P&gt;&lt;P&gt;         UMVKN&lt;/P&gt;&lt;P&gt;         UMWRK&lt;/P&gt;&lt;P&gt;         INTO TABLE IT_LIPS&lt;/P&gt;&lt;P&gt;         FROM LIPS&lt;/P&gt;&lt;P&gt;         FOR ALL ENTRIES IN IT_LIKP&lt;/P&gt;&lt;P&gt;         WHERE VBELN = IT_LIKP-VBELN&lt;/P&gt;&lt;P&gt;           AND CHARG &amp;lt;&amp;gt; ''&lt;/P&gt;&lt;P&gt;           AND MTART EQ C_MTART.&lt;/P&gt;&lt;P&gt;  IF IT_LIPS[] IS INITIAL.&lt;/P&gt;&lt;P&gt;    EXIT.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;*--Get Shipment Details.(VTTP)&lt;/P&gt;&lt;P&gt;  SELECT TKNUM&lt;/P&gt;&lt;P&gt;         VBELN&lt;/P&gt;&lt;P&gt;         INTO TABLE IT_VTTP&lt;/P&gt;&lt;P&gt;         FROM VTTP&lt;/P&gt;&lt;P&gt;         FOR ALL ENTRIES IN IT_LIKP&lt;/P&gt;&lt;P&gt;         WHERE VBELN = IT_LIKP-VBELN.&lt;/P&gt;&lt;P&gt;*--Get Shipment Header details.(VTTK)&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;    SELECT TKNUM&lt;/P&gt;&lt;P&gt;         TPLST&lt;/P&gt;&lt;P&gt;         TDLNR&lt;/P&gt;&lt;P&gt;         DTABF&lt;/P&gt;&lt;P&gt;         DATEN&lt;/P&gt;&lt;P&gt;         EXTI2&lt;/P&gt;&lt;P&gt;         INTO TABLE IT_VTTK&lt;/P&gt;&lt;P&gt;         FROM VTTK&lt;/P&gt;&lt;P&gt;         FOR ALL ENTRIES IN IT_VTTP&lt;/P&gt;&lt;P&gt;         WHERE TKNUM = IT_VTTP-TKNUM.&lt;/P&gt;&lt;P&gt;    SORT IT_VTTK BY TKNUM.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2005 19:32:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-reading-mkpf/m-p/1045410#M87752</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-15T19:32:06Z</dc:date>
    </item>
    <item>
      <title>Re: Performance problem reading MKPF</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-reading-mkpf/m-p/1045411#M87753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To start - your SQL is selecting INTO TABLE.  Are you expecting multiple records (possibly)?  If not, do a SELECT SINGLE to stop the DB serach.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are expecting multiple records, here is the relationship that should get you thru:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VTTK is the shipment header.   VTTP is the shipment detail, which includes the Delivery number (VBELN).  There is a secondary index on VTTP-VBELN.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So... use the shipment number and get the delivery from VTTP.  Then go to VBFA (Doc flow table) using the delivery number to get the material document number (note set vbtyp_n = 'R' --&amp;gt; Goods Movement... this is your material doc number).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward those points!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2005 20:27:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-reading-mkpf/m-p/1045411#M87753</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-15T20:27:25Z</dc:date>
    </item>
    <item>
      <title>Re: Performance problem reading MKPF</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-reading-mkpf/m-p/1045412#M87754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi recardo,&lt;/P&gt;&lt;P&gt; what happened? is your problem solved ?? or still facing it??&lt;/P&gt;&lt;P&gt;pl let us know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;srikanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Dec 2005 09:59:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-reading-mkpf/m-p/1045412#M87754</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-16T09:59:20Z</dc:date>
    </item>
  </channel>
</rss>

