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

Announcements
Now accepting applications for the Qlik Luminary and Partner Ambassador Programs: Apply by July 6!
cancel
Showing results for 
Search instead for 
Did you mean: 
swati_rastogi27
Creator
Creator

Section Access

Hi ,

I have a requirement where I want to give full access(equivalent to admin) to 1 particular user.

In underlying database table, I cannot specify the access level as 'admin' because  of some internal policy violation issues.

How can I achieve this in section access, because if I read the ACCESS as 'user' , he is unable to perform admin level tasks like edit script etc.

Labels (1)
1 Solution

Accepted Solutions
avinashelite
MVP
MVP

if its for only one user then you could add a IF condition like this

SECTION ACCESS;

LOAD

if(user='ABC','ADMIN',ACCESS) as ACCESS,

NTNAME

View solution in original post

2 Replies
Peter_Cammaert
Partner - Champion III
Partner - Champion III

Aha, a deadlock ! A developer should be able to modify everything in a QVW document, but he/she is not allowed to see the actual data.

IMHO there is only one solution: separate the development environment (with test data to which no restrictions apply) from the environment with real policy-controlled data.

Peter

avinashelite
MVP
MVP

if its for only one user then you could add a IF condition like this

SECTION ACCESS;

LOAD

if(user='ABC','ADMIN',ACCESS) as ACCESS,

NTNAME