<?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: Bring 2 dimensions to a ListObject in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/Bring-2-dimensions-to-a-ListObject/m-p/1340372#M7630</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Erik.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply.&amp;nbsp; I'm trying to figure out how would an expression work here.&amp;nbsp; I'm using the eachDataRow backend call to render the data on the screen.&amp;nbsp; How would I get the expression to return the associated prod type for each prod I get in the call ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you think a cyclic group would work here?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again.&lt;/P&gt;&lt;P&gt;Elias&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Aug 2017 18:56:26 GMT</pubDate>
    <dc:creator>eliasmazur</dc:creator>
    <dc:date>2017-08-03T18:56:26Z</dc:date>
    <item>
      <title>Bring 2 dimensions to a ListObject</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Bring-2-dimensions-to-a-ListObject/m-p/1340369#M7627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am developing a filter that needs to list the main dimension and an associated one.&amp;nbsp; For example, l want to list the products but I want to put the product type next to the list, like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Smart Phone (E)&lt;/P&gt;&lt;P&gt;MS Word (S)&lt;/P&gt;&lt;P&gt;Unix (O)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where E=electronic, S=software and O=op sys.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Both the prod name and type reside in the same table.&amp;nbsp; I would like to use a listobject instead of a hypercube.&amp;nbsp; Any ideas on how to get the second dimension (prod type) into the extension with the prod name?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Elias&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Aug 2017 21:19:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Bring-2-dimensions-to-a-ListObject/m-p/1340369#M7627</guid>
      <dc:creator>eliasmazur</dc:creator>
      <dc:date>2017-08-02T21:19:13Z</dc:date>
    </item>
    <item>
      <title>Re: Bring 2 dimensions to a ListObject</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Bring-2-dimensions-to-a-ListObject/m-p/1340370#M7628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Elias,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you could build this field in script like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load Product &amp;amp; '(' upper(left(ProductType,1)) &amp;amp; ')' as FilterField&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2017 05:26:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Bring-2-dimensions-to-a-ListObject/m-p/1340370#M7628</guid>
      <dc:creator>zhadrakas</dc:creator>
      <dc:date>2017-08-03T05:26:56Z</dc:date>
    </item>
    <item>
      <title>Re: Bring 2 dimensions to a ListObject</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Bring-2-dimensions-to-a-ListObject/m-p/1340371#M7629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Elias,&lt;/P&gt;&lt;P&gt;Another option is to use the qExpressions array in the &lt;A href="http://help.qlik.com/en-US/sense-developer/June2017/Subsystems/EngineAPI/Content/Structs/ListObjectDef.htm"&gt;ListObject.&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You might need to wrap the expression in a function (Only ??) to make this work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Erik Wetterberg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2017 14:33:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Bring-2-dimensions-to-a-ListObject/m-p/1340371#M7629</guid>
      <dc:creator>ErikWetterberg</dc:creator>
      <dc:date>2017-08-03T14:33:38Z</dc:date>
    </item>
    <item>
      <title>Re: Bring 2 dimensions to a ListObject</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Bring-2-dimensions-to-a-ListObject/m-p/1340372#M7630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Erik.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply.&amp;nbsp; I'm trying to figure out how would an expression work here.&amp;nbsp; I'm using the eachDataRow backend call to render the data on the screen.&amp;nbsp; How would I get the expression to return the associated prod type for each prod I get in the call ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you think a cyclic group would work here?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again.&lt;/P&gt;&lt;P&gt;Elias&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2017 18:56:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Bring-2-dimensions-to-a-ListObject/m-p/1340372#M7630</guid>
      <dc:creator>eliasmazur</dc:creator>
      <dc:date>2017-08-03T18:56:26Z</dc:date>
    </item>
  </channel>
</rss>

