<?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: How to store all For loop data in single QVD in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-store-all-For-loop-data-in-single-QVD/m-p/23516#M783876</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;vInlinCount=3 Means For loop rotate 3 times. Each time we need to store some where in QVD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In ur solution, Data stores in If I=0,Other wise NOO.&lt;/P&gt;&lt;P&gt;We need to store data in All conditions in single QVD. &lt;/P&gt;&lt;P style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;/P&gt;&lt;P style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;if $(i)=0 then&lt;BR /&gt;STORE DBDATA into DATA_gireesh.qvd(qvd);&lt;/P&gt;&lt;P style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;DROP Table DBDATA;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 14 Mar 2018 06:39:43 GMT</pubDate>
    <dc:creator>gireesh1216</dc:creator>
    <dc:date>2018-03-14T06:39:43Z</dc:date>
    <item>
      <title>How to store all For loop data in single QVD</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-store-all-For-loop-data-in-single-QVD/m-p/23514#M783874</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Friends,&lt;/P&gt;&lt;P&gt;In the below script I am using for loop.I want to store all data into single qvd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can u please help on that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATES:&lt;/P&gt;&lt;P&gt;LOAD * Inline [&lt;BR /&gt;Start_Date,End_Date&lt;BR /&gt;01-Aug-17,31-Jul-18&lt;BR /&gt;01-Dec-17,30-Nov-18&lt;BR /&gt;01-Jan-18,31-Dec-18&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let vInlinCount = NoOfRows('DATES:');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//OPEN FOR LOOP&lt;BR /&gt;For i = 0 To $(vInlinCount)-1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//GET THE DATE IN VARIABLES&lt;BR /&gt;LET vSP_START_DT = Peek('Start_Date', $(i), 'DATES:');&lt;BR /&gt;LET vSP_END_DT = Peek('End_Date', $(i), 'DATES:S');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DBDATA:&lt;BR /&gt;SELECT * FROM EMPLOYEE WHERE LOB='1216' AND NVL (CREATED_DT,INIT_DT) BETWEEN TO_DATE('$(vSP_START_DT)','DD-MON-YY') AND TO_DATE('$(vSP_END_DT)','DD-MON-YY');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if $(i)=0 then&lt;BR /&gt;STORE DBDATA into DATA_gireesh.qvd(qvd);&lt;BR /&gt;ELSE&lt;BR /&gt;STORE DBDATA into DATA_gireesh1.qvd(qvd);&lt;BR /&gt;ENDIF&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Storing all qvds in single qvd&lt;/P&gt;&lt;P&gt;if $(i)&amp;gt;0 then&lt;BR /&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;TEMP:&lt;BR /&gt;LOAD *&lt;BR /&gt;FROM&lt;BR /&gt;DATA_gireesh.qvd]&lt;BR /&gt;(qvd);&lt;BR /&gt;Concatenate&lt;BR /&gt;LOAD *&lt;BR /&gt;FROM&lt;BR /&gt;DATA_gireesh1.qvd]&lt;BR /&gt;(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE TEMP into DATA_gireesh.qvd(qvd);&lt;/P&gt;&lt;P&gt;ENDIF&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Next i&lt;BR /&gt;DROP Table DBDATA;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-store-all-For-loop-data-in-single-QVD/m-p/23514#M783874</guid>
      <dc:creator>gireesh1216</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to store all For loop data in single QVD</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-store-all-For-loop-data-in-single-QVD/m-p/23515#M783875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;as it seems that you load the same table 3 times &lt;/P&gt;&lt;P&gt;you can just loop the&amp;nbsp; load phase and you'll get one table in the end &lt;/P&gt;&lt;P&gt;because Qlik will automatically concat the tables &lt;/P&gt;&lt;P&gt;so your script can look something like &lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;DATES:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD * Inline [&lt;BR /&gt;Start_Date,End_Date&lt;BR /&gt;01-Aug-17,31-Jul-18&lt;BR /&gt;01-Dec-17,30-Nov-18&lt;BR /&gt;01-Jan-18,31-Dec-18&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Let vInlinCount = NoOfRows('DATES:');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;//OPEN FOR LOOP&lt;BR /&gt;For i = 0 To $(vInlinCount)-1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;//GET THE DATE IN VARIABLES&lt;BR /&gt;LET vSP_START_DT = Peek('Start_Date', $(i), 'DATES:');&lt;BR /&gt;LET vSP_END_DT = Peek('End_Date', $(i), 'DATES:S');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;DBDATA:&lt;BR /&gt;SELECT * FROM EMPLOYEE WHERE LOB='1216' AND NVL (CREATED_DT,INIT_DT) BETWEEN TO_DATE('$(vSP_START_DT)','DD-MON-YY') AND TO_DATE('$(vSP_END_DT)','DD-MON-YY');&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; next i&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;if $(i)=0 then&lt;BR /&gt;STORE DBDATA into DATA_gireesh.qvd(qvd);&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;DROP Table DBDATA;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Mar 2018 06:26:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-store-all-For-loop-data-in-single-QVD/m-p/23515#M783875</guid>
      <dc:creator>lironbaram</dc:creator>
      <dc:date>2018-03-14T06:26:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to store all For loop data in single QVD</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-store-all-For-loop-data-in-single-QVD/m-p/23516#M783876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;vInlinCount=3 Means For loop rotate 3 times. Each time we need to store some where in QVD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In ur solution, Data stores in If I=0,Other wise NOO.&lt;/P&gt;&lt;P&gt;We need to store data in All conditions in single QVD. &lt;/P&gt;&lt;P style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;/P&gt;&lt;P style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;if $(i)=0 then&lt;BR /&gt;STORE DBDATA into DATA_gireesh.qvd(qvd);&lt;/P&gt;&lt;P style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;DROP Table DBDATA;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Mar 2018 06:39:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-store-all-For-loop-data-in-single-QVD/m-p/23516#M783876</guid>
      <dc:creator>gireesh1216</dc:creator>
      <dc:date>2018-03-14T06:39:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to store all For loop data in single QVD</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-store-all-For-loop-data-in-single-QVD/m-p/23517#M783878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;my mistake &lt;/P&gt;&lt;P&gt;remove that line &lt;/P&gt;&lt;P&gt;than it'll store the full table after the loop in one step &lt;/P&gt;&lt;P&gt;why do you want to store it 3 times?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Mar 2018 07:49:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-store-all-For-loop-data-in-single-QVD/m-p/23517#M783878</guid>
      <dc:creator>lironbaram</dc:creator>
      <dc:date>2018-03-14T07:49:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to store all For loop data in single QVD</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-store-all-For-loop-data-in-single-QVD/m-p/23518#M783880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for ur reply&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not storing 3times.For example&lt;/P&gt;&lt;P&gt;If I=0 getting 10 records&lt;/P&gt;&lt;P&gt;if I=1 getting 5 records&lt;/P&gt;&lt;P&gt;if I=2 getting 25 records&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here I want to store all data 10+5+25 into single qvd.&lt;/P&gt;&lt;P&gt;if u write single store statement we wil get last loop data(25 records).But we want to store all data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Mar 2018 08:04:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-store-all-For-loop-data-in-single-QVD/m-p/23518#M783880</guid>
      <dc:creator>gireesh1216</dc:creator>
      <dc:date>2018-03-14T08:04:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to store all For loop data in single QVD</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-store-all-For-loop-data-in-single-QVD/m-p/23519#M783881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;no &lt;/P&gt;&lt;P&gt;it will store all the records look at the script i worte the loop is after the reload &lt;/P&gt;&lt;P&gt;the store only happens after the loop is completed &lt;/P&gt;&lt;P&gt;so it'll store all the data&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Mar 2018 08:07:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-store-all-For-loop-data-in-single-QVD/m-p/23519#M783881</guid>
      <dc:creator>lironbaram</dc:creator>
      <dc:date>2018-03-14T08:07:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to store all For loop data in single QVD</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-store-all-For-loop-data-in-single-QVD/m-p/23520#M783882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try like this: Dont make it complicated&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;DATES:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD * Inline [&lt;BR /&gt;Start_Date,End_Date&lt;BR /&gt;01-Aug-17,31-Jul-18&lt;BR /&gt;01-Dec-17,30-Nov-18&lt;BR /&gt;01-Jan-18,31-Dec-18&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Let vInlinCount = NoOfRows('DATES:');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;//OPEN FOR LOOP&lt;BR /&gt;For i = 0 To $(vInlinCount)-1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;//GET THE DATE IN VARIABLES&lt;BR /&gt;LET vSP_START_DT = Peek('Start_Date', $(i), 'DATES:');&lt;BR /&gt;LET vSP_END_DT = Peek('End_Date', $(i), 'DATES:S');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;DBDATA:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;SELECT * FROM EMPLOYEE WHERE LOB='1216' AND NVL (CREATED_DT,INIT_DT) BETWEEN TO_DATE('$(vSP_START_DT)','DD-MON-YY') AND TO_DATE('$(vSP_END_DT)','DD-MON-YY');&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt; Next i&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Noconcatenate&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;New_DBDATA:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;*&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;resident &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;DBDATA;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;DROP Table DBDATA;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;store &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;New_DBDATA into &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;DATA_gireesh.qvd(qvd);&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Drop table &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;New_DBDATA;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Br,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;KC&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Mar 2018 08:25:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-store-all-For-loop-data-in-single-QVD/m-p/23520#M783882</guid>
      <dc:creator>jyothish8807</dc:creator>
      <dc:date>2018-03-14T08:25:41Z</dc:date>
    </item>
  </channel>
</rss>

