<?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: Join on table containing input fields - a bug ? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Join-on-table-containing-input-fields-a-bug/m-p/469420#M695822</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Steve,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the response. It was just the requirement to create a single table, thats why i was looking for a join.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 18 Apr 2013 19:43:14 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-04-18T19:43:14Z</dc:date>
    <item>
      <title>Join on table containing input fields - a bug ?</title>
      <link>https://community.qlik.com/t5/QlikView/Join-on-table-containing-input-fields-a-bug/m-p/469415#M695817</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 have a simple table containing an input field. When that table is used as a source for join on another table, the data inside the input field changes to row numbers. Please see the attached qvw and let me know if there is a workaround possible to maintain the data along with the join.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's the script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INPUTFIELD ProductThreshold;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ProductThresholds:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;ProductName, ProductThreshold&lt;/P&gt;&lt;P&gt;P1, -0.025&lt;/P&gt;&lt;P&gt;P2, -0.5&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ProductDim:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;ProductName&lt;/P&gt;&lt;P&gt;P1&lt;/P&gt;&lt;P&gt;P2&lt;/P&gt;&lt;P&gt;P3&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LEFT JOIN(ProductDim)&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;Resident&lt;/P&gt;&lt;P&gt;ProductThresholds;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP TABLE ProductThresholds;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Apr 2013 19:17:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-on-table-containing-input-fields-a-bug/m-p/469415#M695817</guid>
      <dc:creator />
      <dc:date>2013-04-18T19:17:46Z</dc:date>
    </item>
    <item>
      <title>Re: Join on table containing input fields - a bug ?</title>
      <link>https://community.qlik.com/t5/QlikView/Join-on-table-containing-input-fields-a-bug/m-p/469416#M695818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As you noticed a join will change the table. A resident load from the table has the same effect. The workaround is to store the table into a qvd directly after creating it, then dropping it and at the end of the script load the table again from the qvd. But don't join it, that will simply disable the input field again. If you need it in one table then first create the joined table, store that table into a qvd and drop it, then define the input field and load the table from the qvd.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Apr 2013 19:27:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-on-table-containing-input-fields-a-bug/m-p/469416#M695818</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2013-04-18T19:27:59Z</dc:date>
    </item>
    <item>
      <title>Re: Join on table containing input fields - a bug ?</title>
      <link>https://community.qlik.com/t5/QlikView/Join-on-table-containing-input-fields-a-bug/m-p/469417#M695819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gysbert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your response. However, which table are you referring to ? I tried the following two approaches but both did not work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Storing ProductThresholds into qvd and doing a left join on ProductDim directly from ProductThresholds.qvd&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INPUTFIELD ProductThreshold;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;ProductThresholds:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;ProductName, ProductThreshold&lt;/P&gt;&lt;P&gt;P1, -0.025&lt;/P&gt;&lt;P&gt;P2, -0.5&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ProductDim:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;ProductName&lt;/P&gt;&lt;P&gt;P1&lt;/P&gt;&lt;P&gt;P2&lt;/P&gt;&lt;P&gt;P3&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;STORE ProductThresholds INTO ProductThresholds.qvd;&lt;/P&gt;&lt;P&gt;DROP TABLE ProductThresholds;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;LEFT JOIN(ProductDim)&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;From&lt;/P&gt;&lt;P&gt;ProductThresholds.qvd (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. I also tried storing ProductDim after joining with ProductThresholds into qvd, dropping it and loading it back like this -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INPUTFIELD ProductThreshold;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ProductThresholds:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;ProductName, ProductThreshold&lt;/P&gt;&lt;P&gt;P1, -0.025&lt;/P&gt;&lt;P&gt;P2, -0.5&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ProductDim:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;ProductName&lt;/P&gt;&lt;P&gt;P1&lt;/P&gt;&lt;P&gt;P2&lt;/P&gt;&lt;P&gt;P3&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LEFT JOIN(ProductDim)&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;Resident&lt;/P&gt;&lt;P&gt;ProductThresholds;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;STORE ProductDim INTO ProductDim.qvd;&lt;/P&gt;&lt;P&gt;DROP TABLE ProductDim;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ProductDim:&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;ProductDim.qvd(qvd);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Apr 2013 19:37:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-on-table-containing-input-fields-a-bug/m-p/469417#M695819</guid>
      <dc:creator />
      <dc:date>2013-04-18T19:37:04Z</dc:date>
    </item>
    <item>
      <title>Re: Join on table containing input fields - a bug ?</title>
      <link>https://community.qlik.com/t5/QlikView/Join-on-table-containing-input-fields-a-bug/m-p/469418#M695820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just a thought.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you use just this:&lt;/P&gt;&lt;P&gt;INPUTFIELD ProductThreshold;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ProductThresholds:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;ProductName, ProductThreshold&lt;/P&gt;&lt;P&gt;P1, -0.025&lt;/P&gt;&lt;P&gt;P2, -0.5&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ProductDim:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;ProductName&lt;/P&gt;&lt;P&gt;P1&lt;/P&gt;&lt;P&gt;P2&lt;/P&gt;&lt;P&gt;P3&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will have two tables but the desired results&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Apr 2013 19:39:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-on-table-containing-input-fields-a-bug/m-p/469418#M695820</guid>
      <dc:creator />
      <dc:date>2013-04-18T19:39:01Z</dc:date>
    </item>
    <item>
      <title>Re: Join on table containing input fields - a bug ?</title>
      <link>https://community.qlik.com/t5/QlikView/Join-on-table-containing-input-fields-a-bug/m-p/469419#M695821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gysbert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the idea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you suggested, the following worked -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ProductThresholds:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;ProductName, ProductThreshold&lt;/P&gt;&lt;P&gt;P1, -0.025&lt;/P&gt;&lt;P&gt;P2, -0.5&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ProductDim:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;ProductName&lt;/P&gt;&lt;P&gt;P1&lt;/P&gt;&lt;P&gt;P2&lt;/P&gt;&lt;P&gt;P3&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LEFT JOIN(ProductDim)&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;Resident&lt;/P&gt;&lt;P&gt;ProductThresholds;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE ProductDim INTO ProductDim.qvd;&lt;/P&gt;&lt;P&gt;DROP TABLE ProductDim;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INPUTFIELD ProductThreshold;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ProductDim:&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;Distinct *&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;ProductDim.qvd(qvd);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Apr 2013 19:40:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-on-table-containing-input-fields-a-bug/m-p/469419#M695821</guid>
      <dc:creator />
      <dc:date>2013-04-18T19:40:57Z</dc:date>
    </item>
    <item>
      <title>Re: Join on table containing input fields - a bug ?</title>
      <link>https://community.qlik.com/t5/QlikView/Join-on-table-containing-input-fields-a-bug/m-p/469420#M695822</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Steve,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the response. It was just the requirement to create a single table, thats why i was looking for a join.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Apr 2013 19:43:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-on-table-containing-input-fields-a-bug/m-p/469420#M695822</guid>
      <dc:creator />
      <dc:date>2013-04-18T19:43:14Z</dc:date>
    </item>
  </channel>
</rss>

