Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Section Access in Qlik Sense Cloud

Hi,

I very new to qlik sense, can any one please tell me how to do section access in qlik sense cloud.

Requirement: to show only one country user A. I don't know how to do that.

Please help me out.

Regards,

Arjun.

1 Solution

Accepted Solutions
Gysbert_Wassenaar

It should be just the same as in regular Qlik Sense and Qlikview apps. You create a section access table where you define the users and the access they need and to what data they should have access:

Section Access;

LOAD * INLINE [

ACCESS, USERID, COUNTRY

ADMIN, ADMIN

USER, UserA, India

USER, UserB, India

USER, UserB, Singapore

USER, UserC, USA

USER, UserD, *

];

Section Application;

MainTable:

LOAD

     ...some_fields,

     COUNTRY,

     ...some_other_fields

FROM

     ...source

     ;

See the online help for more information: Managing security with section access ‒ Qlik Sense

Note, afaik it does not work in the free Qlik Sense Cloud, but I could be wrong.


talk is cheap, supply exceeds demand

View solution in original post

5 Replies
Gysbert_Wassenaar

It should be just the same as in regular Qlik Sense and Qlikview apps. You create a section access table where you define the users and the access they need and to what data they should have access:

Section Access;

LOAD * INLINE [

ACCESS, USERID, COUNTRY

ADMIN, ADMIN

USER, UserA, India

USER, UserB, India

USER, UserB, Singapore

USER, UserC, USA

USER, UserD, *

];

Section Application;

MainTable:

LOAD

     ...some_fields,

     COUNTRY,

     ...some_other_fields

FROM

     ...source

     ;

See the online help for more information: Managing security with section access ‒ Qlik Sense

Note, afaik it does not work in the free Qlik Sense Cloud, but I could be wrong.


talk is cheap, supply exceeds demand
Not applicable
Author

Hi Gysbert,

Thanks for your quick help,

In Section Application table, should I have to all the fields which are in section access table?

Note: Does field manes should be in capital letters ???

Regards,

Arjun.

Gysbert_Wassenaar

You need one field in the section access table for the reduction. That field, in the example I posted it's COUNTRY, needs to be in your regular data model too. The fields in the section access table must be in upper case.


talk is cheap, supply exceeds demand
Not applicable
Author

Hi Gysbert,

Thank you very much for your help.

I'm trying to implement section access from qlik sense qmc, we are using 2.0.3 version.

Can you please tell me, If you have any idea, about how to do it.

Thanks in Advance.

Regards,

Arjun.

Gysbert_Wassenaar

I have no idea how to implement section access in the Qlik Sense QMC. I only know how to implement it in the script of the app. I already posted the link to the online help. I don't have 'special' knowledge that's not mentioned in the online help.


talk is cheap, supply exceeds demand