Click HERE to see how Saviynt Intelligence is transforming the industry. |
10/16/2024 07:21 AM - edited 10/16/2024 07:21 AM
I have a user manager campaign that targets a list of endpoints. Moving forward I would like to add one more endpoint and filter only specific entitlements from this endpoint, but keep the rest of the campaign endpoints/entitlements untouched, is this possible? and how would I go about achieving this?
10/16/2024 07:29 AM
entitlementtypekey in (100,200,300 ) or entitlement_valuekey in (1,2,3)
10/16/2024 07:31 AM - edited 10/16/2024 07:32 AM
thanks, now does this filter impact other endpoints specified in the campaign as well? as we would like to see all the accounts and entitlements for them.
For example, need to see everything for endpoints A and B, for new endpoint C, only entitlements that are high privileged
10/16/2024 07:34 AM
Yes
10/16/2024 07:36 AM
@theosveg it won't it will check the entitlement type and then value if one of them satisfy it moves forward.
10/16/2024 07:38 AM - edited 10/16/2024 07:38 AM
More optimized query
entitlementtypekey in (select entitlementtypekey from entitlement_types where endpointkey in (select endpointkey from endpoints where endpointname in ('A','B'))) or entitlement_valuekey in (select entitlement_valuekey from entitlement_values where status=1 and privileged =4 and entitlementtypekey in (select entitlementtypekey from entitlement_types where endpointkey in (select endpointkey from endpoints where endpointname in ('C'))))
10/16/2024 07:39 AM
Thank you @rushikeshvartak I will test this and come back to close the thread. 🙂