<?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: GetListObjectData how to find qPath on qlikCloud in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/GetListObjectData-how-to-find-qPath-on-qlikCloud/m-p/2494108#M21555</link>
    <description>&lt;P&gt;No, it's Windows only.&lt;/P&gt;</description>
    <pubDate>Fri, 22 Nov 2024 07:44:52 GMT</pubDate>
    <dc:creator>Øystein_Kolsrud</dc:creator>
    <dc:date>2024-11-22T07:44:52Z</dc:date>
    <item>
      <title>GetListObjectData how to find qPath on qlikCloud</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/GetListObjectData-how-to-find-qPath-on-qlikCloud/m-p/2493553#M21536</link>
      <description>&lt;P&gt;I have an object "mafAlmQ" that is a qType of filterpanel. I'm trying to get a list of all available selections but instead of getting a list, I got this error&amp;nbsp;&lt;FONT color="#FF0000"&gt;&lt;EM&gt;&lt;STRONG&gt;parameter: 'Sub object path not found'&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;        return global.openDoc(appId).then(async (docs) =&amp;gt; {
          object = await docs.getObject("mafALmQ");
          list = await object.getListObjectData("/qListObjectDef", [
            {
              qTop: 0,
              qHeight: 100,
              qLeft: 0,
              qWidth: 1,
            },
            {
              qTop: 0,
              qHeight: 100,
              qLeft: 0,
              qWidth: 1,
            },
          ]);
          console.log(list);
          session.close();
        });
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Base off the error, I believe that my qPath is wrong and I need to correct it but I don't know how to get the correct qPath. I'm using Qlik on Qlik Cloud and I've seen post that shows me how to get the qPath but it was through qlik sense like this &lt;A href="https://community.qlik.com/t5/Integration-Extension-APIs/GetHyperCubeData-how-to-find-the-path-to-a-hypercube-C/m-p/1434627" target="_blank" rel="noopener"&gt;https://community.qlik.com/t5/Integration-Extension-APIs/GetHyperCubeData-how-to-find-the-path-to-a-hypercube-C/m-p/1434627&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2024 20:04:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/GetListObjectData-how-to-find-qPath-on-qlikCloud/m-p/2493553#M21536</guid>
      <dc:creator>Vincent23</dc:creator>
      <dc:date>2024-11-19T20:04:30Z</dc:date>
    </item>
    <item>
      <title>Re: GetListObjectData how to find qPath on qlikCloud</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/GetListObjectData-how-to-find-qPath-on-qlikCloud/m-p/2493605#M21540</link>
      <description>&lt;P&gt;A filterpane doesn't have any "qListObjectDef" properties. The fields added to a filterpane are instead stored as children of the filterpane object. Those children are of type "listbox" and those objects in turn have the "qListObjectDef" structures you are looking for:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Filterpane.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/174606iABB050A7C0DA8EC8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Filterpane.png" alt="Filterpane.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;The tool used for navigating the object structure in the picture above can be downloaded from this location:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Sense-Documents/Qlik-Explorer-for-Developers/ta-p/1949809" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Sense-Documents/Qlik-Explorer-for-Developers/ta-p/1949809&lt;/A&gt;&lt;/P&gt;
&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2024 09:55:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/GetListObjectData-how-to-find-qPath-on-qlikCloud/m-p/2493605#M21540</guid>
      <dc:creator>Øystein_Kolsrud</dc:creator>
      <dc:date>2024-11-20T09:55:01Z</dc:date>
    </item>
    <item>
      <title>Re: GetListObjectData how to find qPath on qlikCloud</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/GetListObjectData-how-to-find-qPath-on-qlikCloud/m-p/2493965#M21550</link>
      <description>&lt;P&gt;Thanks for replying back&amp;nbsp;&lt;SPAN&gt;Øystein. Since I using a Mac, I wasn't able to run the Qlik-Explorer-for-Developer. Is there a mac executable?&lt;BR /&gt;&lt;BR /&gt;If not, I was able to get the the list by calling getFullPropertyTree with the filterpane object. The result should have a key called &lt;STRONG&gt;Children&amp;nbsp;&lt;/STRONG&gt;that contains the object &lt;STRONG&gt;listbox.&amp;nbsp;&lt;/STRONG&gt;Next you can grab the &lt;STRONG&gt;qId&amp;nbsp;&lt;/STRONG&gt;of the listbox and call getObject(qId) to get the listbox object. Finally run getListObjectData with the listbox object to get the list.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Nov 2024 15:42:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/GetListObjectData-how-to-find-qPath-on-qlikCloud/m-p/2493965#M21550</guid>
      <dc:creator>FleetSuccess_nposton</dc:creator>
      <dc:date>2024-11-25T15:42:44Z</dc:date>
    </item>
    <item>
      <title>Re: GetListObjectData how to find qPath on qlikCloud</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/GetListObjectData-how-to-find-qPath-on-qlikCloud/m-p/2494108#M21555</link>
      <description>&lt;P&gt;No, it's Windows only.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Nov 2024 07:44:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/GetListObjectData-how-to-find-qPath-on-qlikCloud/m-p/2494108#M21555</guid>
      <dc:creator>Øystein_Kolsrud</dc:creator>
      <dc:date>2024-11-22T07:44:52Z</dc:date>
    </item>
  </channel>
</rss>

