Hi All, We are implementing Workday as authoritative, however for future hires links are aggregating as disabled.How do we change it to enabled while aggregating itself
you can handle this in your customization rule, within customization rule check the hire date condition and set object.setAttribute(“IIQDisabled”, false) for future hires.
@ashishpprakash you have to consider some use case like
- is this on Rescinded Future Hire records
- is there any future offset range set ?
you will get all these details in workday connector doc.
Do you want to enable all applications that were there on the identity or only for this application?
If it is only for this application, then use the customization rule, in which you write a logic to check if the user is not a future hire and then set IIQDisabled as false.
If it is for other applications, then you can do it in a workflow (use lifecycle events like activation or post-hire) in that you can write logic to enable all applications associated with the identity.
This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.