Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Community,
I have one table, i have restrict data for Group level,
ex:
Group | Client | Amount |
A | Air | 4000 |
A | Atlas | 3500 |
A | Apple | 12345 |
B | Barkles | 1200 |
B | Birla | 9000 |
C | Cybage | 5430 |
C | Citi | 8900 |
Section Access File:
Group | User | Access |
A | A1 | * |
B | B2 | * |
C | C3 | * |
When Group A login into application, they have to see only Group A related data.
Thanks in Advance..
Seems, Working to me
LOAD * Inline [
GROUP, Client, Amount
A, Air, 4000
A, Atlas, 3500
A, Apple, 12345
B, Barkles, 1200
B, Birla, 9000
C, Cybage, 5430
C, Citi, 8900
];
SECTION Access;
LOAD * INLINE [
ACCESS, USER, PASSWORD, GROUP
ADMIN, ADMIN, All
USER, USER1, A1, A
];
SECTION Application;
PS: Please login for A1