<?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: Creating Section Access on Multiple Fields in one Dimension in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Creating-Section-Access-on-Multiple-Fields-in-one-Dimension/m-p/2514015#M105421</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/122749"&gt;@AnnaRodriguez&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;The below url may helps you,&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/QlikView-App-Dev/Section-Access-with-multiple-fields/td-p/452720" target="_blank"&gt;https://community.qlik.com/t5/QlikView-App-Dev/Section-Access-with-multiple-fields/td-p/452720&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 11 Apr 2025 11:28:28 GMT</pubDate>
    <dc:creator>krishna20</dc:creator>
    <dc:date>2025-04-11T11:28:28Z</dc:date>
    <item>
      <title>Creating Section Access on Multiple Fields in one Dimension</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-Section-Access-on-Multiple-Fields-in-one-Dimension/m-p/2513201#M105294</link>
      <description>&lt;P&gt;Our client has requested to change security on data to include multiple levels - which corresponds to the fields in Product Dimension.&lt;/P&gt;&lt;P&gt;Product Dimension has multiple fields, including ID1,ID2,ID3. Our current security is on ID1 only. The request is to change it so different combinations of access based on these 3 columns can be done. For instance:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;client A should have access to ID1 = 100 and all ID values within ID2 and ID3&lt;/LI&gt;&lt;LI&gt;client B should have access to ID1 = 100 and ID2 = 200 and all ID3 values&lt;/LI&gt;&lt;LI&gt;client C&amp;nbsp;should have access to ID1 = 100 and ID2 = 200 and ID3 = 300&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;I have created section access table that looks like below and tried testing ClientC access, but getting Access Denied message. Is there a limitation in Qlik that section access cannot be created on multiple fields w/n the same dimension (except only when those multiple fields are concatenated into 1 field)&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AnnaRodriguez_0-1743793446153.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/179389iA3839E89E56D4FCD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AnnaRodriguez_0-1743793446153.png" alt="AnnaRodriguez_0-1743793446153.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;In our process, we only get ID (or IDS) to be used for security. For instance, Client A was provided with ID1 = 100, which implied that all values available under ID2 and ID3 need to be accessible.&lt;/P&gt;&lt;P&gt;These IDs (especially ID2 and ID3) are not static and new IDs can be added at any time. How do I account for such setup to ensure that access is granted on different combinations of these IDs?&lt;/P&gt;</description>
      <pubDate>Fri, 04 Apr 2025 19:04:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-Section-Access-on-Multiple-Fields-in-one-Dimension/m-p/2513201#M105294</guid>
      <dc:creator>AnnaRodriguez</dc:creator>
      <dc:date>2025-04-04T19:04:45Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Section Access on Multiple Fields in one Dimension</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-Section-Access-on-Multiple-Fields-in-one-Dimension/m-p/2513224#M105297</link>
      <description>&lt;P&gt;Yes you can't use by default in qliksense&lt;/P&gt;&lt;P&gt;Try this&amp;nbsp;&lt;/P&gt;&lt;P&gt;Create a access composit key in your data model&amp;nbsp;&lt;/P&gt;&lt;P&gt;LOAD&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; *,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; ID1 &amp;amp; '|' &amp;amp; ID2 &amp;amp; '|' &amp;amp; ID3 AS ACCESS_KEY&lt;/P&gt;&lt;P&gt;RESIDENT Product;&lt;/P&gt;&lt;P&gt;SECTION ACCESS;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;ACCESS, USERID, ACCESS_KEY&lt;/P&gt;&lt;P&gt;USER, CLIENTA, 100|| // All values under 100 for ID1&lt;/P&gt;&lt;P&gt;USER, CLIENTB, 100|200|&lt;/P&gt;&lt;P&gt;USER, CLIENTC, 100|200|300&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SECTION APPLICATION;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 05 Apr 2025 13:18:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-Section-Access-on-Multiple-Fields-in-one-Dimension/m-p/2513224#M105297</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2025-04-05T13:18:05Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Section Access on Multiple Fields in one Dimension</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-Section-Access-on-Multiple-Fields-in-one-Dimension/m-p/2513411#M105327</link>
      <description>&lt;P&gt;Thank you for your suggestion, but unfortunately it did not work.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;When i added a composite key column ( ID1 &amp;amp; '|' &amp;amp; ID2 &amp;amp; '|' &amp;amp; ID3 ) to Product Dim, it created key with values for ID2 and ID3; which are never null.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Using ACCESS as ''100||' does not exist in DIM Products, and as such, access is denied.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Apr 2025 18:19:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-Section-Access-on-Multiple-Fields-in-one-Dimension/m-p/2513411#M105327</guid>
      <dc:creator>AnnaRodriguez</dc:creator>
      <dc:date>2025-04-07T18:19:57Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Section Access on Multiple Fields in one Dimension</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-Section-Access-on-Multiple-Fields-in-one-Dimension/m-p/2513491#M105336</link>
      <description>&lt;P&gt;I assume that I would start with a resolving of the crosstable-structure and then creating a composite key of the resulting ID-Type and Value - probably within a dummy-app without a section access just creating an appropriate table-box + few list-boxes to see if I could select my wanted scenarios respectively which values might be needed to populate. It wouldn't be a direct working section access solution but the main-logic should be working.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Apr 2025 11:09:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-Section-Access-on-Multiple-Fields-in-one-Dimension/m-p/2513491#M105336</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2025-04-08T11:09:32Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Section Access on Multiple Fields in one Dimension</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-Section-Access-on-Multiple-Fields-in-one-Dimension/m-p/2513876#M105396</link>
      <description>&lt;P&gt;Thank you all for contributing to my question. I wanted to know if there is any other way (besides building a composite key) to manage section access using multiple fields from one dimension (as i presented in the image). Apparently no, and we always need to build a composite key for such access. I had no issue building section access using composite key by using left join from bridge table to DIM product on ID1.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Question, I used AutoNumber on composite key to manage section access. Is there any difference in performance of the app if the section access table using a varchar value (ID1|ID2|ID3) or a numeric value (1,2,3,etc). The app is 4GB in size.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Apr 2025 14:39:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-Section-Access-on-Multiple-Fields-in-one-Dimension/m-p/2513876#M105396</guid>
      <dc:creator>AnnaRodriguez</dc:creator>
      <dc:date>2025-04-10T14:39:33Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Section Access on Multiple Fields in one Dimension</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-Section-Access-on-Multiple-Fields-in-one-Dimension/m-p/2513963#M105411</link>
      <description>&lt;P&gt;A composite key isn't mandatory else an appropriate hierarchy might be applied. If none exists and/or they isn't complete it will need some efforts to prepare the data. It's not trivial and is quite probably much more expensive as the above hinted approach. As a starting point you may look here:&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Design/Authorization-using-a-Hierarchy/ba-p/1476319" target="_blank"&gt;Authorization using a Hierarchy - Qlik Community - 1476319&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Using (autonumber) numeric values have always theoretical benefit against string-values but I doubt that this would be noticeable in this case. You may go in this direction after you have found and implemented as working solution and a real need to optimize the opening times.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Apr 2025 06:11:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-Section-Access-on-Multiple-Fields-in-one-Dimension/m-p/2513963#M105411</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2025-04-11T06:11:43Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Section Access on Multiple Fields in one Dimension</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-Section-Access-on-Multiple-Fields-in-one-Dimension/m-p/2514015#M105421</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/122749"&gt;@AnnaRodriguez&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;The below url may helps you,&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/QlikView-App-Dev/Section-Access-with-multiple-fields/td-p/452720" target="_blank"&gt;https://community.qlik.com/t5/QlikView-App-Dev/Section-Access-with-multiple-fields/td-p/452720&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Apr 2025 11:28:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-Section-Access-on-Multiple-Fields-in-one-Dimension/m-p/2514015#M105421</guid>
      <dc:creator>krishna20</dc:creator>
      <dc:date>2025-04-11T11:28:28Z</dc:date>
    </item>
  </channel>
</rss>

