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 (PART 2)

Moving on from my previous discussion. I now want to restric what the data (rows) the user can see.

Data is:

D1D2D3
ab1c1
a2b2c2
a3b3c3
a4b4c4

Section Access;
LOAD * INLINE [
ACCESS, USERID, PASSWORD,  D1
ADMIN, ADMIN,  ADMIN, 
USER, USER1, U1,  A
USER, USER2, U2,  a2
];

SECTION APPLICATION;

Trying to restrict the data so that User1 can only see row 1 and User2 can only see row 2. But for some reason now when I log in I can only log in as ADMIN and not USER1 or USER2.

Any reasons why? Before adding D1 to the section access it worked fine.

1 Solution

Accepted Solutions
giakoum
Partner - Master II
Partner - Master II

Field values and Section Access values must be in uppercase for this to work.

View solution in original post

2 Replies
giakoum
Partner - Master II
Partner - Master II

Field values and Section Access values must be in uppercase for this to work.

Not applicable
Author

That works now, thanks