Tables:
ALR_ALERTS - It stores the alerts definition and the query
ALR_ACTIONS - It stores alert action information, ex. email subject, body and other infromation
ALR_ACTIONS_V -- It is a view based on ALR_ACTIONS
Query:
SELECT alert_name,
description,
start_date_active,
DECODE (alert_condition_type, 'P', 'Periodic', 'E', 'Event')
ALERT_TYPE,
frequency_type,
insert_flag,
update_flag
FROM APPS.alr_alerts
WHERE enabled_flag = 'Y'
AND end_date_active IS NULL
AND alert_name LIKE 'AA%'
SELECT *
FROM apps.ALR_ACTIONS_V
WHERE subject LIKE 'XX%Notification%'
No comments:
Post a Comment