Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Section Access

Hi All,

I am very new section access concept.My approach is i have the data like;

Country, phone no

india,022

pak, 029

france,033

uk,345

in an excel sheet. I have 3 customers and I would like to give the access like ;

customer1---all the data

Customer2---india&Pak

Customer3--france&India

Second thing is ;

Country, phone no,valid/not

india,022,y

pak, 029,n

france,033,n

uk,345,y

For this second case i have to restict fields view as well..

Please help me in this regard.Correct me in case of wrong area.

Regards,

Dev

1 Reply
calvindk
Creator III
Creator III

Have a look at http://community.qlik.com/docs/DOC-1853

Could end up something like this:

SECTION Access;

Security:

LOAD * INLINE [

    ACCESS, NTNAME, AA

     ADMIN, DOMAIN, *

     ADMIN, DOMAIN, C

     USER, DOMAIN, *

     USER, DOMAIN, C2

     USER, DOMAIN, C3

   

];

SECTION Application;

AccessTable:

LOAD * INLINE [

COUNTRY, AA

INDIA, C

PAK, C

FRANCE, C

UK, C

INDIA, C2

PAK, C2

FRANCE, C3

UK, C3

];

Best wishes