Cross-Domain Approval issue

mandalorian
Tera Expert

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

Akash4
Kilo Sage
Kilo Sage

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.