Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
don_qlikview
Creator
Creator

Security in Qlik Sense?

Hello Everyone,

Does section access work the same way in Qlik Sense as it works in Qlikview or is there a different way?

Thanks!!!

7 Replies
Josh_Good
Employee
Employee

Hi,

Qlik Sense Desktop does not have section access included.  This is a limitation that is part of the free desktop offering.  Qlik Sense server will a full security offering, including section access.

-Josh

ToniKautto
Employee
Employee

The Section Access implementation in Qlik Sense is not completely identical to QlikView, but it is very similar and familiar. See the help section for more details.

https://help.qlik.com/sense/en-US/online/index.html#../Subsystems/WorkingWith/Content/Scripting/Secu...

tanvi_madan1
Partner - Contributor III
Partner - Contributor III

Hi,

Can anyone explain how to implement column wise section access in qlik sense??

Had tired with the below code but gives an error saying "Access Denied"

Section Access;

LOAD * INLINE [

    ACCESS, USERID

    USER, XXXX

    ];

   

Section Application;

UserColumnMapping:

LOAD

*

INLINE [

USERID,BRANCH,PRODUCTS,CITY,STATE

XXXX , 1,1,0,0];

Regards,

Tanvi

Not applicable

Your link does not work.  Can you update it?

Josh_Good
Employee
Employee

Not applicable

Not applicable

Hi Tanvi,

Your code should read

Section Access;

LOAD * INLINE [

     ACCESS, USERID, BRANCH

     ADMIN, ABC\XXXX, 1

     USER, ABC\YYYY, 2

];

Section Application;

UserColumnMapping:

LOAD * INLINE [

     BRANCH,PRODUCTS,CITY,STATE

     1,1,0,0

     2,2,2,2

];

If it's correct, do mark as helpful or answer

Best,

Nick