<?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: Hi Gurus, in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Building-query-builder-based-on-table-column-parameters-with-out/m-p/1231843#M392473</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks you Grossi! I was able to achieve the desired functionality with few modifications.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Feb 2017 13:32:21 GMT</pubDate>
    <dc:creator>vkolasani</dc:creator>
    <dc:date>2017-02-22T13:32:21Z</dc:date>
    <item>
      <title>Building query builder based on table, column parameters with out building QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Building-query-builder-based-on-table-column-parameters-with-out/m-p/1231840#M392470</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: 'book antiqua', palatino;"&gt;I have scenario to develop a query builder based on the database, table parameters.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'book antiqua', palatino;"&gt;For example:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'book antiqua', palatino;"&gt;&lt;STRONG&gt;vdatabasename, &lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;STRONG&gt;vTablename, vPrimarykey &lt;/STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; etc and based on these inputs we should be able to develop something which should generate the simple queries.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: 'book antiqua', palatino;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: 'book antiqua', palatino;"&gt;select count(*) from vdatabasename.vtablename&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: 'book antiqua', palatino;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;SPAN style="font-size: 10pt; font-family: 'book antiqua', palatino;"&gt;select vprimarykey, count(*) from &lt;SPAN style="font-size: 13.3333px;"&gt;vdatabasename.vtablename&lt;/SPAN&gt; group by &lt;SPAN style="font-size: 13.3333px;"&gt;vprimarykey&lt;/SPAN&gt; having count(*)&amp;gt;1; etc&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-size: 10pt; font-family: 'book antiqua', palatino;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-size: 10pt; font-family: 'book antiqua', palatino;"&gt;Goal Qlikview should accept the database, table, primary key etc parameters and generate the queries.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-size: 10pt; font-family: 'book antiqua', palatino;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-size: 10pt; font-family: 'book antiqua', palatino;"&gt;any inputs on this would be a great help!!!!&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-size: 10pt; font-family: 'book antiqua', palatino;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-size: 10pt; font-family: 'book antiqua', palatino;"&gt;Thanks,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN style="font-family: 'book antiqua', palatino;"&gt;Venu&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Feb 2017 20:33:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Building-query-builder-based-on-table-column-parameters-with-out/m-p/1231840#M392470</guid>
      <dc:creator>vkolasani</dc:creator>
      <dc:date>2017-02-20T20:33:05Z</dc:date>
    </item>
    <item>
      <title>Re: Hi Gurus,</title>
      <link>https://community.qlik.com/t5/QlikView/Building-query-builder-based-on-table-column-parameters-with-out/m-p/1231841#M392471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;maybe with a loop on a table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;// CONNECT ....&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;d:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;load * inline [&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;vdatabasename, vTablename, vPrimarykey &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;db1, tb1, pk1&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;db2, tb2, pk2&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;db3, tb3, pk3&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;FOR i=0 TO NoOfRows('d') -1 &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; LET vdb=Peek('vdatabasename', $(i), 'd' );&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; LET vtb=Peek('vTablename', $(i), 'd' );&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; TRACE $(vdb);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt; &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; SET vsql1 = select count(*) from $(vdb).$(vtb) ;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; TRACE $(vsql1);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; SQL $(vsql1) ;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;NEXT&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Feb 2017 20:43:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Building-query-builder-based-on-table-column-parameters-with-out/m-p/1231841#M392471</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2017-02-20T20:43:46Z</dc:date>
    </item>
    <item>
      <title>Re: Hi Gurus,</title>
      <link>https://community.qlik.com/t5/QlikView/Building-query-builder-based-on-table-column-parameters-with-out/m-p/1231842#M392472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Grossi!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will test and let you know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Venu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Feb 2017 20:50:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Building-query-builder-based-on-table-column-parameters-with-out/m-p/1231842#M392472</guid>
      <dc:creator>vkolasani</dc:creator>
      <dc:date>2017-02-20T20:50:09Z</dc:date>
    </item>
    <item>
      <title>Re: Hi Gurus,</title>
      <link>https://community.qlik.com/t5/QlikView/Building-query-builder-based-on-table-column-parameters-with-out/m-p/1231843#M392473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks you Grossi! I was able to achieve the desired functionality with few modifications.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Feb 2017 13:32:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Building-query-builder-based-on-table-column-parameters-with-out/m-p/1231843#M392473</guid>
      <dc:creator>vkolasani</dc:creator>
      <dc:date>2017-02-22T13:32:21Z</dc:date>
    </item>
  </channel>
</rss>

