<?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: GetHyperCubeData, how to find the path to a hypercube? (C#) in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/GetHyperCubeData-how-to-find-the-path-to-a-hypercube-C/m-p/1434630#M9017</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also, with the new version of the &lt;A href="https://community.qlik.com/docs/DOC-17475"&gt;Qlik Explorer for Developers is here!&lt;/A&gt;‌‌‌ tool that was just released, you can navigate through the JSON structure of properties and layouts. The path to individual JSON properties can be inspected choosing the "id" template and selecting the node you are interested in like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="HypercubeProperty.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/178153_HypercubeProperty.png" style="height: auto; width: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 29 Sep 2017 11:44:10 GMT</pubDate>
    <dc:creator>Øystein_Kolsrud</dc:creator>
    <dc:date>2017-09-29T11:44:10Z</dc:date>
    <item>
      <title>GetHyperCubeData, how to find the path to a hypercube? (C#)</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/GetHyperCubeData-how-to-find-the-path-to-a-hypercube-C/m-p/1434627#M9014</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;GetHyperCubeData(string path, IEnumerable&amp;lt;Nxpage&amp;gt; pages). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am looking for a specific visualisation's Hypercube. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i find the path to a specific Hypercube? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2017 12:55:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/GetHyperCubeData-how-to-find-the-path-to-a-hypercube-C/m-p/1434627#M9014</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-09-28T12:55:14Z</dc:date>
    </item>
    <item>
      <title>Re: GetHyperCubeData, how to find the path to a hypercube? (C#)</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/GetHyperCubeData-how-to-find-the-path-to-a-hypercube-C/m-p/1434628#M9015</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How many cubes do you have in the object? You could use hits method: &lt;A href="http://help.qlik.com/en-US/sense-developer/June2017/apis/net%20sdk/html/M_Qlik_Engine_GenericObject_GetAllHyperCubePagers.htm" title="http://help.qlik.com/en-US/sense-developer/June2017/apis/net%20sdk/html/M_Qlik_Engine_GenericObject_GetAllHyperCubePagers.htm"&gt;GenericObject.GetAllHyperCubePagers Method&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have just a single cube then you could do like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="c#" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_15066683263168913 jive_text_macro" jivemacro_uid="_15066683263168913"&gt;
&lt;P&gt;var path = myObject.GetAllHyperCubePagers().Single().Path;&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But if you just want to get the data, then you might want to go directly through the pager object instead of looking up the path. For example like this::&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="c#" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_15066684505385293" jivemacro_uid="_15066684505385293"&gt;
&lt;P&gt;var pager = myObject.GetAllHyperCubePagers().Single();&lt;/P&gt;
&lt;P&gt;var data = pager.GetData(&amp;lt;mypages&amp;gt;);&lt;/P&gt;

&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Sep 2017 07:02:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/GetHyperCubeData-how-to-find-the-path-to-a-hypercube-C/m-p/1434628#M9015</guid>
      <dc:creator>Øystein_Kolsrud</dc:creator>
      <dc:date>2017-09-29T07:02:07Z</dc:date>
    </item>
    <item>
      <title>Re: GetHyperCubeData, how to find the path to a hypercube? (C#)</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/GetHyperCubeData-how-to-find-the-path-to-a-hypercube-C/m-p/1434629#M9016</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your relpy, this works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i couldn't find this solution in the .net api documentation of Qlik Sense.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Sep 2017 08:22:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/GetHyperCubeData-how-to-find-the-path-to-a-hypercube-C/m-p/1434629#M9016</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-09-29T08:22:11Z</dc:date>
    </item>
    <item>
      <title>Re: GetHyperCubeData, how to find the path to a hypercube? (C#)</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/GetHyperCubeData-how-to-find-the-path-to-a-hypercube-C/m-p/1434630#M9017</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also, with the new version of the &lt;A href="https://community.qlik.com/docs/DOC-17475"&gt;Qlik Explorer for Developers is here!&lt;/A&gt;‌‌‌ tool that was just released, you can navigate through the JSON structure of properties and layouts. The path to individual JSON properties can be inspected choosing the "id" template and selecting the node you are interested in like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="HypercubeProperty.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/178153_HypercubeProperty.png" style="height: auto; width: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Sep 2017 11:44:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/GetHyperCubeData-how-to-find-the-path-to-a-hypercube-C/m-p/1434630#M9017</guid>
      <dc:creator>Øystein_Kolsrud</dc:creator>
      <dc:date>2017-09-29T11:44:10Z</dc:date>
    </item>
  </channel>
</rss>

