This topic is locked
[SOLVED]

 Record Level Security Issue

1/30/2014 10:27:52 AM
PHPRunner General questions
A
Abul author

I have a problem in security issue as below:

  1. My project was setup record level security in Advance Security Setting with "user can see and edit their own record" option.
  2. Some of project table I don't allow users to edit their record after submit. If they need to edit they should call admin and admin can edit for them.
  3. Now the problem is when Admin add any records in those restricted tables on behalf of record owner with admin login, then the respective record owner cannot see that added new record.
    How can I solve this issue? Any fields of the restricted tables edited or added new record by Admin should be available to the respective record owner.

Sergey Kornilov admin 1/30/2014

Create a new custom view based on the same database table exclusively for admin purposes. Do not turn on Advanced security on that custom view.
What is happening right now is that all records added by admin belong to admin and this is why other users cannot see those records.

A
Abul author 1/30/2014



Create a new custom view based on the same database table exclusively for admin purposes. Do not turn on Advanced security on that custom view.
What is happening right now is that all records added by admin belong to admin and this is why other users cannot see those records.


Perfect. It's work. Thanks.