<?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: prj folders not moving the variable values in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/prj-folders-not-moving-the-variable-values/m-p/769499#M1031780</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV class="table-wrap"&gt;&lt;TABLE class="confluenceTable"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="confluenceTd"&gt;&lt;DIV class="table-wrap"&gt;&lt;TABLE class="confluenceTable"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="confluenceTd"&gt;&lt;DIV class="sfdc_richtext"&gt;Variable values are not stored in the project folder XML files, hence it is not possible to recover them if the QVW file gets deleted or corrupted. &lt;P&gt;&lt;/P&gt;To prevent the loss of variable values, the current variables can be exported to a QVD during application reload. The QVD can then later be used to recover the previous variable values. &lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;STRONG&gt;Store all application variables to QVD file&lt;/STRONG&gt;&lt;P&gt;&lt;/P&gt;The below script loads all defined variables from the AllProperties.XML file in the QlikView project (PRJ) folder. This script should be loaded along with the application linked to the PRJ folder, since the variable values are stored in that QVW file. All the variables found in the AllProperties.XML are extracted and stored into a QVD file called Variables.qvd. &lt;P&gt;&lt;/P&gt;To be on the safe side this script could be included all reloads, so that the variables can be restored even if the QVW file gets corrupted or deleted. &lt;BR /&gt; &lt;P&gt;&lt;/P&gt; &lt;DIV&gt;VariableNames:&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD &lt;/STRONG&gt;Name &lt;STRONG&gt;AS &lt;/STRONG&gt;VariableName&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM &lt;/STRONG&gt;[MyApplication-prj\AllProperties.xml] (XmlSimple, Table is [AllProperties/VariableProperties/VariableProperties]);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FOR &lt;/STRONG&gt;i=0 &lt;STRONG&gt;TO &lt;/STRONG&gt;NoOfRows('VariableNames')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;LET &lt;/STRONG&gt;varName = Peek('VariableName', $(i), 'VariableNames');&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;LET &lt;/STRONG&gt;varValue = $(varName);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Variables:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp; LOAD&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '$(varName)' AS VariableName,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '$(varValue)' AS VariableValue&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; AutoGenerate 1;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;NEXT&lt;/STRONG&gt;&lt;/P&gt;&lt;BR /&gt;&lt;STRONG&gt;STORE&lt;/STRONG&gt; Variables INTO Variables.qvd (QVD);&lt;P&gt;&lt;/P&gt;&lt;STRONG&gt;DROP&lt;/STRONG&gt; Tables VariableNames, Variables;&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;STRONG&gt;Restore all application variables from a QVD file&lt;/STRONG&gt;&lt;P&gt;&lt;/P&gt;The variables stored in the QVD file in the above example can be restored by the principle below. The QVD is loaded and then the variables are picked out one by one and defined in the application. This script should only be executed on loads where the variables should be recovered. &lt;P&gt;&lt;/P&gt; &lt;BR /&gt;Variables:&lt;BR /&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt; VariableName,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VariableValue&lt;BR /&gt;FROM Variables.qvd (qvd);&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;STRONG&gt;FOR&lt;/STRONG&gt; &lt;STRONG&gt;&lt;EM&gt;i&lt;/EM&gt;&lt;/STRONG&gt;=0 TO NoOfRows('Variables')&lt;P&gt;&lt;/P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;LET&lt;/STRONG&gt; &lt;STRONG&gt;&lt;EM&gt;vVar&lt;/EM&gt;&lt;/STRONG&gt; = Peek('VariableName', &lt;STRONG&gt;&lt;EM&gt;$(i)&lt;/EM&gt;&lt;/STRONG&gt;, 'Variables');&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;LET&lt;/STRONG&gt; &lt;STRONG&gt;&lt;EM&gt;vVal&lt;/EM&gt;&lt;/STRONG&gt; = Peek('VariableValue', &lt;STRONG&gt;&lt;EM&gt;$(i)&lt;/EM&gt;&lt;/STRONG&gt;, 'Variables');&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;LET&lt;/STRONG&gt; &lt;STRONG&gt;&lt;EM&gt;'$(vVar)'&lt;/EM&gt;&lt;/STRONG&gt; = '$(vVal)';&lt;P&gt;&lt;/P&gt;&lt;STRONG&gt;NEXT &lt;/STRONG&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 09 Feb 2015 12:47:34 GMT</pubDate>
    <dc:creator>AbhijitBansode</dc:creator>
    <dc:date>2015-02-09T12:47:34Z</dc:date>
    <item>
      <title>prj folders not moving the variable values</title>
      <link>https://community.qlik.com/t5/QlikView/prj-folders-not-moving-the-variable-values/m-p/769495#M1031773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I already read some threads about moving the variable values in prj folders.I created the same code which is explained in this &lt;/SPAN&gt;&lt;A class="jive-link-wiki-small" data-containerid="2049" data-containertype="14" data-objectid="7168" data-objecttype="102" href="http://community.qlik.com/docs/DOC-7168"&gt;http://community.qlik.com/docs/DOC-7168&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it seems not working for me at the moment.Let me explain what I am doing here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have used the same code in the layout,and ran the script.I had copied the prj folder to another location and there I created a new qlikview document with the same name(except prj) and ran the script again..Here I don't see the variable values in the layout as well as in the new qvd.But I can see the variable values in the qvd which was generated in my original location.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please check and confirm what I am doing wrong here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Jeba&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Feb 2015 12:31:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/prj-folders-not-moving-the-variable-values/m-p/769495#M1031773</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-09T12:31:10Z</dc:date>
    </item>
    <item>
      <title>Re: prj folders not moving the variable values</title>
      <link>https://community.qlik.com/t5/QlikView/prj-folders-not-moving-the-variable-values/m-p/769496#M1031774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I roughly remember as this may be related to QV version.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Test with a newer one if it's kind of older.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Serhan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Feb 2015 12:41:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/prj-folders-not-moving-the-variable-values/m-p/769496#M1031774</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-09T12:41:19Z</dc:date>
    </item>
    <item>
      <title>Re: prj folders not moving the variable values</title>
      <link>https://community.qlik.com/t5/QlikView/prj-folders-not-moving-the-variable-values/m-p/769497#M1031775</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;The document in &lt;A href="https://community.qlik.com/docs/DOC-7168"&gt;How to store and recover variables&lt;/A&gt; contains two script snippets for you to incorporate on your code. You run the Store Variables part from a QV document that has variable values. You run only the Recover Variables tab to recover the variable values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your case i think you are running the entire script in the new location, so you are writing empty values to the QVD and then reading those empty values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Feb 2015 12:41:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/prj-folders-not-moving-the-variable-values/m-p/769497#M1031775</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-02-09T12:41:56Z</dc:date>
    </item>
    <item>
      <title>Re: prj folders not moving the variable values</title>
      <link>https://community.qlik.com/t5/QlikView/prj-folders-not-moving-the-variable-values/m-p/769498#M1031777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jonathan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am into SVN testing project.I am only moving the prj folder and creating a new qlikview document from there from the moved prj folder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not sure how to move only the qvd which was generated in the previous instance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please guide&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Jeba&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Feb 2015 12:46:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/prj-folders-not-moving-the-variable-values/m-p/769498#M1031777</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-09T12:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: prj folders not moving the variable values</title>
      <link>https://community.qlik.com/t5/QlikView/prj-folders-not-moving-the-variable-values/m-p/769499#M1031780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV class="table-wrap"&gt;&lt;TABLE class="confluenceTable"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="confluenceTd"&gt;&lt;DIV class="table-wrap"&gt;&lt;TABLE class="confluenceTable"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="confluenceTd"&gt;&lt;DIV class="sfdc_richtext"&gt;Variable values are not stored in the project folder XML files, hence it is not possible to recover them if the QVW file gets deleted or corrupted. &lt;P&gt;&lt;/P&gt;To prevent the loss of variable values, the current variables can be exported to a QVD during application reload. The QVD can then later be used to recover the previous variable values. &lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;STRONG&gt;Store all application variables to QVD file&lt;/STRONG&gt;&lt;P&gt;&lt;/P&gt;The below script loads all defined variables from the AllProperties.XML file in the QlikView project (PRJ) folder. This script should be loaded along with the application linked to the PRJ folder, since the variable values are stored in that QVW file. All the variables found in the AllProperties.XML are extracted and stored into a QVD file called Variables.qvd. &lt;P&gt;&lt;/P&gt;To be on the safe side this script could be included all reloads, so that the variables can be restored even if the QVW file gets corrupted or deleted. &lt;BR /&gt; &lt;P&gt;&lt;/P&gt; &lt;DIV&gt;VariableNames:&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD &lt;/STRONG&gt;Name &lt;STRONG&gt;AS &lt;/STRONG&gt;VariableName&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM &lt;/STRONG&gt;[MyApplication-prj\AllProperties.xml] (XmlSimple, Table is [AllProperties/VariableProperties/VariableProperties]);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FOR &lt;/STRONG&gt;i=0 &lt;STRONG&gt;TO &lt;/STRONG&gt;NoOfRows('VariableNames')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;LET &lt;/STRONG&gt;varName = Peek('VariableName', $(i), 'VariableNames');&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;LET &lt;/STRONG&gt;varValue = $(varName);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Variables:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp; LOAD&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '$(varName)' AS VariableName,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '$(varValue)' AS VariableValue&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; AutoGenerate 1;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;NEXT&lt;/STRONG&gt;&lt;/P&gt;&lt;BR /&gt;&lt;STRONG&gt;STORE&lt;/STRONG&gt; Variables INTO Variables.qvd (QVD);&lt;P&gt;&lt;/P&gt;&lt;STRONG&gt;DROP&lt;/STRONG&gt; Tables VariableNames, Variables;&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;STRONG&gt;Restore all application variables from a QVD file&lt;/STRONG&gt;&lt;P&gt;&lt;/P&gt;The variables stored in the QVD file in the above example can be restored by the principle below. The QVD is loaded and then the variables are picked out one by one and defined in the application. This script should only be executed on loads where the variables should be recovered. &lt;P&gt;&lt;/P&gt; &lt;BR /&gt;Variables:&lt;BR /&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt; VariableName,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VariableValue&lt;BR /&gt;FROM Variables.qvd (qvd);&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;STRONG&gt;FOR&lt;/STRONG&gt; &lt;STRONG&gt;&lt;EM&gt;i&lt;/EM&gt;&lt;/STRONG&gt;=0 TO NoOfRows('Variables')&lt;P&gt;&lt;/P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;LET&lt;/STRONG&gt; &lt;STRONG&gt;&lt;EM&gt;vVar&lt;/EM&gt;&lt;/STRONG&gt; = Peek('VariableName', &lt;STRONG&gt;&lt;EM&gt;$(i)&lt;/EM&gt;&lt;/STRONG&gt;, 'Variables');&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;LET&lt;/STRONG&gt; &lt;STRONG&gt;&lt;EM&gt;vVal&lt;/EM&gt;&lt;/STRONG&gt; = Peek('VariableValue', &lt;STRONG&gt;&lt;EM&gt;$(i)&lt;/EM&gt;&lt;/STRONG&gt;, 'Variables');&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;LET&lt;/STRONG&gt; &lt;STRONG&gt;&lt;EM&gt;'$(vVar)'&lt;/EM&gt;&lt;/STRONG&gt; = '$(vVal)';&lt;P&gt;&lt;/P&gt;&lt;STRONG&gt;NEXT &lt;/STRONG&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Feb 2015 12:47:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/prj-folders-not-moving-the-variable-values/m-p/769499#M1031780</guid>
      <dc:creator>AbhijitBansode</dc:creator>
      <dc:date>2015-02-09T12:47:34Z</dc:date>
    </item>
    <item>
      <title>Re: prj folders not moving the variable values</title>
      <link>https://community.qlik.com/t5/QlikView/prj-folders-not-moving-the-variable-values/m-p/769500#M1031781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abhijit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Creating the variable qvd and calling the same qvd works fine already.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However in this scanario I am not loading the qvd back again.I am only moving the prj folder and creating the layout from the prj folder.As Jonathan said I am reloading the same layout with empty values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any other alternate way to achieve this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Jeba&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Feb 2015 12:55:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/prj-folders-not-moving-the-variable-values/m-p/769500#M1031781</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-09T12:55:11Z</dc:date>
    </item>
    <item>
      <title>Re: prj folders not moving the variable values</title>
      <link>https://community.qlik.com/t5/QlikView/prj-folders-not-moving-the-variable-values/m-p/769501#M1031782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;any help will be highly appreciated&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Feb 2015 15:54:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/prj-folders-not-moving-the-variable-values/m-p/769501#M1031782</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-09T15:54:19Z</dc:date>
    </item>
    <item>
      <title>Re: prj folders not moving the variable values</title>
      <link>https://community.qlik.com/t5/QlikView/prj-folders-not-moving-the-variable-values/m-p/769502#M1031783</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vDocumentPath = DocumentPath();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VariableNames:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; [Name] as VariableName&lt;/P&gt;&lt;P&gt;FROM&amp;nbsp; $(vDocumentPath) (XmlSimple, Table is [DocumentSummary/VariableDescription]);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR i=0 TO NoOfRows('VariableNames')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LET varName = Peek('VariableName', $(i), 'VariableNames');&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LET varValue = $(varName); &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Variables:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; LOAD // Load the variable name and value into a table&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '$(varName)' AS VariableName,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '$(varValue)' AS VariableValue&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; AutoGenerate 1;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NEXT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE Variables INTO Variables.qvd (QVD); &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP Tables VariableNames, Variables; // Drop the tables&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 Mar 2015 12:23:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/prj-folders-not-moving-the-variable-values/m-p/769502#M1031783</guid>
      <dc:creator>simsondevadoss</dc:creator>
      <dc:date>2015-03-22T12:23:59Z</dc:date>
    </item>
  </channel>
</rss>

