Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Multi users

Is it possible to make multi users but with other conditions.

Example here:

Section Access;

LOAD * INLINE [

    ACCESS, USERID, GROUP

    ADMIN, ADMIN1, GROUP1

    USER, USER1, GROUP2

    USER, USER2, GROUP3

    ACCESS, USERID, COUNTRY

    ADMIN, ADMIN1, BELGIUM

];

Is it possible to make other users, but with different conditions?
Such as Group and country in my example.

1 Solution

Accepted Solutions
Not applicable
Author

you can specify as many elements as you like in your section access & just interpret these differently in your section application.

So.

Section Access;

LOAD * INLINE [

    ACCESS, USERID, GROUP,COUNTRY

    ADMIN, ADMIN1, GROUP1,  *

    ADMIN.ADMINBELG,GROUP1,BELGIUM

    USER, USER1, GROUP2,*

    USER, USER2, GROUP3,*];

Section Application;

T1:

load Group,

Country,

otherdatafield1,

otherdatafield2

from table1

in the example above if reduce by section access is turned on the ADMINBELG will have Admin rights & see everything in GROUP1 for Belgium only.

ADMIN will have Admiin rights & see all Group1

USER1 will see everything for GRoup1 etc etc

View solution in original post

2 Replies
Not applicable
Author

Not applicable
Author

you can specify as many elements as you like in your section access & just interpret these differently in your section application.

So.

Section Access;

LOAD * INLINE [

    ACCESS, USERID, GROUP,COUNTRY

    ADMIN, ADMIN1, GROUP1,  *

    ADMIN.ADMINBELG,GROUP1,BELGIUM

    USER, USER1, GROUP2,*

    USER, USER2, GROUP3,*];

Section Application;

T1:

load Group,

Country,

otherdatafield1,

otherdatafield2

from table1

in the example above if reduce by section access is turned on the ADMINBELG will have Admin rights & see everything in GROUP1 for Belgium only.

ADMIN will have Admiin rights & see all Group1

USER1 will see everything for GRoup1 etc etc