For Targeted certification, I am working on adding a Manager as approver, once the original certifier certifies the access review. But the rule I am using is not running at all ( Don’t see any logs)
I have added the rule as below
import sailpoint.object.Identity;
// This requires approval all the up the manager hierarchy. Once we get
// to the most senior manager, approvals stop.
Identity identity = certifier.getManager();
if (identity != null) {
Map results = new HashMap();
results.put(“identity”, identity);
return results;
} else {
return null;
}