Queries on certification

Which IIQ version are you inquiring about?

8.4p1

Share all details about your problem, including any error messages you may have received.

Hello All, i am trying to tackle a problem related to a delimited application. Given the nature of the application, SailPoint creates the remediation workitem… this is what i don’t want.
My questions

  1. Is there a way that i can block this remediation workitem to be created from? or Auto close it ?
  2. if 1 is not possible, how can i change the owner of the workitem?
  3. for this application if i do a advance certification it tags my team workgroup as default owner, but when i do an entitlement owner certification, it gets assigned to entitlement owners . Can i change this so that even entitlement owner certification remediation go to a workgroup

@rohit_jaiswal1 did you get answer to it? how to change remediation owner

Hi @gavhanet
Default behavior of Entitlement owner certification is that it automatically assigns entitlement owner as certifier. You can bypass this in Entitlement owner cert. You can achieve this in Advanced/Targetted Certification.

Hi @Rohit,
Write a rule that defines the process for work item forwarding and work item completion

You can write a signoff rule : In this rule you can set the RemediationKickedOff to true for the item which one you do not need to be generate the remediation workitem.

Follow this:
-set the RemediationKickedOff to true
-Call the action.remediate API
-create the provisioning plan and set to the action.

This is not full code , just API which need to use.

ProvisioningPlan provPlan = new ProvisioningPlan();
action.remediate(certification.getId(), ent.getIdentity(context), certWorkItems.get(0).getId(),CertificationAction.RemediationAction.NoActionRequired, certCertifiers.get(0), null,certComments, null, null);

action.setRemediationKickedOff(true);
action.setRemediationDetails(provPlan);

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