Inactive Attribute not being updated to trigger RapidSetup Leaver Event
Hi,
I have set the IIQ Inactive Attribute to be true when it detects the status attribute from my HR system is Inactive in the Creation rule.
import sailpoint.object.Identity;
import sailpoint.object.ResourceObject;
//Set the Inactive IIQ Attribute based on Status from HR system
String status = account.getStringAttribute("Status");
if( (status !=null) && (status.equalsIgnoreCase("Inactive"))){
identity.setInactive(true);
} else{
identity.setInactive(false);
}
But the Inactive attribute is not being defined “Inactive = true” even with Identity’s that has Inactive status (from HR) during aggregation. Besides, when I filter the identities based on “Is Inactive” under Advanced Analytics, it shows all the Identity as “Inactive = false”.
May I know what is causing the error and how can I resolve it?
Thank you!