<?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: What are the possible values of qdata in qlik sense api engine? in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/What-are-the-possible-values-of-qdata-in-qlik-sense-api-engine/m-p/2057916#M18382</link>
    <description>&lt;P&gt;ok, thanks for your answers&lt;/P&gt;</description>
    <pubDate>Thu, 06 Apr 2023 11:09:18 GMT</pubDate>
    <dc:creator>sama007</dc:creator>
    <dc:date>2023-04-06T11:09:18Z</dc:date>
    <item>
      <title>What are the possible values of qdata in qlik sense api engine?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/What-are-the-possible-values-of-qdata-in-qlik-sense-api-engine/m-p/2056843#M18354</link>
      <description>&lt;P&gt;Hello, I'm trying to find the possible values of qdata but I can't find anything in the documentation. For example, on the internet, I found this query content:&lt;/P&gt;
&lt;P&gt;{&lt;/P&gt;
&lt;P&gt;qInfo: {&lt;/P&gt;
&lt;P&gt;qType: "MeasureList"&lt;/P&gt;
&lt;P&gt;},&lt;/P&gt;
&lt;P&gt;qMeasureListDef: {&lt;/P&gt;
&lt;P&gt;qType: "measure",&lt;/P&gt;
&lt;P&gt;qData: {&lt;/P&gt;
&lt;P&gt;qMeasure: "/qMeasure"&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;
&lt;P&gt;We see that a value is specified for qdata. Where can we find the set of possible values?&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2023 12:11:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/What-are-the-possible-values-of-qdata-in-qlik-sense-api-engine/m-p/2056843#M18354</guid>
      <dc:creator>sama007</dc:creator>
      <dc:date>2023-04-04T12:11:24Z</dc:date>
    </item>
    <item>
      <title>Re: What are the possible values of qdata in qlik sense api engine?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/What-are-the-possible-values-of-qdata-in-qlik-sense-api-engine/m-p/2056892#M18355</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/224820"&gt;@sama007&lt;/a&gt;&amp;nbsp;, great question!&lt;/P&gt;
&lt;P&gt;The &lt;A href="https://help.qlik.com/en-US/sense-developer/February2023/Subsystems/EngineAPI/Content/Sense_EngineAPI/GenericObject/overview-generic-object.htm" target="_blank" rel="noopener"&gt;Engine JSON API&lt;/A&gt;&amp;nbsp;allows for user created objects, in which qData itself can be dynamic.&lt;/P&gt;
&lt;P&gt;That being said, there is not yet a comprehensive list of predefined qData values that the Engine recognizes published anywhere - but we're working on changing that over on &lt;A href="https://qlik.dev" target="_blank" rel="noopener"&gt;qlik.dev&lt;/A&gt;&amp;nbsp;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_sunglasses:"&gt;😎&lt;/span&gt;.&lt;/P&gt;
&lt;P&gt;If you &lt;A href="https://help.qlik.com/en-US/search/?q=qdata" target="_self"&gt;search the Qlik help site&lt;/A&gt;, you can find lots of references to where our SDKs demonstrate different qData values, and you can &lt;A href="https://help.qlik.com/en-US/sense-developer/February2023/Subsystems/Dev-Hub/Content/Sense_Dev-Hub/EngineApiExplorer/engine-api-explorer.htm" target="_blank" rel="noopener"&gt;use the Engine API explorer&lt;/A&gt; to great effect as well.&lt;/P&gt;
&lt;P&gt;I hope this helps!&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2023 13:09:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/What-are-the-possible-values-of-qdata-in-qlik-sense-api-engine/m-p/2056892#M18355</guid>
      <dc:creator>jprdonnelly</dc:creator>
      <dc:date>2023-04-04T13:09:45Z</dc:date>
    </item>
    <item>
      <title>Re: What are the possible values of qdata in qlik sense api engine?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/What-are-the-possible-values-of-qdata-in-qlik-sense-api-engine/m-p/2056901#M18356</link>
      <description>&lt;P&gt;The qData property is a somewhat tricky one. It's sort of an open container that allows you to specify which parts of the layout of the structures you are listing you want to be able to access directly in the list. It's for instance used to get the titles of sheets if you have a sheet list, but you can get pretty much any part of the layout structure there. What you do is that you add a pointer to the structure in the properties of the object in qData, and then when you do GetLayout on the list you get the corresponding layout structures for all entities that are listed. So in your case, if you do:&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;{
  qData: {
    measure: "/qMeasureDef"
  }
}&lt;/LI-CODE&gt;
&lt;P&gt;Then what you'll get is the measure definitions of all library measures as part of the data of the layout of the list.&lt;/P&gt;
&lt;P&gt;It's somewhat confusing at first, but very powerful. I've been thinking of writing a blog post on this topic for a while but never gotten around to it. Perhaps I'll pick that up one of these days!&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2023 13:23:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/What-are-the-possible-values-of-qdata-in-qlik-sense-api-engine/m-p/2056901#M18356</guid>
      <dc:creator>Øystein_Kolsrud</dc:creator>
      <dc:date>2023-04-04T13:23:54Z</dc:date>
    </item>
    <item>
      <title>Re: What are the possible values of qdata in qlik sense api engine?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/What-are-the-possible-values-of-qdata-in-qlik-sense-api-engine/m-p/2057916#M18382</link>
      <description>&lt;P&gt;ok, thanks for your answers&lt;/P&gt;</description>
      <pubDate>Thu, 06 Apr 2023 11:09:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/What-are-the-possible-values-of-qdata-in-qlik-sense-api-engine/m-p/2057916#M18382</guid>
      <dc:creator>sama007</dc:creator>
      <dc:date>2023-04-06T11:09:18Z</dc:date>
    </item>
  </channel>
</rss>

