Share all details about your problem, including any error messages you may have received.
In SailPoint IdentityIQ, certain entitlements were initially created as Entitlement type and later recreated correctly as Group type. However, the original Entitlement type values are still appearing in certifications and causing confusion.
How can you identify and remove or clean up the old Entitlement type entries from IdentityIQ so they no longer appear in certifications? What steps or methods would you follow?
You can create a filter like Filter.and(Filter.eq(application.name,"application_Name"),Filter.eq("attribute","Entitlement")
This could create a filter of all the entitlement of your application, with attribute name as āEntitlementā you can as this filter to QueryOptions and iteratate over them to deleted all the Entitlements which is not required,
Hi @santhirajumunganda,
If you are looking to delete the entitlements of a type from IIQ to avoid them appearing in further certifications, you can try doing one of these approaches
Delete from Debug :
This method is generally safer.Go to ManagedAttribute in the Object Browser, you can sort the Type column and look for entries with entitlement. If there are only a limited entries, you can manually delete them one by one.
Delete from database using DELETE FROM identityiq.spt_managed_attribute WHERE type = 'entitlement';
Make sure to proceed with this approach only if there are no other dependencies.
Hello @dheerajk27 I tested your rule and it is successfully deleting the entitlements from the attribute. However, I would like to restrict it to delete only those with the type āEntitlementā. Could you please assist with that? you can check the below ss
Hi @manogna99, thank you for your response. While both approaches seem good, Iām specifically looking for a rule or task that can remove only entitlements of this particular type. Iād appreciate it if you could let me know how this can be achieved.