Skip to main content
Announcements
Customer Spotlight: Discover what’s possible with embedded analytics Oct. 16 at 10:00 AM ET: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

row level security?

i have a listbox name is  country  having  

country:

india

aus

pak

usa

here i want give permission for userA  india and pak  , userB aus and usa  

USERA-INDIA,PAK

USERB-AUS,USA    HOW TO GIVE TWO ROWS PERMISSION?

1 Solution

Accepted Solutions
tresesco
MVP
MVP

Learn section access. It should be something like:

section access;

load * inline [

ACCESS, USERID,COUNTRY

ADMIN, ADMIN,*

USER, UserA,india

USER, UserA, pak

USER, UserB, aus

USER, UserB, usa

];

Section Application;

Load country as COUNTRY from <>;

View solution in original post

4 Replies
tresesco
MVP
MVP

Learn section access. It should be something like:

section access;

load * inline [

ACCESS, USERID,COUNTRY

ADMIN, ADMIN,*

USER, UserA,india

USER, UserA, pak

USER, UserB, aus

USER, UserB, usa

];

Section Application;

Load country as COUNTRY from <>;

Not applicable
Author

section access;

load * inline [

ACCESS, USERID,COUNTRY

ADMIN, ADMIN,*

USER, UserA,india

USER, UserA, pak

USER, UserB, aus

USER, UserB, usa

];

Not applicable
Author

for example i have 20 rows and i need to give for userA  10 rows then i have to write 10 times?

Not applicable
Author

Yes u need to write 10 times