I'm trying to use an IIF function with an attribute that has a Boolean value but I can't get it to work.
Examples:
I have an attribute named DisableNotification, it holds a Boolean value
I have tried the following but they do not seem to work.
IIF([//Target/DisableNotification],Null(),[//WorkflowData/NotificationList])
IIF(Eq([//Target/DisableNotification],True),Null(),[//WorkflowData/NotificationList])
Anyone know how to use a boolean attribute with an IIF statement in a FIM WAL Activity?