<?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: problem in script when converting QVX to Qvd in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/problem-in-script-when-converting-QVX-to-Qvd/m-p/850123#M655924</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Kummar Reddy.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First thing going to do is, check the quantity of row in table &lt;STRONG&gt;date_dim_label&lt;/STRONG&gt;, certainly is &lt;STRONG&gt;zero&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;After, the cause in table &lt;STRONG&gt;Inserts&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can help it,&amp;nbsp; insert a counter after comma(;).&amp;nbsp; E.g.:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET rowDate_dim_label = NoOfRows('date_dim_lead');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;trace 'Row in table date_dim_label' &amp;amp; $(&lt;SPAN style="font-size: 13.3333330154419px;"&gt;rowDate_dim_label&lt;/SPAN&gt;);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;P.S.:&lt;/STRONG&gt; Start file log in qvw;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 26 May 2015 13:49:11 GMT</pubDate>
    <dc:creator>jonas_rezende</dc:creator>
    <dc:date>2015-05-26T13:49:11Z</dc:date>
    <item>
      <title>problem in script when converting QVX to Qvd</title>
      <link>https://community.qlik.com/t5/QlikView/problem-in-script-when-converting-QVX-to-Qvd/m-p/850120#M655921</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 am facing problem with the script when converting from QVX to QVD.&amp;nbsp; The script i have written is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Let Vqvxpath = 'D:\QlikView\SourceDocuments\QVX\Mktg_Funnel_Prj\Site_Catalyst\';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Let Vqvdpath = 'D:\QlikView\SourceDocuments\QVD\Mktg_Funnel_Prj\Site_Catalyst\LoppQVD\';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Inserts:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD *&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;$(Vqvxpath)dim_lead_inserts.qvx(qvx);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;date_dim_lead:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Max(lead_record_updated_datetime) as dim_lead_Maxdate&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Resident Inserts;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LET VDate_dim_lead = Peek('dim_lead_Maxdate',0,'date_dim_lead');&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DROP Table date_dim_lead;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;STORE Inserts into $(Vqvdpath)dim_lead.QVD(qvd);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DROP Table Inserts;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Updates:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD *&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;$(Vqvxpath)dim_lead_updates.qvx(qvx)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Where (lead_record_updated_datetime &amp;gt;$(VDate_dim_lead));&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Concatenate&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD *&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;$(Vqvdpath)dim_lead.qvd(qvd)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Where not Exists(lead_key);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;STORE Updates into $(Vqvdpath)dim_lead.QVD(qvd);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DROP Table Updates;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I am getting below error like this. Pls help me on this one&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;IMG alt="" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/87507_pastedImage_2.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 May 2015 09:38:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/problem-in-script-when-converting-QVX-to-Qvd/m-p/850120#M655921</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-26T09:38:38Z</dc:date>
    </item>
    <item>
      <title>Re: problem in script when converting QVX to Qvd</title>
      <link>https://community.qlik.com/t5/QlikView/problem-in-script-when-converting-QVX-to-Qvd/m-p/850121#M655922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to have a space between the file extension and the (qvd) part of the expression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try changing your script to&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Concatenate&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD *&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;$(Vqvdpath)dim_lead.qvd (qvd)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Where not Exists(lead_key);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;STORE Updates into $(Vqvdpath)dim_lead.QVD (qvd);&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 May 2015 09:53:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/problem-in-script-when-converting-QVX-to-Qvd/m-p/850121#M655922</guid>
      <dc:creator>Colin-Albert</dc:creator>
      <dc:date>2015-05-26T09:53:19Z</dc:date>
    </item>
    <item>
      <title>Re: problem in script when converting QVX to Qvd</title>
      <link>https://community.qlik.com/t5/QlikView/problem-in-script-when-converting-QVX-to-Qvd/m-p/850122#M655923</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your variable &lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;VDate_dim_lead&lt;/STRONG&gt;&amp;nbsp; is empty, see the error message where(lead_record_updated_datetime &amp;gt;&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You probably need to format the contents of &lt;SPAN style="font-size: 13.3333330154419px;"&gt;lead_record_updated_datetime&lt;/SPAN&gt;&amp;nbsp; as date in this statement&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD Max(lead_record_updated_datetime)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 May 2015 10:00:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/problem-in-script-when-converting-QVX-to-Qvd/m-p/850122#M655923</guid>
      <dc:creator>stigchel</dc:creator>
      <dc:date>2015-05-26T10:00:28Z</dc:date>
    </item>
    <item>
      <title>Re: problem in script when converting QVX to Qvd</title>
      <link>https://community.qlik.com/t5/QlikView/problem-in-script-when-converting-QVX-to-Qvd/m-p/850123#M655924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Kummar Reddy.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First thing going to do is, check the quantity of row in table &lt;STRONG&gt;date_dim_label&lt;/STRONG&gt;, certainly is &lt;STRONG&gt;zero&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;After, the cause in table &lt;STRONG&gt;Inserts&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can help it,&amp;nbsp; insert a counter after comma(;).&amp;nbsp; E.g.:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET rowDate_dim_label = NoOfRows('date_dim_lead');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;trace 'Row in table date_dim_label' &amp;amp; $(&lt;SPAN style="font-size: 13.3333330154419px;"&gt;rowDate_dim_label&lt;/SPAN&gt;);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;P.S.:&lt;/STRONG&gt; Start file log in qvw;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 May 2015 13:49:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/problem-in-script-when-converting-QVX-to-Qvd/m-p/850123#M655924</guid>
      <dc:creator>jonas_rezende</dc:creator>
      <dc:date>2015-05-26T13:49:11Z</dc:date>
    </item>
  </channel>
</rss>

