<?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 Do While Loop to find original report in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Do-While-Loop-to-find-original-report/m-p/796049#M281246</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;I have this business requirement: &lt;/P&gt;&lt;P&gt;1. When a report is submitted, it generates a unique Report ID in the database.&lt;/P&gt;&lt;P&gt;2. When the same report is re-submitted, a new Report ID is generated, but this new report has a link to the older report ID.&lt;/P&gt;&lt;P&gt;3. If a report is re-submitted multiple times, each Report ID will have a link to its older report.&lt;/P&gt;&lt;P&gt;4. In the scenario of multiple submitted reports, how can we get the original report ID?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The database looks like this: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 168px;"&gt;&lt;TBODY&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD class="xl67" height="20" style="height: 15.0pt; width: 48pt;" width="64"&gt;Report ID&lt;/TD&gt;&lt;TD class="xl67" style="border-left: none; width: 78pt;" width="104"&gt;Older Report ID&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD align="right" class="xl68" height="20" style="height: 15.0pt; border-top: none;"&gt;&lt;SPAN style="color: #ff0000;"&gt;5158&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD align="right" class="xl68" style="border-top: none; border-left: none;"&gt;&lt;SPAN style="color: #ff0000;"&gt;5069&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD align="right" class="xl67" height="20" style="height: 15.0pt; border-top: none;"&gt;3414&lt;/TD&gt;&lt;TD align="right" class="xl67" style="border-top: none; border-left: none;"&gt;1544&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD align="right" class="xl68" height="20" style="height: 15.0pt; border-top: none;"&gt;&lt;SPAN style="color: #ff0000;"&gt;5069&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD align="right" class="xl68" style="border-top: none; border-left: none;"&gt;&lt;SPAN style="color: #ff0000;"&gt;5064&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD align="right" class="xl67" height="20" style="height: 15.0pt; border-top: none;"&gt;3256&lt;/TD&gt;&lt;TD align="right" class="xl67" style="border-top: none; border-left: none;"&gt;3252&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD align="right" class="xl67" height="20" style="height: 15.0pt; border-top: none;"&gt;4144&lt;/TD&gt;&lt;TD align="right" class="xl67" style="border-top: none; border-left: none;"&gt;2445&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD align="right" class="xl68" height="20" style="height: 15.0pt; border-top: none;"&gt;&lt;SPAN style="color: #ff0000;"&gt;5064&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD align="right" class="xl68" style="border-top: none; border-left: none;"&gt;&lt;SPAN style="color: #ff0000;"&gt;5049&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD align="right" class="xl68" height="20" style="height: 15.0pt; border-top: none;"&gt;&lt;SPAN style="color: #ff0000;"&gt;5049&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD align="right" class="xl68" style="border-top: none; border-left: none;"&gt;&lt;SPAN style="color: #ff0000;"&gt;5046&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the above table (&lt;SPAN style="color: #ff0000;"&gt;in red&lt;/SPAN&gt;), report 5158 has an older report ID = 5069.&lt;/P&gt;&lt;P&gt;Report 5069 has an older report ID = 5064.&lt;/P&gt;&lt;P&gt;Report 5064 has an older report ID = 5049.&lt;/P&gt;&lt;P&gt;Report 5049 has an older report ID = 5046.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hence, the &lt;STRONG&gt;final report 5158 has an original report = 5046&lt;/STRONG&gt;. I need to create a mapping table where, when it's Report ID=5158, the second field returns 5046 instead of 5069. Can this be done with a do-while loop? I tried the below but it's not working - &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let i=0;&lt;/P&gt;&lt;P&gt;let Id=5158;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;do while isnull(Id)=0 //only loop if older report ID exists.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;mappreviousform:&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;load&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;RecNo() as Row,&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;Code, //Report ID&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Id&amp;nbsp;&amp;nbsp;&amp;nbsp; //Older Report ID&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;resident cachebyid&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;where Type=6&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;and Code='$(Id)' //Assign older report ID to current Report ID field&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;Order by Code desc;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;let Id=peek('Id',recno()+$(i),'cachebyid'); //next older report ID&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;let i=$(i)+1;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;loop&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 13 Mar 2015 02:49:53 GMT</pubDate>
    <dc:creator>sifatnabil</dc:creator>
    <dc:date>2015-03-13T02:49:53Z</dc:date>
    <item>
      <title>Do While Loop to find original report</title>
      <link>https://community.qlik.com/t5/QlikView/Do-While-Loop-to-find-original-report/m-p/796049#M281246</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;I have this business requirement: &lt;/P&gt;&lt;P&gt;1. When a report is submitted, it generates a unique Report ID in the database.&lt;/P&gt;&lt;P&gt;2. When the same report is re-submitted, a new Report ID is generated, but this new report has a link to the older report ID.&lt;/P&gt;&lt;P&gt;3. If a report is re-submitted multiple times, each Report ID will have a link to its older report.&lt;/P&gt;&lt;P&gt;4. In the scenario of multiple submitted reports, how can we get the original report ID?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The database looks like this: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 168px;"&gt;&lt;TBODY&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD class="xl67" height="20" style="height: 15.0pt; width: 48pt;" width="64"&gt;Report ID&lt;/TD&gt;&lt;TD class="xl67" style="border-left: none; width: 78pt;" width="104"&gt;Older Report ID&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD align="right" class="xl68" height="20" style="height: 15.0pt; border-top: none;"&gt;&lt;SPAN style="color: #ff0000;"&gt;5158&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD align="right" class="xl68" style="border-top: none; border-left: none;"&gt;&lt;SPAN style="color: #ff0000;"&gt;5069&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD align="right" class="xl67" height="20" style="height: 15.0pt; border-top: none;"&gt;3414&lt;/TD&gt;&lt;TD align="right" class="xl67" style="border-top: none; border-left: none;"&gt;1544&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD align="right" class="xl68" height="20" style="height: 15.0pt; border-top: none;"&gt;&lt;SPAN style="color: #ff0000;"&gt;5069&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD align="right" class="xl68" style="border-top: none; border-left: none;"&gt;&lt;SPAN style="color: #ff0000;"&gt;5064&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD align="right" class="xl67" height="20" style="height: 15.0pt; border-top: none;"&gt;3256&lt;/TD&gt;&lt;TD align="right" class="xl67" style="border-top: none; border-left: none;"&gt;3252&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD align="right" class="xl67" height="20" style="height: 15.0pt; border-top: none;"&gt;4144&lt;/TD&gt;&lt;TD align="right" class="xl67" style="border-top: none; border-left: none;"&gt;2445&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD align="right" class="xl68" height="20" style="height: 15.0pt; border-top: none;"&gt;&lt;SPAN style="color: #ff0000;"&gt;5064&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD align="right" class="xl68" style="border-top: none; border-left: none;"&gt;&lt;SPAN style="color: #ff0000;"&gt;5049&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD align="right" class="xl68" height="20" style="height: 15.0pt; border-top: none;"&gt;&lt;SPAN style="color: #ff0000;"&gt;5049&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD align="right" class="xl68" style="border-top: none; border-left: none;"&gt;&lt;SPAN style="color: #ff0000;"&gt;5046&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the above table (&lt;SPAN style="color: #ff0000;"&gt;in red&lt;/SPAN&gt;), report 5158 has an older report ID = 5069.&lt;/P&gt;&lt;P&gt;Report 5069 has an older report ID = 5064.&lt;/P&gt;&lt;P&gt;Report 5064 has an older report ID = 5049.&lt;/P&gt;&lt;P&gt;Report 5049 has an older report ID = 5046.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hence, the &lt;STRONG&gt;final report 5158 has an original report = 5046&lt;/STRONG&gt;. I need to create a mapping table where, when it's Report ID=5158, the second field returns 5046 instead of 5069. Can this be done with a do-while loop? I tried the below but it's not working - &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let i=0;&lt;/P&gt;&lt;P&gt;let Id=5158;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;do while isnull(Id)=0 //only loop if older report ID exists.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;mappreviousform:&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;load&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;RecNo() as Row,&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;Code, //Report ID&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Id&amp;nbsp;&amp;nbsp;&amp;nbsp; //Older Report ID&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;resident cachebyid&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;where Type=6&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;and Code='$(Id)' //Assign older report ID to current Report ID field&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;Order by Code desc;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;let Id=peek('Id',recno()+$(i),'cachebyid'); //next older report ID&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;let i=$(i)+1;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;loop&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Mar 2015 02:49:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Do-While-Loop-to-find-original-report/m-p/796049#M281246</guid>
      <dc:creator>sifatnabil</dc:creator>
      <dc:date>2015-03-13T02:49:53Z</dc:date>
    </item>
    <item>
      <title>Re: Do While Loop to find original report</title>
      <link>https://community.qlik.com/t5/QlikView/Do-While-Loop-to-find-original-report/m-p/796050#M281247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the hierarchy function. See this blog post for more information on that function: &lt;A _jive_internal="true" class="font-color-normal" href="https://community.qlik.com/blogs/qlikviewdesignblog/2013/11/11/unbalanced-n-level-hierarchies" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3d3d3d;"&gt;Unbalanced, n-level hierarchies&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Mar 2015 06:55:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Do-While-Loop-to-find-original-report/m-p/796050#M281247</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-03-13T06:55:54Z</dc:date>
    </item>
    <item>
      <title>Re: Do While Loop to find original report</title>
      <link>https://community.qlik.com/t5/QlikView/Do-While-Loop-to-find-original-report/m-p/796051#M281248</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Gysbert. Actually, I tried doing this in Microsoft SQL and it works, however I can't make it work on Qlikview because of the semicolon endings in the script I wrote. Do you know a way to keep semicolons in the SQL without Qlikview terminating the script?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Mar 2015 06:59:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Do-While-Loop-to-find-original-report/m-p/796051#M281248</guid>
      <dc:creator>sifatnabil</dc:creator>
      <dc:date>2015-03-13T06:59:15Z</dc:date>
    </item>
    <item>
      <title>Re: Do While Loop to find original report</title>
      <link>https://community.qlik.com/t5/QlikView/Do-While-Loop-to-find-original-report/m-p/796052#M281249</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f6f6f6;"&gt;Use the hierarchy function. See this blog post for more information on that function: &lt;/SPAN&gt;&lt;A _jive_internal="true" data-containerid="2588" data-containertype="37" data-objectid="3433" data-objecttype="38" href="https://community.qlik.com/blogs/qlikviewdesignblog/2013/11/11/unbalanced-n-level-hierarchies" style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3778c7; background-color: #f6f6f6;"&gt;Unbalanced, n-level hierarchies&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Mar 2015 07:10:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Do-While-Loop-to-find-original-report/m-p/796052#M281249</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-03-13T07:10:55Z</dc:date>
    </item>
    <item>
      <title>Re: Do While Loop to find original report</title>
      <link>https://community.qlik.com/t5/QlikView/Do-While-Loop-to-find-original-report/m-p/796053#M281250</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry &lt;A href="https://community.qlik.com/qlik-users/96544"&gt;gwassenaar&lt;/A&gt; looks like you repeated your original answer. I am trying to prevent Qlikview load script from ending an SQL statement which has a semicolon in between - is there a way to do this? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Mar 2015 07:57:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Do-While-Loop-to-find-original-report/m-p/796053#M281250</guid>
      <dc:creator>sifatnabil</dc:creator>
      <dc:date>2015-03-13T07:57:43Z</dc:date>
    </item>
    <item>
      <title>Re: Do While Loop to find original report</title>
      <link>https://community.qlik.com/t5/QlikView/Do-While-Loop-to-find-original-report/m-p/796054#M281251</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, I repeated my answer because you should consider using the hierarchy function instead of trying to code a loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No. If you want multiple sql statements to be executed as a single statement then you will have to create a stored procedure or a function for that in your source database.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Mar 2015 08:02:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Do-While-Loop-to-find-original-report/m-p/796054#M281251</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-03-13T08:02:08Z</dc:date>
    </item>
  </channel>
</rss>

