Click HERE to see how Saviynt Intelligence is transforming the industry. |
08/05/2024 07:49 AM
When a new AD group is created, sometimes it is required to sync the membership from an existing AD group. In this case, the existing AD group is already populated using a technical rule. I know that this can be accomplished with analytics, but I'm looking for a more scalable solution (i.e. 100+ 1-to-1 sync rules requiring 2 analytics each is a bit much). Any guidance that can be provided is most appreciated.
Solved! Go to Solution.
08/05/2024 08:01 AM
Hi @tsanchez you can create a technical rule add the query using accounts_entielement table in advance query.
08/06/2024 01:55 PM
Thanks @NM, that worked.
08/06/2024 08:07 PM
Hi @tsanchez , could you share the query it will be helpful for others
Thanks
08/07/2024 06:24 AM
Below is the query used in the advanced config of the technical rule, and here's the KB article that I used for reference: Obtaining the attribute details from tables other than the Users table for the Advanced Config query...
a.id in (select uu.id from Users uu, User_accounts ua, Accounts aa, Account_entitlements1 ae, Entitlement_values ev, Endpoints ee where uu.id = ua.userkey AND uu.statuskey = 1 AND ua.accountkey = aa.id AND aa.id = ae.accountkey AND ae.entitlement_valuekey = ev.id AND aa.endpointkey = ee.id AND ee.endpointname = '[srcEndpointName]' AND aa.status in ('1','Active') AND ev.entitlement_value = '[srcEntitlementValue]')
08/05/2024 06:33 PM
Did you tried with request rules ?