Workday Status issue

Which IIQ version are you inquiring about?

Version 8.4

Please share any images or screenshots, if relevant.

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

Hello Experts,

Can you please help us on this issue. i have noticed that Workday link status is disabled in IIQ but link Workday_Status_c attribute is Active.

Attached screenshot for reference. Please help on this.

Attribute which in IIQ holds information related to the status in GUI is called IIQDisabled. You have to write short customization rule which translates Workday_Status_c to IIQDisabled attribute.

It would be something like that

<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE Rule PUBLIC "sailpoint.dtd" "sailpoint.dtd">
<Rule language="beanshell" name="WorkdayStatusCustomizationRule" type="ResourceObjectCustomization">
<Source>
String workdayStatus = object.get("Workday_Status_c");
if(!"Active".equals(workdayStatus)) {
object.put("IIQDisabled", isDisabled);
}
return object;
</Source>
</Rule>

You have to add it here

of course if you status name is different you have to customize a bit the rule I wrote.

3 Likes

Yes. it is working with customization rule.

Thanks

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