Click HERE to see how Saviynt Intelligence is transforming the industry. |
08/14/2024 11:36 AM
Hi Saviynt Team,
I hope you are doing well. I’m in the process of setting up Group Management in Saviynt to ensure that modifications to entitlements are reflected in Active Directory. I’ve successfully enabled the necessary functionalities, and tasks are being created when an entitlement is modified.
However, I’m unable to see the Entitlement Glossary field in the entitlement edit screen. My goal is to update the Entitlement Glossary in Saviynt and ensure that these updates are reflected in both Saviynt and Active Directory.
Attached are some screenshots that illustrate the current configuration and the issue I’m encountering. I would appreciate your assistance in enabling the visibility of the Entitlement Glossary field or guiding me on how to achieve this.
Thank you in advance for your support.
08/14/2024 01:30 PM
08/14/2024 01:45 PM
If I go to the Admin -> Roles, the AD group is not listed as a Role, can you explain it a bit more, please?
08/14/2024 01:47 PM
Role type as entitlement
08/14/2024 01:52 PM
ok, will create enhacement query job that updates role.customproperty1=entitlement.Entitlement_Glossary on rolename=entitlmentname, is that correct?
08/14/2024 01:54 PM
Yes
08/14/2024 01:57 PM
Here you go
select
ev.ENTITLEMENT_VALUEKEY as entitlement_values__primarykey,
r.customproperty1 as entitlement_values__ENTITLEMENT_GLOSSARY
from roles r,
entitlement_values ev,
entitlement_types et
where r.role_name =ev.entitlement_value
and r.roletype=6
and et.endpointkey=r.endpointkey
and et.entitlementtypekey=ev.entitlementtypekey
and r.customproperty1 !=ev.ENTITLEMENT_GLOSSARY
08/14/2024 02:20 PM
Shows error on job creation - Cannot use column ENTITLEMENT_VALUEKEY of table EV as primary key of table ENTITLEMENT_VALUES
08/14/2024 02:40 PM
select
ev.ENTITLEMENT_VALUEKEY as entitlement_values__primarykey,
r.customproperty1 as entitlement_values__ENTITLEMENT_GLOSSARY
from
entitlement_values ev,roles r,
entitlement_types et
where r.role_name =ev.entitlement_value
and r.roletype=6
and et.endpointkey=r.endpointkey
and et.entitlementtypekey=ev.entitlementtypekey
and r.customproperty1 !=ev.ENTITLEMENT_GLOSSARY
08/16/2024 12:36 PM
I have tested and all of this works, but looks like we don't need the enhancement query job, when the entitlement is modified from Manage AD Groups, then the task is sent, it's also updating the entitlement_glossary, is this the expected behavior? When do we need the enhancement query job?
08/16/2024 12:58 PM
Yes expected
08/21/2024 06:38 PM
Is it possible to trigger an entitlement update in Active Directory directly by modifying the entitlement_glossary attribute in the Entitlement View in Saviynt, without having to rely on roles or custom properties? I want to avoid duplicating information in roles and only update the glossary field within the entitlement. Any guidance on how to achieve this or alternative approaches would be greatly appreciated.
08/16/2024 01:00 PM
There is no harm is updating during modification so no impact and its expected
08/21/2024 06:38 PM
Is it possible to trigger an entitlement update in Active Directory directly by modifying the entitlement_glossary attribute in the Entitlement View in Saviynt, without having to rely on roles or custom properties? I want to avoid duplicating information in roles and only update the glossary field within the entitlement. Any guidance on how to achieve this or alternative approaches would be greatly appreciated ?
08/21/2024 06:43 PM
08/21/2024 07:13 PM
We are updating the entitlement via API, is there a way to also update the Role and that the Update entitlement task get triggered?
08/21/2024 07:25 PM
08/21/2024 07:42 PM
Can it be also from Enhancement Query job?
08/21/2024 08:17 PM
So, you mean if I'm updating entitlement via api, I should add 2 more extra calls to update the role customproperty and also create the task?
08/21/2024 08:19 PM
2 api - ent update & create task for role with entitlement type
this can’t be done with enhanced query
08/21/2024 08:46 PM
I need to make a bulk update from the entitlement_glossary field to the AD extension attribute, Is there a way to do it from Saviynt or we should do it from API updating the entitlement, role and creating task to update entitlement?
08/21/2024 08:50 PM
You can use api / perform directly one time in ad
08/21/2024 07:23 PM
Any idea?