<?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: Hiearchy treeview in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Hiearchy-treeview/m-p/416113#M485087</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;go to this link&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" class="loading" href="https://community.qlik.com/thread/60495"&gt;http://community.qlik.com/thread/60495&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 01 May 2013 09:40:40 GMT</pubDate>
    <dc:creator>er_mohit</dc:creator>
    <dc:date>2013-05-01T09:40:40Z</dc:date>
    <item>
      <title>Hiearchy treeview</title>
      <link>https://community.qlik.com/t5/QlikView/Hiearchy-treeview/m-p/416112#M485085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, i tried to make an hiearchy in my edit script, by reading some of the examples in here, but i cant seem to get it right.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So i hope someone can help me:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have this Table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;QUALIFY*;&lt;/P&gt;&lt;P&gt;UNQUALIFY SalesPhasesKey;&lt;/P&gt;&lt;P&gt;DimSalesPhases:&lt;/P&gt;&lt;P&gt;LOAD SalesPhasesKey,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FieldID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; OptionText,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; OptionID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; OptionID as ParentOptionID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Milestone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Phase;&lt;/P&gt;&lt;P&gt;SQL SELECT *&lt;/P&gt;&lt;P&gt;FROM Hej.dbo.DimSalesPhases;&lt;/P&gt;&lt;P&gt;UNQUALIFY*;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hiearcgy:&lt;/P&gt;&lt;P&gt;Hierarchy(HiaerOp,HiearParent,HiearMilestone,',HiearPhase, TreeView) &lt;/P&gt;&lt;P&gt;Load OptionID as HiaerOp, OptionID as HiearParent, DimSalesPhases.OptionID as HiearParent,DimSalesPhases.Milestone as HiearMilestone,DimSalesPhases.Phase as HiearPhase&lt;/P&gt;&lt;P&gt;Resident DimSalesPhases;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My OptionID is my ID for OptionText - How ever i have substringed my OptionText into to- Milestone and Phase&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 May 2013 09:08:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hiearchy-treeview/m-p/416112#M485085</guid>
      <dc:creator />
      <dc:date>2013-05-01T09:08:31Z</dc:date>
    </item>
    <item>
      <title>Re: Hiearchy treeview</title>
      <link>https://community.qlik.com/t5/QlikView/Hiearchy-treeview/m-p/416113#M485087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;go to this link&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" class="loading" href="https://community.qlik.com/thread/60495"&gt;http://community.qlik.com/thread/60495&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 May 2013 09:40:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hiearchy-treeview/m-p/416113#M485087</guid>
      <dc:creator>er_mohit</dc:creator>
      <dc:date>2013-05-01T09:40:40Z</dc:date>
    </item>
    <item>
      <title>Re: Hiearchy treeview</title>
      <link>https://community.qlik.com/t5/QlikView/Hiearchy-treeview/m-p/416114#M485089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you! I tried that link but could not get it to work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the document you posted helped me alot:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HierarchyTable:&lt;/P&gt;&lt;P&gt;Load distinct DimSalesPhases.Milestone as VALIE, DimSalesPhases.Milestone &amp;amp; '-Mile' as NODE_ID, DimSalesPhases.Phase &amp;amp; '-Phase' as PARENT_NODE_ID resident DimSalesPhases;&lt;/P&gt;&lt;P&gt;Load distinct DimSalesPhases.Phase as VALUE, DimSalesPhases.Phase &amp;amp; '-Phase' as NODE_ID, DimSalesPhases.Milestone &amp;amp; '-Mile' as PARENT_NODE_ID resident DimSalesPhases;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hiearchy_Table:&lt;/P&gt;&lt;P&gt;Hierarchy(NODE_ID_H,PARENT_NODE_ID_H,ID,PARENT_NAME,NAME,Treeview) Load &lt;/P&gt;&lt;P&gt;NODE_ID,&lt;/P&gt;&lt;P&gt;NODE_ID as NODE_ID_H,&lt;/P&gt;&lt;P&gt;PARENT_NODE_ID as PARENT_NODE_ID_H,&lt;/P&gt;&lt;P&gt;VALUE as ID,&lt;/P&gt;&lt;P&gt;VALUE as NAME&lt;/P&gt;&lt;P&gt;Resident HierarchyTable;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is what i finished with and then it worked - Thanks alot!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 May 2013 18:10:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hiearchy-treeview/m-p/416114#M485089</guid>
      <dc:creator />
      <dc:date>2013-05-01T18:10:47Z</dc:date>
    </item>
  </channel>
</rss>

