Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Chanty4u
MVP
MVP

SECTION ACCESS

hi all,

i hve created section access to my document lik below..

Section Access;

LOAD * INLINE [

    ACCESS, USERID, PASSWORD, %LEVEL

    ADMIN, ADMIN, ADMIN, *

    USER, USER, USER, Project1

    USER1, USER1, USER1, Project2

];

SECTION Application;

when  i opened with ADMIN it is shwng all projects  THAT IS OK

but wen i open with user AND user1 ... it alsow opening all projcets.....

i want to open user only project1

user -project2

13 Replies
rubenmarin

Hi suresh, for Admin you'll need to load all different values for %LEVEL, so admin has access to all projects throught AP, and to give some user access to more than one project you can add a line for the same user:

Section Access;

Values:

Load Distinct Upper (%LEVEL) as %LEVEL //This way %LEVEL has all the values when you use *.

From Location;

LOAD * INLINE [

    ACCESS, USERID, PASSWORD, %LEVEL

    ADMIN, ADMIN, ADMIN, *

    USER, USER, USER, PROJECT1

    USER, USER, USER, PROJECT2

   USER, USER1, USER1, PROJECT2

];

SECTION Application;

....

ahmar811
Creator III
Creator III

try this link

Sheet level access

hope this help you

Regards

Ahmar

Chanty4u
MVP
MVP
Author

WHEN I WAS APPLYING SHEE LEVEL SECURITY IT IS NT WRKNG...

Chanty4u
MVP
MVP
Author

user1 only see the sheet1 and sheet3

user2 want to c  sheet2 and sheet3

my tabs names like  introduction and defects test lik dat

how can i achieve?