Click HERE to see how Saviynt Intelligence is transforming the industry. |
09/18/2024 12:45 PM
Hello
I need to provision an AD entitlement to the newly created service account that meets the below criteria. How can I do it using the Analytics? Where do I specify the entitlement that I need to provision?
select e.endpointname, a.name, a.customproperty3 as 'Location', a.customproperty1 as 'Brand', 'Provision Access' AS Default_Action_For_Analytics from accounts a join endpoints e on e.endpointkey = a.endpointkey where e.endpointname = 'Hyperion' and a.customproperty3 in ('Mexico', 'Canada') and a.customproperty1 in ('NGS', 'BGS')
Solved! Go to Solution.
09/18/2024 12:48 PM
select e.endpointname, a.name as accName , a.customproperty3 as 'Location', a.customproperty1 as 'Brand', 'Provision Access' AS Default_Action_For_Analytics,a.accountkey as acctKey ,'1' as userKey ,'99999' as entvaluekey from accounts a join endpoints e on e.endpointkey = a.endpointkey where e.endpointname = 'Hyperion' and a.customproperty3 in ('Mexico', 'Canada') and a.customproperty1 in ('NGS', 'BGS')
09/18/2024 12:51 PM
@Thriller entitlementid as entvaluekey
Analytics action- provision access
09/18/2024 01:19 PM
Thank you @rushikeshvartak and @NM