<?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: Section Access restricting all user in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Section-Access-restricting-all-user/m-p/2103878#M90166</link>
    <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Star * consist values only listed in Section Access -table, so you have to list all CZYELSERVICE values which you want to include in *&lt;/P&gt;
&lt;P&gt;Other way is to declare user SDEC access as ADMIN.&lt;/P&gt;
&lt;P&gt;br,Anssi&lt;/P&gt;</description>
    <pubDate>Wed, 09 Aug 2023 08:08:02 GMT</pubDate>
    <dc:creator>Anssi</dc:creator>
    <dc:date>2023-08-09T08:08:02Z</dc:date>
    <item>
      <title>Section Access restricting all user</title>
      <link>https://community.qlik.com/t5/App-Development/Section-Access-restricting-all-user/m-p/2103407#M90136</link>
      <description>&lt;P&gt;Hi, can someone help me and explain where I am doing wrong?&lt;BR /&gt;When granting access, I restrict access to ALL users, not just qlik2.&lt;/P&gt;
&lt;P&gt;Values of ELSERVICE is only 0 and 1&lt;/P&gt;
&lt;P&gt;"*" should return all results, but if something is constrained then the second condition should be constraint.&lt;BR /&gt;I used these materials:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/sense/May2023/Subsystems/Hub/Content/Sense_Hub/Scripting/Security/manage-security-with-section-access.htm" target="_blank" rel="noopener"&gt;https://help.qlik.com/en-US/sense/May2023/Subsystems/Hub/Content/Sense_Hub/Scripting/Security/manage-security-with-section-access.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My code looks like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Section Access;
Authorization:
LOAD * INLINE [
    ACCESS, 	USERID, 		CZYELSERVICE
    ADMIN, 		*,				*
    USER, 		*,				*
    USER,		qlik2,			1
];&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2023 09:22:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-Access-restricting-all-user/m-p/2103407#M90136</guid>
      <dc:creator>Sebastian_Dec</dc:creator>
      <dc:date>2023-08-08T09:22:19Z</dc:date>
    </item>
    <item>
      <title>Re: Section Access restricting all user</title>
      <link>https://community.qlik.com/t5/App-Development/Section-Access-restricting-all-user/m-p/2103435#M90138</link>
      <description>&lt;P&gt;In this scenario, the third line won't do anything. You've already given all authenticated users access to everything, which includes the user qlik2.&lt;/P&gt;
&lt;P&gt;If you want to give specific permissions to some users, you'll have to remove the first two lines (and the second line is useless in itself, since you've already given everyone ADMIN access in the first line, so there's no need to also give them USER). &lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2023 10:19:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-Access-restricting-all-user/m-p/2103435#M90138</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2023-08-08T10:19:15Z</dc:date>
    </item>
    <item>
      <title>Re: Section Access restricting all user</title>
      <link>https://community.qlik.com/t5/App-Development/Section-Access-restricting-all-user/m-p/2103442#M90139</link>
      <description>&lt;P&gt;Thank you very much for your help, I understand something &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I changed the code to this, but user sdec doesn't have all the values:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Section Access;
Authorization:
LOAD * INLINE [
    ACCESS, 	USERID,						CZYELSERVICE,
    USER, 		DOMAIN\SDEC,				*
    USER, 		DOMAIN\QLIK2,				1
];&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I had to change to this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Section Access;
Authorization:
LOAD * INLINE [
    ACCESS, 	USERID,						CZYELSERVICE,
    USER, 		DOMAIN\SDEC,				0
    USER, 		DOMAIN\SDEC,				1
    USER, 		DOMAIN\QLIK2,		  	    1
];
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Is there any way to get every CZYELSERVICE value for a user?&lt;/P&gt;
&lt;P&gt;Do you just need to repeat users and values?&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2023 10:34:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-Access-restricting-all-user/m-p/2103442#M90139</guid>
      <dc:creator>Sebastian_Dec</dc:creator>
      <dc:date>2023-08-08T10:34:41Z</dc:date>
    </item>
    <item>
      <title>Re: Section Access restricting all user</title>
      <link>https://community.qlik.com/t5/App-Development/Section-Access-restricting-all-user/m-p/2103444#M90140</link>
      <description>&lt;P&gt;Using * should work (you may need to explicitly use Star is *; )&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2023 10:38:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-Access-restricting-all-user/m-p/2103444#M90140</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2023-08-08T10:38:21Z</dc:date>
    </item>
    <item>
      <title>Re: Section Access restricting all user</title>
      <link>https://community.qlik.com/t5/App-Development/Section-Access-restricting-all-user/m-p/2103462#M90141</link>
      <description>&lt;P&gt;Star *&amp;nbsp; not working:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Section Access;
Authorization:
LOAD * INLINE [
    ACCESS, 	USERID,						CZYELSERVICE,
    USER, 		SCAWAR\SDEC,				*
    USER, 		SCAWAR\SCAWARQLIK2,			1
];
&lt;/LI-CODE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Sebastian_Dec_0-1691492293931.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/113821iD655D7934DB57330/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Sebastian_Dec_0-1691492293931.png" alt="Sebastian_Dec_0-1691492293931.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Apparently it doesn't work for the 0-1 range,&amp;nbsp;but thank you for your help anyway.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2023 10:59:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-Access-restricting-all-user/m-p/2103462#M90141</guid>
      <dc:creator>Sebastian_Dec</dc:creator>
      <dc:date>2023-08-08T10:59:57Z</dc:date>
    </item>
    <item>
      <title>Re: Section Access restricting all user</title>
      <link>https://community.qlik.com/t5/App-Development/Section-Access-restricting-all-user/m-p/2103878#M90166</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Star * consist values only listed in Section Access -table, so you have to list all CZYELSERVICE values which you want to include in *&lt;/P&gt;
&lt;P&gt;Other way is to declare user SDEC access as ADMIN.&lt;/P&gt;
&lt;P&gt;br,Anssi&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2023 08:08:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Section-Access-restricting-all-user/m-p/2103878#M90166</guid>
      <dc:creator>Anssi</dc:creator>
      <dc:date>2023-08-09T08:08:02Z</dc:date>
    </item>
  </channel>
</rss>

