<?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: QVD in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/QVD/m-p/535211#M199958</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Merci pour ta reponse Phillipe , c'est bien ce que je voulais faire &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sinon j'ai autre question est ce&amp;nbsp; qu'a partir de la table client on&amp;nbsp; peut copier que&amp;nbsp;&amp;nbsp; quelques champs tels que le nom prenom , num securité social ??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Oct 2013 14:53:13 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-10-09T14:53:13Z</dc:date>
    <item>
      <title>QVD</title>
      <link>https://community.qlik.com/t5/QlikView/QVD/m-p/535202#M199949</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;I'm newbie in dev with QLIK VIEW and I have some&amp;nbsp; qestions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have two tables client.xls &amp;amp;&amp;nbsp; banke.xls&lt;/P&gt;&lt;P&gt;what I want to do is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create qvd ( store client into client.qvd(qvd);&lt;/P&gt;&lt;P&gt;after i want to do a test &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if client.qvd exist so i 'll compare with clients.xls t o see if we have the same number of elements . else 0&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt; if there have not QvL file&amp;nbsp; then i i want to&amp;nbsp; create a new table: client_save (this table will be&amp;nbsp; a reference table)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;thanks&amp;nbsp; for your help&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Oct 2013 13:59:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD/m-p/535202#M199949</guid>
      <dc:creator />
      <dc:date>2013-10-09T13:59:50Z</dc:date>
    </item>
    <item>
      <title>Re: QVD</title>
      <link>https://community.qlik.com/t5/QlikView/QVD/m-p/535203#M199950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use a check of the qvdCreateDate to confirm existance of the file:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Check to see if the file exists&lt;/P&gt;&lt;P&gt;IF (NOT isNull(qvdCreateTime('client.qvd'))) THEN &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //DO STUFF&lt;/P&gt;&lt;P&gt;End if&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Oct 2013 14:05:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD/m-p/535203#M199950</guid>
      <dc:creator>ThornOfCrowns</dc:creator>
      <dc:date>2013-10-09T14:05:38Z</dc:date>
    </item>
    <item>
      <title>Re: QVD</title>
      <link>https://community.qlik.com/t5/QlikView/QVD/m-p/535204#M199951</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Soufiane,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Although I am not quite sure what you mean in your last sentence "&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;EM&gt;if there have not QvL file&amp;nbsp; then i i want to&amp;nbsp; create a new table: client_save (this table will be&amp;nbsp; a reference table)&lt;/EM&gt;&lt;/SPAN&gt;", maybe this can help?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ClientsTable:&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;From C:\MyDir\Clients.xls (biff, embedded labels, table is [Sheet1$]);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE ClientsTable into C:\MyDir\Clients.qvd (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF QvdNoOfRecords('C:\MyDir\Clients.qvd') &amp;lt;&amp;gt; NoOfRows('ClientsTable') then&lt;/P&gt;&lt;P&gt;&amp;nbsp; // This is where the number of records is different&lt;/P&gt;&lt;P&gt;ELSE&lt;/P&gt;&lt;P&gt;&amp;nbsp; // This is where the number of records is the same&lt;/P&gt;&lt;P&gt;ENDIF&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;Philippe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Oct 2013 14:15:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD/m-p/535204#M199951</guid>
      <dc:creator>pgrenier</dc:creator>
      <dc:date>2013-10-09T14:15:01Z</dc:date>
    </item>
    <item>
      <title>Re: QVD</title>
      <link>https://community.qlik.com/t5/QlikView/QVD/m-p/535205#M199952</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IT DOES NOT WORK &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;QV doesn't creat client-reference .qvd &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and how to compare if i have the same numbre of elements in client.xls and client.qvd&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF (NOT isNull(qvdCreateTime('client.qvd'))) THEN&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOAD * FROM client.qvd (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ELSE &lt;/P&gt;&lt;P&gt;STORE clientinto client_reference.qvd(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you man &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Oct 2013 14:15:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD/m-p/535205#M199952</guid>
      <dc:creator />
      <dc:date>2013-10-09T14:15:16Z</dc:date>
    </item>
    <item>
      <title>Re: QVD</title>
      <link>https://community.qlik.com/t5/QlikView/QVD/m-p/535206#M199953</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does the script drop through the IF statement to the ELSE line?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Oct 2013 14:29:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD/m-p/535206#M199953</guid>
      <dc:creator>ThornOfCrowns</dc:creator>
      <dc:date>2013-10-09T14:29:09Z</dc:date>
    </item>
    <item>
      <title>Re: QVD</title>
      <link>https://community.qlik.com/t5/QlikView/QVD/m-p/535207#M199954</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Phillipe , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ce que je voudrais c'est que &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;je vais chercher dans mon répertoire si je trouve par exemple client.qvd alors je compare le nombre d'elements de ce fichier avec le nombre d’éléments du fichier client .xls que j'ai déjà loader , c'est une facon de verifier que qvd a ete bien creer &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sinon et ben je fais une&amp;nbsp; copie de la table client tous simplement et cette nouvelle table je la nommerais client_reference&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS : je suis pas&amp;nbsp; un pro anglais c'est pour ca que tu as pas compris ma question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Merci d'avance &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Oct 2013 14:31:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD/m-p/535207#M199954</guid>
      <dc:creator />
      <dc:date>2013-10-09T14:31:02Z</dc:date>
    </item>
    <item>
      <title>Re: QVD</title>
      <link>https://community.qlik.com/t5/QlikView/QVD/m-p/535208#M199955</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;James &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The script compile , but i dont find client-reference .qvd &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Oct 2013 14:32:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD/m-p/535208#M199955</guid>
      <dc:creator />
      <dc:date>2013-10-09T14:32:47Z</dc:date>
    </item>
    <item>
      <title>Re: QVD</title>
      <link>https://community.qlik.com/t5/QlikView/QVD/m-p/535209#M199956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bonjour Soufiane,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Merci pour la clarification &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Voici le script mis à jour selon ma compréhension des besoins:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Chargement des clients depuis un fichier excel&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Clients&lt;/SPAN&gt;:&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD *&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;From C:\MyDir\Clients.xls (biff, embedded labels, table is [Sheet1$]);&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;// Comparaison du nombre d'entrées client dans le fichier QVD existant avec le nombre de clients lus plus haut&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;IF QvdNoOfRecords('C:\MyDir\Clients.qvd') &amp;lt;&amp;gt; NoOfRows('&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Clients&lt;/SPAN&gt;') then&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; // Soit le nombre de clients est différent, soit le fichier QVD est absent&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; // Création du fichier QVD à partir des clients lus depuis Client.xls&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;STORE &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Clients&lt;/SPAN&gt; into C:\MyDir\Clients.qvd (qvd);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;ELSE&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; // Création d'une copie de la table Clients nommée client_reference&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; client_reference:&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; NoConcatenate LOAD *&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; Resident Clients;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;ENDIF&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Cordialement,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Philippe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Oct 2013 14:40:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD/m-p/535209#M199956</guid>
      <dc:creator>pgrenier</dc:creator>
      <dc:date>2013-10-09T14:40:09Z</dc:date>
    </item>
    <item>
      <title>Re: QVD</title>
      <link>https://community.qlik.com/t5/QlikView/QVD/m-p/535210#M199957</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Using the full file path, as Phillipe suggests should fix your problem, I think. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Oct 2013 14:41:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD/m-p/535210#M199957</guid>
      <dc:creator>ThornOfCrowns</dc:creator>
      <dc:date>2013-10-09T14:41:28Z</dc:date>
    </item>
    <item>
      <title>Re: QVD</title>
      <link>https://community.qlik.com/t5/QlikView/QVD/m-p/535211#M199958</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Merci pour ta reponse Phillipe , c'est bien ce que je voulais faire &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sinon j'ai autre question est ce&amp;nbsp; qu'a partir de la table client on&amp;nbsp; peut copier que&amp;nbsp;&amp;nbsp; quelques champs tels que le nom prenom , num securité social ??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Oct 2013 14:53:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD/m-p/535211#M199958</guid>
      <dc:creator />
      <dc:date>2013-10-09T14:53:13Z</dc:date>
    </item>
    <item>
      <title>Re: QVD</title>
      <link>https://community.qlik.com/t5/QlikView/QVD/m-p/535212#M199959</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good idea , Thank u james &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Oct 2013 14:53:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD/m-p/535212#M199959</guid>
      <dc:creator />
      <dc:date>2013-10-09T14:53:38Z</dc:date>
    </item>
    <item>
      <title>Re: QVD</title>
      <link>https://community.qlik.com/t5/QlikView/QVD/m-p/535213#M199960</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bonjour Soufiane,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bien sur, il suffit simplement de spécifier quels champs sont désirés dans l'instruction LOAD, tel que:&lt;/P&gt;&lt;P&gt;client_reference:&lt;/P&gt;&lt;P&gt;LOAD Nom, Prenom, NAS // Selon les bons noms de champs&lt;/P&gt;&lt;P&gt;Resident Clients;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dans ce cas précis, l'instruction NoConcatenate n'est plus nécessaire car les deux tables n'ont pas les mêmes champs. Par défaut, si QlikView détecte que deux tables ont la même structure de champs, il va les concatener ensemble dans la première table créée, d'où la présence du NoConcatenate dans mon exemple précédent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;À titre de rappel, il ne faut pas oublier de retirer la table Clients lorsque celle-ci n'est plus nécessaire &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cordialement,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Philippe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Oct 2013 15:01:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD/m-p/535213#M199960</guid>
      <dc:creator>pgrenier</dc:creator>
      <dc:date>2013-10-09T15:01:43Z</dc:date>
    </item>
    <item>
      <title>Re: QVD</title>
      <link>https://community.qlik.com/t5/QlikView/QVD/m-p/535214#M199961</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Merci Philippe&amp;nbsp; tu m'as vraiment aider &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Oct 2013 15:10:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD/m-p/535214#M199961</guid>
      <dc:creator />
      <dc:date>2013-10-09T15:10:43Z</dc:date>
    </item>
    <item>
      <title>Re: QVD</title>
      <link>https://community.qlik.com/t5/QlikView/QVD/m-p/535215#M199962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Il n'y a pas de quoi Soufiane &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;N'hésite pas à marquer l'une des contribitions dans l'ensemble de toutes celles fournies en tant que réponse correcte afin de marquer le sujet en tant que répondu &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cordialement,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Philippe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Oct 2013 15:14:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD/m-p/535215#M199962</guid>
      <dc:creator>pgrenier</dc:creator>
      <dc:date>2013-10-09T15:14:46Z</dc:date>
    </item>
  </channel>
</rss>

