Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
kprotrka
Contributor III

Qlik Sense Section Access

i have around 100 users per Stream in Qlik Sense. Now i would like to limit couple of users so they can see just their data.

 

I am using following code:

star is *;

Section access;
Sectionaccess:
LOAD
[ACCESS],
'EU\'&NTNAME as NTNAME ,
ZUGRIFFSGRUPPE
FROM [lib://DATA_TEC/Flatfiles/OPPORTUNITIES/Zugriffstest_Vertrieb_KPIs - Kopie - Kopie.xls]
(biff, embedded labels, table is ACCESS$);

 

Concatenate LOAD * INLINE
[ACCESS, NTNAME,ZUGRIFFSGRUPPE
ADMIN, INTERNAL\SA_SCHEDULER,ALLES //Dieser User muss für den immer hinterlegt sein
];


Section Application;

WerDarfWas:
LOAD
ZUGRIFFSGRUPPE,
Rolle
FROM [lib://DATA_TEC/Flatfiles/OPPORTUNITIES/Zugriffstest_Vertrieb_KPIs - Kopie - Kopie.xls]
(biff, embedded labels, table is Rolle$);

 

 

 

 

My problem is that in Excel file i need to insert each NTName to give the rights for the each employee. I would like to say in excel that those couple of employees can see only their data and afterwards,all other users are able to see everything.

I tried with * in NTName column but did not worked. All other users get the message Access denied.

When i insert each NTName with the Rolle All then each employee can see this app.

1 Reply
Gysbert_Wassenaar
Partner - Champion III

Give all the other users the value ADMIN in the ACCESS field. That way they'll be able to see all the data no matter what you put in the ZUGRIFFSGRUPPE field.


talk is cheap, supply exceeds demand