How to restrict access with ACL to a field referenced from other table?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-15-2023 08:44 AM
Hi Community,
I would like to ask for advice. I need to restrict access to a certain group of users to 3 fields on the SCTASK form, which are a reference to the parent RITM. However, in the ACL's dropdown for the field, I cannot find these fields.
What are the steps that are to be taken in such case, please?
Thank you for any suggestions..
Here are the fields:

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-15-2023 11:33 AM
@Linda6 Since these are dot walked fields, which are available on the Requested Item table, hence you will have to define the read ACLs on the Requested Item table and not on the SC Task table.
Using the script field, you can block the access of a user if they belong to a specific group.
answer=false;
if(!gs.getUser().isMemberOf('XYZ')){
answer=true;
}
Hope this helps.