Cross-Domain Approval issue
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2024 12:09 PM
Hi Everyone,
Can you please help me to give access to certain users to approve the records that is in sibling domain using ACLs. How can I configure it? Thanks!
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2024 01:53 PM
Hello,
In a domain separated environment, for each record the field Domain (sys_domain) exists. We can utilize this field in the ACL scripting with an added role check and can provide access to related domains.
Here is a sample ACL to start with:
Type: Record, Operation: Write, Table: say Incident, Role: x_cross_domain_approver, Script:
if (current.sys_domain.getDisplayValue() == '<Sibling_domain_name>'){
answer=true
}
Regards, Akash
If my response proves useful, please mark it "Accept as Solution" and "Helpful". This action benefits both the community and me.
If my response proves useful, please mark it "Accept as Solution" and "Helpful". This action benefits both the community and me.