Alert When Transaction Amount Is Greater than Specified Amount

Use this event handler to automatically notify mobile users when the amount of a transaction for a specified account is greater than a specified amount. To receive this notification, users must be subscribed to the TransactionAmountAlert publication, specifying the account to watch and the amount that triggers the alert. The notification will be an external email and a message sent to the CloudSuite Industrial Inbox form.

Users should schedule this event to run before they post journals. For example, if they normally post journals to the ledger on Fridays, they could schedule the alert checking logic to fire Thursday night. If the users instead decided to have the alert checking run every day, they could receive an alert every day for the same transaction amounts, until the journals are posted at the end of the week. So they might receive five e-mails, one per day, for the same high transaction that was created on Monday.

This is the text of the notification that is sent:

Subject: Transaction Amount Alert
Body: Transaction amounts for the accounts below are over the specified amounts.

Account   Amount   Date   Journal   Sequence

Associated Event and IDO

The event TransactionAmountAlert for the Journals IDO triggers this notification.  

Event Trigger

  • Condition: CONDITION(DATEPART(hour, CURDATETIME()) = 15)
  • Condition Retest Interval: 60
  • Trigger Reset Interval: 85,500
  • Schedule: Fires daily at 3 p.m. Trigger sleeps for 23 ¾ hours, then awakens and checks each minute until 3 p.m. arrives again.
Related topics