<?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: user level restriction using section access in Management &amp; Governance</title>
    <link>https://community.qlik.com/t5/Management-Governance/user-level-restriction-using-section-access/m-p/1820425#M30955</link>
    <description>&lt;P&gt;Thanks a lot!!! It worked for me &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 07 Jul 2021 14:06:09 GMT</pubDate>
    <dc:creator>Shriram_Sridhar</dc:creator>
    <dc:date>2021-07-07T14:06:09Z</dc:date>
    <item>
      <title>user level restriction using section access</title>
      <link>https://community.qlik.com/t5/Management-Governance/user-level-restriction-using-section-access/m-p/1820380#M30953</link>
      <description>&lt;P&gt;Hi All,&lt;BR /&gt;I was trying to implement section access to restrict what level of data a user can see. Let's take a scenario,&amp;nbsp; I want to restrict user view based on country and region.&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;User&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Country&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Region&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;A&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;India&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;All&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;B&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;USA&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Texas&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;C&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Canada&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;All&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;D&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;All&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;All&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Section Access;&lt;BR /&gt;security:&lt;/P&gt;&lt;P&gt;Load * Inline [&lt;BR /&gt;ACCESS,USERID, COUNTRY, REGION&lt;BR /&gt;USER,DOMAIN\A,INDIA,ALL&lt;BR /&gt;USER,DOMAIN\B,USA,TEXAS&lt;BR /&gt;USER,DOMAIN\C,CANADA,ALL&lt;BR /&gt;USER,DOMAIN\D,ALL,ALL&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;When I implement the above section access, all users see only USA and Texas. The issue occurs only when I add Region in section access.&amp;nbsp; Your help is much needed.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2025 17:03:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Management-Governance/user-level-restriction-using-section-access/m-p/1820380#M30953</guid>
      <dc:creator>Shriram_Sridhar</dc:creator>
      <dc:date>2025-01-29T17:03:10Z</dc:date>
    </item>
    <item>
      <title>Re: user level restriction using section access</title>
      <link>https://community.qlik.com/t5/Management-Governance/user-level-restriction-using-section-access/m-p/1820388#M30954</link>
      <description>&lt;P&gt;Hi, * could be used to give acess to all values in a field, but only to values loaded in the section access itself.&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/sense/February2021/Subsystems/Hub/Content/Sense_Hub/Scripting/Security/manage-security-with-section-access.htm" target="_blank"&gt;https://help.qlik.com/en-US/sense/February2021/Subsystems/Hub/Content/Sense_Hub/Scripting/Security/manage-security-with-section-access.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;To give access to all values of the field you can first load all values and then you can use *.&lt;/P&gt;&lt;P&gt;ie:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;AccessData:
LOAD 'USER' as ACCESS,
  'DOMAIN\ADMIN' as USER // or a dummy user that don't really exists
autogenerate 1;

Join (AccessData)
LOAd Distinct COUNTRY, REGION
FROM/resident [WhereValuesAreStored];

concatenate (AccessData)
Load * Inline [
ACCESS,USERID, COUNTRY, REGION
USER,DOMAIN\A,INDIA,*
USER,DOMAIN\B,USA,TEXAS
USER,DOMAIN\C,CANADA,*
USER,DOMAIN\D,*,*
];
&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 07 Jul 2021 13:02:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Management-Governance/user-level-restriction-using-section-access/m-p/1820388#M30954</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2021-07-07T13:02:03Z</dc:date>
    </item>
    <item>
      <title>Re: user level restriction using section access</title>
      <link>https://community.qlik.com/t5/Management-Governance/user-level-restriction-using-section-access/m-p/1820425#M30955</link>
      <description>&lt;P&gt;Thanks a lot!!! It worked for me &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jul 2021 14:06:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Management-Governance/user-level-restriction-using-section-access/m-p/1820425#M30955</guid>
      <dc:creator>Shriram_Sridhar</dc:creator>
      <dc:date>2021-07-07T14:06:09Z</dc:date>
    </item>
  </channel>
</rss>

