<?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 Inputfield error in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Inputfield-error/m-p/243864#M93078</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Thanks for your response Ivan&lt;/P&gt;&lt;P&gt; I am yet to check the data duplication. Will check&amp;nbsp; and update u&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 27 May 2011 08:29:30 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-05-27T08:29:30Z</dc:date>
    <item>
      <title>Inputfield error</title>
      <link>https://community.qlik.com/t5/QlikView/Inputfield-error/m-p/243859#M93073</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;When we are using the inputfield we are getting &lt;STRONG&gt;error as Duplicate Key using input field and relaod is getting failed&lt;/STRONG&gt;. &lt;/P&gt;&lt;P&gt;Note: We are using the input field against the Resident table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Any idea when we will be getting error.&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;/P&gt;&lt;P&gt;We are using QlikView 10 version.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 May 2011 14:38:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Inputfield-error/m-p/243859#M93073</guid>
      <dc:creator />
      <dc:date>2011-05-26T14:38:40Z</dc:date>
    </item>
    <item>
      <title>Inputfield error</title>
      <link>https://community.qlik.com/t5/QlikView/Inputfield-error/m-p/243860#M93074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you upload an QVW example?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Mickaël.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 May 2011 15:30:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Inputfield-error/m-p/243860#M93074</guid>
      <dc:creator />
      <dc:date>2011-05-26T15:30:55Z</dc:date>
    </item>
    <item>
      <title>Inputfield error</title>
      <link>https://community.qlik.com/t5/QlikView/Inputfield-error/m-p/243861#M93075</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;at first, do you have version 10, SR2? Can you upload the part of your script? Remind, that inputfields can only entered in ONE table at the end of the script, like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;Load Field1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Field2 as Inputfield,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // or 0 As Inputfield or '' As Inputfield&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;Resident Table;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 May 2011 15:59:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Inputfield-error/m-p/243861#M93075</guid>
      <dc:creator>brenner_martina</dc:creator>
      <dc:date>2011-05-26T15:59:04Z</dc:date>
    </item>
    <item>
      <title>Inputfield error</title>
      <link>https://community.qlik.com/t5/QlikView/Inputfield-error/m-p/243862#M93076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there, I have run across the same script error, it basically means that you have two or more identical rows within the same table, causing qlikview to be confused on how to assign the same inputfield value to a number of those identical rows, it is impossible for qlikview to make that decision beause of the associative model. The solution I found is to aggregate the data by all the dimensions within the table, in order to guarantee one single row for each dimension combinations, like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;inputfield Amount;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load dim1, dim2, dimn, sum(Amount) as Amount&lt;/P&gt;&lt;P&gt;from A&lt;/P&gt;&lt;P&gt;group by dim1, dim2, dimn;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Notice the the group by statement can cause qlikview to use a lot of RAM memory when working with large amount of data, also, the reload time may degrade significantly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 May 2011 16:59:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Inputfield-error/m-p/243862#M93076</guid>
      <dc:creator />
      <dc:date>2011-05-26T16:59:45Z</dc:date>
    </item>
    <item>
      <title>Inputfield error</title>
      <link>https://community.qlik.com/t5/QlikView/Inputfield-error/m-p/243863#M93077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ivan,&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had a similar issue during one of the application buildout.&amp;nbsp; We later noticed that the field name we were declaring at inputfield had presence in more than one table and we had to rename the field name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check for any duplication of field names.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raghav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 May 2011 08:19:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Inputfield-error/m-p/243863#M93077</guid>
      <dc:creator>raghavsurya</dc:creator>
      <dc:date>2011-05-27T08:19:23Z</dc:date>
    </item>
    <item>
      <title>Inputfield error</title>
      <link>https://community.qlik.com/t5/QlikView/Inputfield-error/m-p/243864#M93078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Thanks for your response Ivan&lt;/P&gt;&lt;P&gt; I am yet to check the data duplication. Will check&amp;nbsp; and update u&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 May 2011 08:29:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Inputfield-error/m-p/243864#M93078</guid>
      <dc:creator />
      <dc:date>2011-05-27T08:29:30Z</dc:date>
    </item>
  </channel>
</rss>

