Hi. I have not tried Notifier rules out too much, but I believe the answer to your question will depend on which entity your rule is configured for. Are you configuring this for the “Event” or “Action” entity?
If this was me, I would configure the notifier on the “Action” entity, then slightly change the rule:
$new.event.actionTypeCount = 1 AND $new.actionType.shortCode = "ASSIGN"
Again, this is just a thought, I have not tried this.
Also something to keep in mind, it seems that Notifier rules are limited to 255 characters, which is not ideal. We have a lot of custom notification in our Action Processor, which can not be converted to only 255 characters.
Documented examples from IFS are definitely needed for this new product.
Duncan
Hello Federico,
We are using the Notifier rule set to the Entity ‘Action’
- Notification email to be sent when an event is created (first assign action) $new.actionType.shortCode = "ASSIGN" and $new.actionTypeCount = 0
- Notification email to be sent when an event is assigned to another SVD
$new.actionType.shortCode = "ASSIGN" and $new.actionTypeCount > 0
Hope this helps.
Best Regards,
Caroline
Hi everyone,
Thank you all for your support.
@Caroline Schaffner, your solution works perfectly—really appreciate your help!