Click HERE to see how Saviynt Intelligence is transforming the industry. |
09/04/2024 10:13 PM
Hi Team,
We have a use case where we have to launch campaign via user update rule and it is supposed to be launched for all child endpoint of logical AD application not parent.
we tried few queries by using join and subquery including parent endpoint key and security system key but it didn't work.
Has anyone used query for endpoint configuration?
Query tried -
and ep.id in (Select epc.endpointkey from endpoints epc, endpoints epp where epc.parentendpointkey = epp.endpointkey and epp.endpointname = 'Applications')
and ep.id in (select e.endpointkey from endpoints e where e.securitysystemkey in (select ss.systemkey from securitysystems ss where ss.systemname ='') and ep.endpointname!=''
09/04/2024 10:30 PM
and ep.id in (select epc.id from Endpoints epc, Endpoints epp where epc.parentEndpointkey= epp.id and epp.endpointname = 'Applications')
09/05/2024 12:04 AM
@rushikeshvartak didn't work. endpoint query didn't work ... sub query shows record in Saviynt data analyzer
error-
Thanks
09/05/2024 12:09 AM
use simple query
and ep.parentEndpointkey=11
09/05/2024 12:36 AM
@rushikeshvartak shows invalid SQL Query in campaign configuration.
09/05/2024 12:22 AM
Hi @NM Can you try this once?
Select epc.endpointkey from endpoints epc where epc.parentendpointkey = (Select epp.endpointkey from endpoints epp where epp.endpointkey=epc.parentendpointkey) and epc.endpointname like '%AD%';
Regards,
Indra
09/05/2024 12:38 AM
@indra_hema_95 , where in data analyzer .. endpoint query in campaign doesn't support select query.
09/05/2024 12:42 AM
@NM I have just given you the inside query to check in data analyzer first.
Then you can frame it.
and ep.id in (Select epc.endpointkey from endpoints epc where epc.parentendpointkey = (Select epp.endpointkey from endpoints epp where epp.endpointkey=epc.parentendpointkey) and epc.endpointname like '%AD%')
Regards,
Indra
09/05/2024 12:48 AM
@indra_hema_95 I have already tried similar result was same no campaign created.
I even tried with security system key .. same case.
09/05/2024 08:57 AM
09/05/2024 09:02 AM
@rushikeshvartak 2 questions
Which version and is this entitlement owner campaign?
With user manager it doesn't give right result..
09/05/2024 09:05 AM
09/05/2024 09:08 AM
Yes Thank you ..
Whenever I add above query it says invalid SQL for UM
09/06/2024 12:15 AM
@rushikeshvartak any update??
09/06/2024 06:23 AM
Its working for UM also
09/06/2024 06:28 AM
@rushikeshvartak can you please share the filter??
09/06/2024 06:30 AM
09/07/2024 10:51 AM
Hi @rushikeshvartak , not working for yes.. we are on 24.5 so maybe a bug in the version.
09/09/2024 02:16 AM
@rushikeshvartak could it be a bug?
We are on 24.5
09/09/2024 05:49 AM
You can raise support ticket they can confirm on specific version
09/06/2024 06:37 AM
Use this simple query
For all the child endpoint, set CP25='Yes'
Thanks,
Devang Gandhi
If this reply answered your question, please Accept As Solution and give Kudos to help others who may have a similar problem.
09/07/2024 10:53 AM
@dgandhi , we have this approach in our bucket already, but keeping it as a second option because we have around 100 child application.