<?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 create qvs file from front end ? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-create-qvs-file-from-front-end/m-p/293169#M108803</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;There are several things here. Since you are reloading the document, and sicne the script excutes line by line, and since "FieldName" table has all the possible values for FieldName, you will always load all values from there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd use the following expression to get the values properly formatted:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;=Chr(34) &amp;amp; Concat(DISTINCT FieldName, chr(34) &amp;amp; chr(44) &amp;amp; chr(34)) &amp;amp; chr(34)&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But instead of using that LOAD in your script, I'd add that in a different macro&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;Sub LoadOnlySelected&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set docProps = ActiveDocument.GetProperties&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; docScript = docProps.Script&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; flds = ActiveDocument.Variables("vLoadMainFields").GetContent.String&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; '' This is added temporarily to the actual script&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; docScript = docScript &amp;amp; "LOAD " &amp;amp; flds &amp;amp; " AUTOGENERATE 1;" '' In my example I don't have any QVDs&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'MsgBox(docScript)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActiveDocument.SetProperties docProps&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActiveDocument.Reload&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set objFSO = CreateObject("Scripting.FileSystemObject")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set objFile = objFSO.CreateTextFile("C:\ScriptFile.txt")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; objFile.Write(docScript)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; objFile.Close&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set objFSO = nothing&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set objFile = nothing&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; '' reset variable&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActiveDocument.Variables("vLoadMainFields").SetContent "=chr(34) &amp;amp; GetFieldSelections(FieldName, chr(34) &amp;amp; chr(44) &amp;amp; chr(34)) &amp;amp; chr(34)", true&lt;/P&gt;&lt;P&gt;End Sub&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The result txt file will store the actual script plus the "LOAD A, B, C AUTOGENERATE 1;" line which should work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/people/mabaeyens" style="font-size: 12px; outline-style: none; padding-top: 1px; padding-bottom: 1px; padding-left: 17px; color: #007fc0; zoom: 1; background-position: no-repeat no-repeat;"&gt;Miguel Angel Baeyens&lt;/A&gt;&lt;/P&gt;&lt;P&gt;BI Consultant&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://www.grupocomex.com/" style="font-size: 12px; outline-style: none; color: #007fc0;"&gt;Comex Grupo Ibérica&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Jun 2011 21:55:49 GMT</pubDate>
    <dc:creator>Miguel_Angel_Baeyens</dc:creator>
    <dc:date>2011-06-16T21:55:49Z</dc:date>
    <item>
      <title>How to create qvs file from front end ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-qvs-file-from-front-end/m-p/293164#M108798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;- I had a qvw file with edit script.&lt;/P&gt;&lt;P&gt;- In front end&amp;nbsp; i'll take a button in sheet. When i click this button the editscrpit code should stored in qvs file of particular folder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I now how to generate qvs file manually.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i solve this problem from front end.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2011 05:34:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-qvs-file-from-front-end/m-p/293164#M108798</guid>
      <dc:creator>jagannalla</dc:creator>
      <dc:date>2011-06-16T05:34:08Z</dc:date>
    </item>
    <item>
      <title>How to create qvs file from front end ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-qvs-file-from-front-end/m-p/293165#M108799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not able to understand your question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to save the script in a qvs or txt file, you can do it in the script editor menu File -&amp;gt; Export to Script File&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2011 05:58:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-qvs-file-from-front-end/m-p/293165#M108799</guid>
      <dc:creator>nagaiank</dc:creator>
      <dc:date>2011-06-16T05:58:22Z</dc:date>
    </item>
    <item>
      <title>How to create qvs file from front end ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-qvs-file-from-front-end/m-p/293166#M108800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ya you are right...but i want to save the script in a qvs file by button click action.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to do it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2011 07:05:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-qvs-file-from-front-end/m-p/293166#M108800</guid>
      <dc:creator>jagannalla</dc:creator>
      <dc:date>2011-06-16T07:05:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to create qvs file from front end ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-qvs-file-from-front-end/m-p/293167#M108801</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;For what it's worth, although I've answered in a different &lt;A _jive_internal="true" href="https://community.qlik.com/message/124735#124735"&gt;thread&lt;/A&gt;, you can use the following macro code in a button, for example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;&lt;CODE class="jive-code"&gt;Sub SaveScript&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set docProps = ActiveDocument.GetProperties&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; docScript = docProps.Script&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ''MsgBox(docScript)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set objFSO = CreateObject("Scripting.FileSystemObject")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set objFile = objFSO.CreateTextFile("C:\ScriptFile.txt")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; objFile.Write(docScript)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; objFile.Close&lt;BR /&gt;End Sub&lt;/CODE&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/people/mabaeyens" style="font-size: 12px; outline-style: none; padding-top: 1px; padding-bottom: 1px; padding-left: 17px; color: #007fc0; zoom: 1; text-decoration: underline; background-position: no-repeat no-repeat;"&gt;Miguel Angel Baeyens&lt;/A&gt;&lt;/P&gt;&lt;P&gt;BI Consultant&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://www.grupocomex.com/" style="font-size: 12px; outline-style: none; color: #007fc0;"&gt;Comex Grupo Ibérica&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2011 09:38:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-qvs-file-from-front-end/m-p/293167#M108801</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2011-06-16T09:38:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to create qvs file from front end ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-qvs-file-from-front-end/m-p/293168#M108802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Miguel,&lt;/P&gt;&lt;P&gt;I need some more help from you. Your code is working fine but, i'm storing the script file based on front end filteration.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Wait I'll explain you breifly in the following points:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="5261" alt="Capture.PNG" class="jive-image" src="https://community.qlik.com/legacyfs/online/5261_Capture.PNG" /&gt;&lt;/P&gt;&lt;P&gt;- In sheet i had take the one list box(FieldName field) and button.&lt;/P&gt;&lt;P&gt;- I had created Main.qvd file with fields A,B,C,D and i loaded in the edit script like this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Main:&lt;/P&gt;&lt;P&gt;LOAD $(vLoadMainFields)&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;Main.qvd&lt;/P&gt;&lt;P&gt;(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- $(vLoadMainFields) this is variable i created in qvw file.&lt;/P&gt;&lt;P&gt;- In button i written a action for this variable like following code&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; variable: vLoadMainFields&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; value: =GetFieldSelections(FieldName,',')&lt;/P&gt;&lt;P&gt;- And written a macro to reload the qvw file and another macro to take back up of editscript(i.e., code given by u)&lt;/P&gt;&lt;P&gt;- Now i'm using the script file in another qvw file using &lt;STRONG&gt;Include &lt;/STRONG&gt;statement.&lt;/P&gt;&lt;P&gt;- when i reload this qvw file it shows error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;B'coz this qvw file don't now the variable $(vLoadMainFields).&lt;/P&gt;&lt;P&gt;I'm attaching my qvw file for your reference. &lt;/P&gt;&lt;P&gt;How can i overcome this..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2011 14:37:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-qvs-file-from-front-end/m-p/293168#M108802</guid>
      <dc:creator>jagannalla</dc:creator>
      <dc:date>2011-06-16T14:37:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to create qvs file from front end ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-qvs-file-from-front-end/m-p/293169#M108803</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;There are several things here. Since you are reloading the document, and sicne the script excutes line by line, and since "FieldName" table has all the possible values for FieldName, you will always load all values from there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd use the following expression to get the values properly formatted:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;=Chr(34) &amp;amp; Concat(DISTINCT FieldName, chr(34) &amp;amp; chr(44) &amp;amp; chr(34)) &amp;amp; chr(34)&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But instead of using that LOAD in your script, I'd add that in a different macro&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;Sub LoadOnlySelected&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set docProps = ActiveDocument.GetProperties&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; docScript = docProps.Script&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; flds = ActiveDocument.Variables("vLoadMainFields").GetContent.String&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; '' This is added temporarily to the actual script&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; docScript = docScript &amp;amp; "LOAD " &amp;amp; flds &amp;amp; " AUTOGENERATE 1;" '' In my example I don't have any QVDs&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'MsgBox(docScript)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActiveDocument.SetProperties docProps&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActiveDocument.Reload&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set objFSO = CreateObject("Scripting.FileSystemObject")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set objFile = objFSO.CreateTextFile("C:\ScriptFile.txt")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; objFile.Write(docScript)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; objFile.Close&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set objFSO = nothing&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set objFile = nothing&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; '' reset variable&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActiveDocument.Variables("vLoadMainFields").SetContent "=chr(34) &amp;amp; GetFieldSelections(FieldName, chr(34) &amp;amp; chr(44) &amp;amp; chr(34)) &amp;amp; chr(34)", true&lt;/P&gt;&lt;P&gt;End Sub&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The result txt file will store the actual script plus the "LOAD A, B, C AUTOGENERATE 1;" line which should work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/people/mabaeyens" style="font-size: 12px; outline-style: none; padding-top: 1px; padding-bottom: 1px; padding-left: 17px; color: #007fc0; zoom: 1; background-position: no-repeat no-repeat;"&gt;Miguel Angel Baeyens&lt;/A&gt;&lt;/P&gt;&lt;P&gt;BI Consultant&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://www.grupocomex.com/" style="font-size: 12px; outline-style: none; color: #007fc0;"&gt;Comex Grupo Ibérica&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2011 21:55:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-qvs-file-from-front-end/m-p/293169#M108803</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2011-06-16T21:55:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to create qvs file from front end ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-qvs-file-from-front-end/m-p/293170#M108804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Miguel,&lt;/P&gt;&lt;P&gt;Is it possible to transfer a variable from one qlikview file to another qlikview file with content of that variable.&lt;/P&gt;&lt;P&gt;Meanwhile i'll check your code..&lt;/P&gt;&lt;P&gt;Thanks a lot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2011 05:45:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-qvs-file-from-front-end/m-p/293170#M108804</guid>
      <dc:creator>jagannalla</dc:creator>
      <dc:date>2011-06-17T05:45:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to create qvs file from front end ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-qvs-file-from-front-end/m-p/293171#M108805</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;It's not possible, the same that when you copy an object (with dimensions and expressions) and if those fields don't exist in the destination document, the chart will render null or nothing or show some error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway, you can try to load those variables in a table and export or store this table into a text file, so you can use it later in an $(include=) in you script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/people/mabaeyens" style="font-size: 12px; outline-style: none; padding-top: 1px; padding-bottom: 1px; padding-left: 17px; color: #007fc0; zoom: 1; background-position: no-repeat no-repeat;"&gt;Miguel Angel Baeyens&lt;/A&gt;&lt;/P&gt;&lt;P&gt;BI Consultant&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://www.grupocomex.com/" style="font-size: 12px; outline-style: none; color: #007fc0; text-decoration: underline;"&gt;Comex Grupo Ibérica&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2011 06:15:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-qvs-file-from-front-end/m-p/293171#M108805</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2011-06-17T06:15:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to create qvs file from front end ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-qvs-file-from-front-end/m-p/293172#M108806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Miguel,&lt;/P&gt;&lt;P&gt;Yes your are right when we copy object without fields load in another qvw file, the chart shows null. Actually in previous posts i explained you that what ever i select in the listbox i'm storing in one global variable. When i click the button i should transfer to another qvw file along with this global variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now the think is i want to use this global variable in another qvw file to load qvd file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2011 06:37:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-qvs-file-from-front-end/m-p/293172#M108806</guid>
      <dc:creator>jagannalla</dc:creator>
      <dc:date>2011-06-17T06:37:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to create qvs file from front end ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-qvs-file-from-front-end/m-p/293173#M108807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Miguel,&lt;/P&gt;&lt;P&gt;I had seen the code in following link..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://qlikcommunity.org/forums/t/36985.aspx"&gt;http://qlikcommunity.org/forums/t/36985.aspx&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You see once and get back to me b'coz for me it is not working.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2011 07:33:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-qvs-file-from-front-end/m-p/293173#M108807</guid>
      <dc:creator>jagannalla</dc:creator>
      <dc:date>2011-06-17T07:33:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to create qvs file from front end ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-qvs-file-from-front-end/m-p/293174#M108808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there a way to do this process in a button via web browser?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2012 18:27:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-qvs-file-from-front-end/m-p/293174#M108808</guid>
      <dc:creator>hugo_andrade</dc:creator>
      <dc:date>2012-08-28T18:27:21Z</dc:date>
    </item>
  </channel>
</rss>

