Rule-Based Alert

Rule-Based Alerts are designed for specific conditions. There are two types of Rule-Based Alerts:

1) Simple Alerts

Simple alerts are rule-based alerts created based on System Views related to the entity whose Entity Configuration has been selected.

To know how to create Rule-Based Simple Alerts, please click here.

2) Advanced Alerts

Alerts can be created based on conditions.

For eg. If you want to create alerts for all the Invoices whose Total Amount is greater than or equal to 1000 then you have to enter the Fetch XML for it. Below is the Fetch XML for Total Amount in Invoices greater than or equal to 1000.

<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false">
  <entity name="invoice">
    <attribute name="name" />
    <attribute name="customerid" />
    <attribute name="statuscode" />
    <attribute name="totalamount" />
    <attribute name="invoiceid" />
    <order attribute="name" descending="false" />
    <filter type="and">
      <condition attribute="totalamount" operator="ge" value="1000" />
    </filter>
  </entity>
</fetch>

In the same way, you can create Advanced Alerts for other records also.

To know how to create Rule-Based Advanced Alerts, please click here.

For any queries, reach out to us at crm@inogic.com

Last updated