Joiner Event is not getting triggered

IIQ Version: 8.0

Hello All,
I’m looking for some insights in the issue that Joiner event is not getting triggered.
We configured AD application as Authoritative. New identity will be created in IIQ with account aggregation from AD.

For testing, I have created a simple rule that will log and this rule in configured in Lifecycle Event - Joiner. Rule working fine.


image

Hi @pradeepkum

The joiner workflow should receive parameters “identityName” and “event”.

You can use “event.getNewObject()” to get the identity.

1 Like

@pradeepkum
In trigger some time you will get newIdentity as void or null. add one check at very first line.

if(newIdentity == null || newIdentity == void) {
return false;
}
// continue your next steps

Hello @paul_hilchey
Its working. Thank you and Thanks to @pravin_ranjan

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