Share all details related to your problem, including any error messages you may have received.
Hi all,
We are experiencing an unusual issue related to entitlement owner certification. We see there are a few duplicate access review items present under an entitlement owner certification. This issue could not be replicated in the lower dev and test environment. Is this a SailPoint bug or we have any patches for the resolution or entitlement related?
@rabshrestha We had similar one. try by Exclusion Rule,
a. First See if there you will get duplicate items
b. if yes, then we need to use Set filterItems = new HashSet(); // Set will only maintain Unique items.
try some code like
`
if (certifiable instanceof EntitlementGroup) {
EntitlementGroup group= (EntitlementGroup) certifiable ;
String groupName = (String) group.getName();
// Print here groupName so see if any duplicate names here
}
`
Once you see duplicate names then it’s easy to handle duplicate case. You can clear the items and again add in items by items.addAll(filterItems);
Thank you Kumar for your insights. Can the exclusion rule be applied for targeted certification as I do not see to set exclusion rule selection from the UI while configuring the targeted certification?