You can use the same logic - But, in the notification use it as (n-1).notificationCounter = 0;notificationCounter = 1 - Notification to User (creator of incident)notificationCounter = 2 - Notification to User and Manager(notification 1 = (notificatio...
So, to understand better -n=counter; (Default = 0)n=1 - Notification to User (creator of incident)n=2 - Notification to User and Managern=3 - Notification to User You can use if conditions or Switch statements to drive what notification to trigger.
Create an integer field on the table you are trying to trigger an event off. Set the default value of the field to 0.Every time you trigger the event, increment the value prior to event trigger and use that field in the body of the notification.Hope ...
Hi Lorenzo,Did you try using g_form.getDecimalValue function? You don't have to retrieve using getValue() and then use the split function.var unitCost = g_form.getDecimalValue("unit_cost"); // This should give you the right result.-Nishant.