<?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: Qliksense section access in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Qliksense-section-access/m-p/1795910#M62409</link>
    <description>&lt;P&gt;In the section access table, all field names AND values must be in capitals. Change UserId to USERID,&amp;nbsp; testuser_1 to TESTUSER_1, AuthKey to AUTHKEY and so on. Obviously do the same to the connecting fields of data tables like AUTHKEY on Sales.&lt;/P&gt;</description>
    <pubDate>Wed, 31 Mar 2021 08:36:17 GMT</pubDate>
    <dc:creator>gmenoutis</dc:creator>
    <dc:date>2021-03-31T08:36:17Z</dc:date>
    <item>
      <title>Qliksense section access</title>
      <link>https://community.qlik.com/t5/App-Development/Qliksense-section-access/m-p/1795900#M62406</link>
      <description>&lt;P&gt;I am trying to implement section access in hub .. so I do this&amp;nbsp;&lt;/P&gt;&lt;P&gt;first I did this&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Section Access;
Access_Table:
LOAD * INLINE [
    ACCESS,  NTNAME,  AuthKey
    ADMIN, administrator,  *
    ADMIN, testuser_1,  *
    ADMIN, IL\SA_SCHEDULER,  *
];
Concatenate(Access_Table)
LOAD
    ACCESS,
    NTNAME,
    AuthKey
FROM [lib://downloads (win1_administrator)/User_Access.xlsx]
(ooxml, embedded labels, table is Sheet1);

Section Application;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;User_Access table&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;ACCESS	NTNAME	            AuthKey
USER	W-AMKU1\jn	      101
USER	W-AMKU1\testuser_1	102
USER	W-AMKU1\testuser_2	103&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and in sales tab&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Sales_Master:

LOAD
    ProductID,
    Country,
    Geography,
    Sales,
    Pick(Match(Country,'India','UK','USA','Canada','Japan','Austria'),101,102,103) as AuthKey
FROM [lib://downloads (w_administrator)/SALES.xlsx]
(ooxml, embedded labels, table is SALES);&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;sales table 

Product      Country	   Geography	      Sales
101	      India	     APAC	       10002
102	      Japan	     APAC	       2000
103	      UK	    AMEC	      3300
104	      Austria	    AMEC	      4000
105	      USA	    AMER	      7000
106	      Canada	     AMER	      3000&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and in emp tab&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;EMP:

LOAD
    EMPID,
    ProductID
FROM [lib://downloads (w_administrator)/EMP.xlsx]
(ooxml, embedded labels, table is EMP);&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Emp table 

EMPID	ProductID
E120	101
E130	102
E140	102
E150	103
E160	104&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but when I login through testuser_1 this shows an error&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="capriconuser_0-1617178502831.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/52147i11402E147A6A4C8B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="capriconuser_0-1617178502831.png" alt="capriconuser_0-1617178502831.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;how I resolve this ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Dec 2021 21:02:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qliksense-section-access/m-p/1795900#M62406</guid>
      <dc:creator>capriconuser</dc:creator>
      <dc:date>2021-12-20T21:02:46Z</dc:date>
    </item>
    <item>
      <title>Re: Qliksense section access</title>
      <link>https://community.qlik.com/t5/App-Development/Qliksense-section-access/m-p/1795903#M62407</link>
      <description>&lt;P&gt;You seem to be coming from the Qlikview side, no? "NTNAME" is not applicable for Qlik Sense; try "USERID" instead as a field name.&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 08:19:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qliksense-section-access/m-p/1795903#M62407</guid>
      <dc:creator>gmenoutis</dc:creator>
      <dc:date>2021-03-31T08:19:46Z</dc:date>
    </item>
    <item>
      <title>Re: Qliksense section access</title>
      <link>https://community.qlik.com/t5/App-Development/Qliksense-section-access/m-p/1795908#M62408</link>
      <description>&lt;P&gt;yes i used&amp;nbsp; qliksense ..ok now i do this&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/3767"&gt;@gmenoutis&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Section Access;
Access_Table:
LOAD * INLINE [
    ACCESS,  UserID,  AuthKey
    ADMIN, administrator,  *
    ADMIN, testuser_1,  *
    ADMIN, IL\SA_SCHEDULER,  *
];
Concatenate(Access_Table)
LOAD
    ACCESS,
    UserID,
    AuthKey
FROM [lib://downloads (win1_administrator)/User_Access.xlsx]
(ooxml, embedded labels, table is Sheet1);

Section Application;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But this still shows same error&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 08:32:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qliksense-section-access/m-p/1795908#M62408</guid>
      <dc:creator>capriconuser</dc:creator>
      <dc:date>2021-03-31T08:32:22Z</dc:date>
    </item>
    <item>
      <title>Re: Qliksense section access</title>
      <link>https://community.qlik.com/t5/App-Development/Qliksense-section-access/m-p/1795910#M62409</link>
      <description>&lt;P&gt;In the section access table, all field names AND values must be in capitals. Change UserId to USERID,&amp;nbsp; testuser_1 to TESTUSER_1, AuthKey to AUTHKEY and so on. Obviously do the same to the connecting fields of data tables like AUTHKEY on Sales.&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 08:36:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qliksense-section-access/m-p/1795910#M62409</guid>
      <dc:creator>gmenoutis</dc:creator>
      <dc:date>2021-03-31T08:36:17Z</dc:date>
    </item>
    <item>
      <title>Re: Qliksense section access</title>
      <link>https://community.qlik.com/t5/App-Development/Qliksense-section-access/m-p/1795913#M62410</link>
      <description>&lt;P&gt;still same error when i click on application and when I log in through testuser_1&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/3767"&gt;@gmenoutis&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 08:39:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qliksense-section-access/m-p/1795913#M62410</guid>
      <dc:creator>capriconuser</dc:creator>
      <dc:date>2021-03-31T08:39:25Z</dc:date>
    </item>
    <item>
      <title>Re: Qliksense section access</title>
      <link>https://community.qlik.com/t5/App-Development/Qliksense-section-access/m-p/1795917#M62411</link>
      <description>&lt;P&gt;Hmm. Maybe the domain is missing? Generally you can debug this by temporarily disabling section access, going in the app, and adding a KPI with =OSuser() so you can see the username and the domain(shown as user directory), then put it accordingly. I would make a guess that the directory is local on the machine IL so you could try IL\TESTUSER_1.&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 08:45:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qliksense-section-access/m-p/1795917#M62411</guid>
      <dc:creator>gmenoutis</dc:creator>
      <dc:date>2021-03-31T08:45:29Z</dc:date>
    </item>
    <item>
      <title>Re: Qliksense section access</title>
      <link>https://community.qlik.com/t5/App-Development/Qliksense-section-access/m-p/1795923#M62412</link>
      <description>&lt;P&gt;IN qmc i have this&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/3767"&gt;@gmenoutis&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="capriconuser_1-1617180903348.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/52155i322654DC518E4B91/image-size/medium?v=v2&amp;amp;px=400" role="button" title="capriconuser_1-1617180903348.png" alt="capriconuser_1-1617180903348.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and when I use KPI =osuser then I found this in OS USER&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="capriconuser_2-1617181047623.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/52156i73EFEE2504DDA09B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="capriconuser_2-1617181047623.png" alt="capriconuser_2-1617181047623.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;currently i am log in through admin but when i try to login in through test_user1 and then click on application then this shows an error&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 08:58:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qliksense-section-access/m-p/1795923#M62412</guid>
      <dc:creator>capriconuser</dc:creator>
      <dc:date>2021-03-31T08:58:14Z</dc:date>
    </item>
    <item>
      <title>Re: Qliksense section access</title>
      <link>https://community.qlik.com/t5/App-Development/Qliksense-section-access/m-p/1795932#M62413</link>
      <description>&lt;P&gt;You have to use W-AMKU1\ADMINISTRATOR and W-AMKU1\TESTUSER_1 respectively.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 09:25:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qliksense-section-access/m-p/1795932#M62413</guid>
      <dc:creator>gmenoutis</dc:creator>
      <dc:date>2021-03-31T09:25:38Z</dc:date>
    </item>
    <item>
      <title>Re: Qliksense section access</title>
      <link>https://community.qlik.com/t5/App-Development/Qliksense-section-access/m-p/1795939#M62416</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/3767"&gt;@gmenoutis&lt;/a&gt;&amp;nbsp; &amp;nbsp;YES I used that both in script and in excel .. but still shows the same error&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 09:39:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qliksense-section-access/m-p/1795939#M62416</guid>
      <dc:creator>capriconuser</dc:creator>
      <dc:date>2021-03-31T09:39:06Z</dc:date>
    </item>
    <item>
      <title>Re: Qliksense section access</title>
      <link>https://community.qlik.com/t5/App-Development/Qliksense-section-access/m-p/1795941#M62417</link>
      <description>&lt;P&gt;Strange that administrator works but test user not. Does the testuser have a licence allocated?&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 09:41:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qliksense-section-access/m-p/1795941#M62417</guid>
      <dc:creator>gmenoutis</dc:creator>
      <dc:date>2021-03-31T09:41:32Z</dc:date>
    </item>
    <item>
      <title>Re: Qliksense section access</title>
      <link>https://community.qlik.com/t5/App-Development/Qliksense-section-access/m-p/1795942#M62418</link>
      <description>&lt;P&gt;no.. but testuser_1 has access to stream&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/3767"&gt;@gmenoutis&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 09:43:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qliksense-section-access/m-p/1795942#M62418</guid>
      <dc:creator>capriconuser</dc:creator>
      <dc:date>2021-03-31T09:43:14Z</dc:date>
    </item>
    <item>
      <title>Re: Qliksense section access</title>
      <link>https://community.qlik.com/t5/App-Development/Qliksense-section-access/m-p/1795943#M62419</link>
      <description>&lt;P&gt;Users indeed must have access to a stream/app/sheet/object to see it, but they *also* need a license.&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 09:45:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qliksense-section-access/m-p/1795943#M62419</guid>
      <dc:creator>gmenoutis</dc:creator>
      <dc:date>2021-03-31T09:45:40Z</dc:date>
    </item>
    <item>
      <title>Re: Qliksense section access</title>
      <link>https://community.qlik.com/t5/App-Development/Qliksense-section-access/m-p/1795949#M62421</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/3767"&gt;@gmenoutis&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;is my authkey is correct ?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Pick(Match(Country,'India','UK','Japan'),101,103,102) as AUTHKEY&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 10:03:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qliksense-section-access/m-p/1795949#M62421</guid>
      <dc:creator>capriconuser</dc:creator>
      <dc:date>2021-03-31T10:03:51Z</dc:date>
    </item>
    <item>
      <title>Re: Qliksense section access</title>
      <link>https://community.qlik.com/t5/App-Development/Qliksense-section-access/m-p/1795950#M62422</link>
      <description>&lt;P&gt;Seems fine. But you test it by disabling section access (comment "section access;"). Then proceed to select the USERID you want as a value, and you will see if the associated data show.&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 10:06:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qliksense-section-access/m-p/1795950#M62422</guid>
      <dc:creator>gmenoutis</dc:creator>
      <dc:date>2021-03-31T10:06:26Z</dc:date>
    </item>
    <item>
      <title>Re: Qliksense section access</title>
      <link>https://community.qlik.com/t5/App-Development/Qliksense-section-access/m-p/1795951#M62423</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/3767"&gt;@gmenoutis&lt;/a&gt;&amp;nbsp; yes thanku .. i allocate license and it works fine &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; thanks&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 10:07:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qliksense-section-access/m-p/1795951#M62423</guid>
      <dc:creator>capriconuser</dc:creator>
      <dc:date>2021-03-31T10:07:15Z</dc:date>
    </item>
  </channel>
</rss>

