<?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 Need help on synthetic keys! in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Need-help-on-synthetic-keys/m-p/245124#M1205924</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks all for your help. I fugured out how to solve the issue thanks to your answers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 01 Mar 2010 09:28:12 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-03-01T09:28:12Z</dc:date>
    <item>
      <title>Need help on synthetic keys!</title>
      <link>https://community.qlik.com/t5/QlikView/Need-help-on-synthetic-keys/m-p/245120#M1205920</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 need the output of the table in the file as it is, but I am not able to get rid of the synthetic key in the script.&lt;/P&gt;&lt;P&gt;The problem is that I need the table to show 0 hours even when there is no record.&lt;/P&gt;&lt;P&gt;I solved it but I don´t like the solution.&lt;/P&gt;&lt;P&gt;Any suggestions??&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Feb 2010 18:37:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-help-on-synthetic-keys/m-p/245120#M1205920</guid>
      <dc:creator />
      <dc:date>2010-02-25T18:37:26Z</dc:date>
    </item>
    <item>
      <title>Need help on synthetic keys!</title>
      <link>https://community.qlik.com/t5/QlikView/Need-help-on-synthetic-keys/m-p/245121#M1205921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Anyone..?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Feb 2010 12:25:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-help-on-synthetic-keys/m-p/245121#M1205921</guid>
      <dc:creator />
      <dc:date>2010-02-26T12:25:25Z</dc:date>
    </item>
    <item>
      <title>Need help on synthetic keys!</title>
      <link>https://community.qlik.com/t5/QlikView/Need-help-on-synthetic-keys/m-p/245122#M1205922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try that one ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;planning:&lt;BR /&gt;qualify "Quincena","Horas";&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt; Quincena, IDlink, Horas,&lt;BR /&gt; JUN08Q1, 0001, 2&lt;BR /&gt; JUN08Q2, 0001, 8&lt;BR /&gt; JUN08Q2, 0001, 25&lt;BR /&gt; JUN08Q1, 0002, 1&lt;BR /&gt;];&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Im not surely understand what is the main purpose of your report but if the main problem was synthetic key you should use qualify or alias to get rid off systentic key.&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Önder ALTINBILEK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Feb 2010 13:04:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-help-on-synthetic-keys/m-p/245122#M1205922</guid>
      <dc:creator />
      <dc:date>2010-02-26T13:04:11Z</dc:date>
    </item>
    <item>
      <title>Need help on synthetic keys!</title>
      <link>https://community.qlik.com/t5/QlikView/Need-help-on-synthetic-keys/m-p/245123#M1205923</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can also create a composite key consisting of the fields Quincena, Horas and IDlink.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;HORAS0:&lt;BR /&gt;Load&lt;BR /&gt; Quincena&amp;amp;'|'&amp;amp;Empleado&amp;amp;'|'&amp;amp;Horas AS CompKey,&lt;BR /&gt; NQuincena,&lt;BR /&gt; Quincena,&lt;BR /&gt; Horas,&lt;BR /&gt; HorasMAX,&lt;BR /&gt; Empleado as IDlink&lt;BR /&gt;resident HORAS0temp;&lt;BR /&gt;Drop table HORAS0temp;&lt;BR /&gt;&lt;BR /&gt;planning:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt; CompKey&lt;BR /&gt; JUN08Q1|0001|2&lt;BR /&gt; JUN08Q2|0001|8&lt;BR /&gt; JUN08Q2|0001|25&lt;BR /&gt; JUN08Q1|0002|1&lt;BR /&gt;];&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;You can still add the fields as separate fields to the inline table of course. But change the names so they are not the same in both tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Feb 2010 13:19:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-help-on-synthetic-keys/m-p/245123#M1205923</guid>
      <dc:creator />
      <dc:date>2010-02-26T13:19:04Z</dc:date>
    </item>
    <item>
      <title>Need help on synthetic keys!</title>
      <link>https://community.qlik.com/t5/QlikView/Need-help-on-synthetic-keys/m-p/245124#M1205924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks all for your help. I fugured out how to solve the issue thanks to your answers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Mar 2010 09:28:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-help-on-synthetic-keys/m-p/245124#M1205924</guid>
      <dc:creator />
      <dc:date>2010-03-01T09:28:12Z</dc:date>
    </item>
    <item>
      <title>Need help on synthetic keys!</title>
      <link>https://community.qlik.com/t5/QlikView/Need-help-on-synthetic-keys/m-p/245125#M1205925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sjoerd,&lt;/P&gt;&lt;P&gt;Can you please share how you resolved this issue. I am also facing synthetic key problem. Let me know how to resolved the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jun 2010 12:06:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-help-on-synthetic-keys/m-p/245125#M1205925</guid>
      <dc:creator />
      <dc:date>2010-06-29T12:06:18Z</dc:date>
    </item>
    <item>
      <title>Need help on synthetic keys!</title>
      <link>https://community.qlik.com/t5/QlikView/Need-help-on-synthetic-keys/m-p/245126#M1205926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sjoerd,&lt;/P&gt;&lt;P&gt;Can you please share how you resolved this issue. I am also facing synthetic key problem. Let me know how to resolved the same.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2012 15:26:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-help-on-synthetic-keys/m-p/245126#M1205926</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2012-04-20T15:26:58Z</dc:date>
    </item>
  </channel>
</rss>

