Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Moving on from my previous discussion. I now want to restric what the data (rows) the user can see.
Data is:
D1 | D2 | D3 |
a | b1 | c1 |
a2 | b2 | c2 |
a3 | b3 | c3 |
a4 | b4 | c4 |
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.
Field values and Section Access values must be in uppercase for this to work.
Field values and Section Access values must be in uppercase for this to work.
That works now, thanks