Form Related List ACL Restriction

Rae Khan
Tera Contributor

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

Sandeep Rajput
Tera Patron
Tera Patron

@Rae Khan Create a scripted read ACL, in the script check 

if(current.parent.canRead()){
answer=true;
}

Hope this helps.