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

access

Hello! In section access  we can give access only for user and admin? Maybe there is something upper than user and lower than admin? help please!

Thank you!

1 Solution

Accepted Solutions
tresesco
MVP
MVP

Admin access is different more in terms of what the user can do, rather than what the user can see. With USER access you can always set a user to allow more field values like:

Section Access;

LOAD * INLINE [

    ACCESS, NTNAME, REGION1

    ADMIN, dcucuta, *

    USER, COD,UCRAINA

    USER, COD, ROMANIA

....

so, user COD can see two regions data.

View solution in original post

10 Replies
marcus_malinow
Partner - Specialist III
Partner - Specialist III

No, there is only USER and ADMIN.

What are you trying to achieve that would need different access rights?

Anil_Babu_Samineni

These are simple credentials only. USER indicates Access to the Application / ADMIN indicates Grant to anyone who need.

HTH

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
avinashelite

No we have only to ACCESS types USER and ADMIN but you could play with the data restriction

denis115
Creator
Creator
Author

I have admin , and other groups(different departments) and in each group there is chief who must see more information then his subordinates and fewer information then can see admin.

BOSS    (ADMIN)

CHIEF OF DEPARTMENT    (?)

SOBORDINATES OF CHIEF    (USER)

Not applicable

FOR CHIEF OF DEPARTMENT you have to decide which kind of access he/she needs user kind or admin

marcus_malinow
Partner - Specialist III
Partner - Specialist III

Ok this sounds like data reduction / section access rather than the user type.

Section Access

tresesco
MVP
MVP

Admin access is different more in terms of what the user can do, rather than what the user can see. With USER access you can always set a user to allow more field values like:

Section Access;

LOAD * INLINE [

    ACCESS, NTNAME, REGION1

    ADMIN, dcucuta, *

    USER, COD,UCRAINA

    USER, COD, ROMANIA

....

so, user COD can see two regions data.

denis115
Creator
Creator
Author

I think that is what I need!

Thanks!

denis115
Creator
Creator
Author

but if I need to hide a sheet from a user and for other user to open?

my first expression was   if(qvuser=admin,1,0)

what I need to do ?