Form Related List ACL Restriction
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2023 11:17 AM
Hi all,
I have a parent form A that should assign the read access to other users for itself and a child form B through a related list. However when the read access is granted, it applies to the parent form A, but not the child form B.
How can I adjust the read access ACL for form A to also apply to form B?
1 REPLY 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2023 08:30 PM
@Rae Khan Create a scripted read ACL, in the script check
if(current.parent.canRead()){
answer=true;
}
Hope this helps.