Duplicate Access Review Item during active certification

Which IIQ version are you inquiring about?

Version 8.X

Please share any other relevant files that may be required (for example, logs).

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?

Regards,
Rabin

@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);

Let’s meet again after your test.

1 Like

Samples you will get from here, you will get other from compass.

Solved: Entitlement Owner Certification Exclusion Rule - Compass (sailpoint.com)

1 Like

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?

Regards,
Rabin

Hi @rabshrestha,

Yes, you can apply exclusion rule in Targeted Certificate. It is just not available from UI.

You can add the exclusion rule entry in the template from debug page.

Thanks

1 Like

@rabshrestha

You can look for Cert template you saved,

CertificationDefinition → You will get your template → add one line

<entry key="exclusionRuleName" value="Your exclusion Rule Name"/>

Hope this will help.

1 Like

Hi and Helo,
@rabshrestha

here in Advanced:

Regards,
Adam

1 Like

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.