Attibutes are getting empty or scrubed

Which IIQ version are you inquiring about?

8.2p1

Please share any images or screenshots, if relevant.

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

[Please insert files here, otherwise delete this section]

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

I am seeing in the audit log that for one user an attribute is either getting empty or scrubbed. Is it done by SailPoint or target system. As this is happend 4th time and how can i fix this issue.

Best Regards
Amit

@ayadav_12
Do you have any source mapping in Identity mappings for this attribute, did you check that?

Hi Satish,

Yes a rule is mentioned in source mapping which can be used to mention either allow or deny state in extension attribute for azure account it will either create it or delete it.

Regards
Amit

Please share the rule, looks like the rule is making it blank.

Hi Satish,

below is the rule mentioned.
String type = identity.getAttribute(“type”);

if(type!=null){
type = type.toLowerCase();
if(type.equals(“employee”) || type.equals(“contractor”) || type.equals(“Employee-MADJV”)){
return “AllowSync”;
} else {
return “DenySync”;
}
}
return null;

Check the data consistency: Before the rule is executed, ensure that the “type” attribute has valid values for all users.

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