Click HERE to see how Saviynt Intelligence is transforming the industry. |
02/27/2024 05:42 AM
HI team,
We need to setup a process where a set of Entitlements will be requestable only for Privileged Accounts.
Please let us know the configuration details. Can we use accounts table reference in "Config for Selected Entitlement in ARS" under Entitlement Type in Endpoint.
Regards,
Rama
02/27/2024 08:09 PM
@rama_roy you can achieve based Dynamic attriute
let say attribute name 'Apps'
Example:
Apps query= select customproperty1 as Id from entitlmentvalues from where customproperty1 in ( select accounttype from accounts where accounttype =12)
now you need declare in
Config for Selected Entitlement in ARS : ev.customproperty1 = '${apps}'
same like above as requirement you need prepare query and pass it config level.
ref query:
02/28/2024 01:51 AM
Thanks for the update. Let me try this solution and I will get back to you in a couple of days.
Regards,
Rama
03/04/2024 08:16 AM
Hi,
The above solution is not working. Please let me know how to get account type from dynamic attribute.
Regards,
Rama
03/05/2024 08:24 PM
Hi Team,
Can I get some update on this?
Regards,
Rama
03/05/2024 09:09 PM
Share request form screenshot
03/07/2024 06:07 AM
Hi ,
Are you asking about the ARS page screenshot?
Please let me know how to get account object in dynamic attribute?
Apps query= select customproperty32 as Id from entitlmentvalueswhere customproperty32 in ( select accounttype from accounts where accounttype =12)
I am using accounttype=Privileged but seeing the entitlements in ARS page which are marked as Privileged in Customproperty32=Privileged
Regards,
Rama
03/12/2024 07:11 PM
Yes ARS
03/13/2024 07:07 AM
accountType1= select customproperty32 as Id from entitlmentvalueswhere customproperty32 in ( select accounttype from accounts where accounttype =Privileged)
I am seeing all the entitlements in ARS page which are not marked as Privileged in entitlement customproperty32 as Privileged
03/14/2024 04:34 AM - edited 03/14/2024 04:35 AM
Hi @rama_roy ,
How are the privileged accounts defined?
Sharing both cases if this helps:
CASE A. New account request from ARS -
CASE B. For an update account request from ARS -
I have used another DA for Case B. But creation of another DA (Case B) will depend on the use case, how many values in ENUM you want to display for new account request and not to be displayed in an update account request. Play with 'Hide on create' and 'Hide on update'. If values in DA are same for both new and update account request, you can use one dynamic attribute.
If this reply answered your question, please consider selecting Accept As Solution and hit kudos.
03/28/2024 07:54 PM
Fix query
select customproperty32 as Id from entitlement_values where customproperty32 in ( select accounttype from accounts where accounttype ='Privileged')