Share

Reminder Utility Parameters

The Reminder Utility Library script contains the function setTimer that can be called with several different parameters. The description of the parameters are described in the function.

image

As a minimum 2 parameters must be called as in the example in this document. If a parameter is not needed, then it should be replaced with “”

Typical Use Cases

Use Case Details Code
Basic Use Case Send Notifications 1 day before assigned Target Date to selected user setTimer("CLAIM_HANDLER","CLAIM_HANDLER_TARGET_DATE",”,”1”);
Custom Subject & Message Send notification with custom subject & message instead of defaults setTimer("CLAIM_HANDLER","CLAIM_HANDLER_TARGET_DATE",”,”1”, "custom subject", "custom message");
Notify Task Owner If task is due CC task owner setTimer("CLAIM_HANDLER","CLAIM_HANDLER_TARGET_DATE",”,”1”, "custom subject", "custom message",true);

Was this information helpful?