2.6 Configuring Do Not Disturb(DND) for Mandatory Alerts

DND alerts can be configured by the following steps:

  1. Creating Alert Categories in the DIGX_EP_CAT_B table.

    Alert categories can be created in the DIGX_EP_CAT_B table using the following script.

    INSERT INTO digx_ep_cat_b (cat_id, cat_name) VALUES (categoryId,categoryName);

    For example: The below script can be used to add an alert category for Approval events.

    INSERT INTO digx_ep_cat_b (cat_id, cat_name) VALUES ( 'APR', 'Approval');

    Column Name Description
    CAT_ID Unique alert category Id
    CAT_NAME Name of the alert category
  2. Mapping alert categories to alert events

    To map the alert categories to the events in DIGX_EP_ACT_EVT_B table the following script can be used.

    UPDATE digx_ep_act_evt_b SET cat_id = 'APR' where cod_act_id like ('%com.ofss.digx.app.approval.service.transaction%');

    Note:

    This functionality is applicable only for mandatory alerts.