niket345
(Niket Telavane)
May 29, 2024, 5:59am
1
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.
kjakubiak
(Kamil Jakubiak)
May 29, 2024, 6:03am
2
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
niket345
(Niket Telavane)
May 29, 2024, 6:14am
3
Yes. it is working with customization rule.
Thanks
system
(system)
Closed
July 28, 2024, 6:15am
4
This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.