Retrieving Entitlements from application

Which IIQ version are you inquiring about?

IdentityIQ 8.3p2

Hi All,

I’m creating a quick link for user to request access for specific application, I need to show in dropdown list of entitlements present in that application to user to select, How to fetch all entitlements in that application and show in drop down? Please suggest a way for this.

In your Form, You can add the Field as below.

<Field displayName="Entitlements" filterString="application.name==&quot;YOUR_APPLICATION_NAME&quot;" name="entitlement" type="ManagedAttribute"/>

Hi @Arpitha1 ,
Thank you for the response ,doesn’t it need any script? can the values come in dropdown if we add like this?

Yes, no need of additional script.

type=“ManagedAttribute” represents data needs to be fetched from ManagedAttribute Class.
key filterString is to filter the data, here you can replace YOUR_APPLICATION_NAME with your application name.

1 Like