Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
slondono
Partner - Creator II
Partner - Creator II

Qlik Sense 3.0 supports Section Access???

Hi guys.

Im deploying an app with section access data reduction but when the app recharges doesnt show information. it says "access denied"

My section access code is very very simply...just for prove.

Section Access;

LOAD * INLINE [
ACCESS, USERID, PASSWORD

ADMIN, User1, u1

];

Section Application;

Do i need extra configuration?? what im doing wrong? i have been looking for examples and implementations of section access in qlik sense but there is no videos, no documents

Help!

2 Replies
Levi_Turner
Employee
Employee

Yes, Qlik Sense (Server) support section access.

Try this sample code:

section access;

LOAD * inline [

ACCESS, USERID,REDUCTION,

USER, DOMAIN\Me,*

USER, DOMAIN\User2, 2

USER, DOMAIN\User3, 3

USER, INTERNAL\SA_SCHEDULER,*

];

section application;

T1:

LOAD *,

NUM AS REDUCTION;

LOAD

Chr( RecNo()+ord('A')-1) AS ALPHA,

RecNo() AS NUM

AUTOGENERATE 3;

You will need to edit DOMAIN to reflect the domain in use in your environment and likewise the UserID's to reflect your actual users.