Jump to content
  • 0

Record Level Security: Limiting Access Of Only Some Users


CaitlinEnsley

Question

I am currently working on a search page where database users can search for their own records, view, and make edits if necessary. I was to restrict access of 4 of my users to only their own records. However, 3 users need to be able to access all records through the search form. 

 

I am having trouble thinking of a way to restrict access of only some users using record level security. Can anyone provide any guidance to how I might go about doing this?

 

Thanks! 

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Two DataPages. One with RLS and one without.

 

Redirect users based on permission level.

 

Authentication table - tblUsers - accessAll - Yes/No

 

<script>
if("[@authfield:tblUser_accessAll^]" == "Yes"){
window.location = "[@app:managerPage]";
}


else{
window.location = "[@app:nonManagerPage]";
}
</script>
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...