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: 
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