Add desc to entitlements

Hi Team,

I am getting entitlements from a jdbc source and they have certain attributes with them like display name, role desc etc
How can i show that role desc in the request centre when the end user is requesting access to that ent?
form update name to “CIMS UI Access Requests” to “CIMS UI Access Requests (awaiting approval)”

Hello @Deepanshu07

Have you created Entitlement Schema for this Source ? There should be an Entitlement Schema with Description Attribute which will show up for that entitlement in request centre .

Step 1:
Entitlement Schema :

Step 2 :
Group Query:
Query to fetch the description from the table with Description as Column name

Perform Entitlement Aggregation you should be able to see Description in the Entitlements section :

The same description can be seen in the request centre for corresponding entitlement:

2 Likes

Out of the box, an entitlement attribute directly named description will be populated as a description. If you want to continue to use the ROLEDESCRIPTION name, you will need to modify the schema of the entitlement type to directly point to that attribute:

{
    "nativeObjectType": "entitlement-type",
    "identityAttribute": "id",
    "displayAttribute": "name",
    "hierarchyAttribute": null,
    "includePermissions": false,
    "features": [],
    "configuration": {
        "descriptionAttribute": "roleDescription"
    },
    ...
}
1 Like