Search Results threshold_or_escalation_group
Overview
APPS.ALR_ALERT_HISTORY_VIEW is a reporting view in the Oracle E-Business Suite Alert Manager (ALR) schema that consolidates alert definition metadata with the execution history of alert actions. It joins the alert action definition view to the check-action history view on a composite key covering application, alert, action set, action set member, action, and action version. The view is read-only and is intended for inquiry and reporting rather than transactional processing.
Its role is to expose, in a single denormalized result set, both what an alert action is configured to do and what actually happened when the alert was evaluated. Parameters such as action set sequence, action set member sequence, and alert check date are surfaced together with execution outcomes including exceptions raised, actions performed, and output values. This makes the view a convenient source for operational monitoring reports, alert performance analysis, and integration extracts. Because the user search term was "action_set_member_sequence," it is worth noting that this column is projected directly from the alert actions view and identifies the position of a member within its action set, which is essential for ordering actions as the alert engine executes them.
Underlying Base Objects
Per the documented ETRM metadata, the view is defined over exactly two base objects, both of which are themselves views in the APPS schema:
- ALR_CHECK_ACTION_HISTORY_VIEW (aliased H) — supplies the historical and execution-oriented columns, such as alert check date, purge date, check success flag, oracle id, number of exceptions, number of actions performed, action level, action executed flag, exception sequence, and output attributes.
- ALR_ALERT_ACTIONS_VIEW (aliased A) — supplies the alert and action definition columns, including alert name, action set name and sequence, action set member sequence and type, action group name, threshold or escalation group, action name, action version number, action level type, and action type.
The two views are correlated in the WHERE clause on six equality predicates: application_id, alert_id, action_set_id, action_set_member_id, action_id, and action_version_number. Consequently, history rows are only returned where a matching current action definition exists; alerts whose definitions have been removed may not appear.
Key Columns
- APPLICATION_ID, ALERT_NAME, ALERT_CHECK_DATE — identify the application, the alert, and the point in time at which the check was evaluated.
- ACTION_SET_NAME, ACTION_SET_SEQUENCE — the action set invoked and its ordering relative to other sets.
- ACTION_SET_MEMBER_SEQUENCE, ACTION_SET_MEMBER_TYPE — the ordinal position and type of the member within the action set, governing execution order.
- ACTION_NAME, ACTION_VERSION_NUMBER, ACTION_LEVEL_TYPE, ACTION_TYPE — the specific action executed, its version, its level, and its classification.
- NUMBER_OF_EXCEPTIONS, NUMBER_OF_ACTIONS_PERFORMED, ACTION_EXECUTED_FLAG — quantitative execution outcomes and the flag indicating whether the action ran.
- EXCEPTION_SEQUENCE, ACTION_LEVEL, OUTPUT_NAME, OUTPUT_DATA_TYPE, OUTPUT_VALUE — per-exception detail and the output produced by the action.
- HISTORY_PURGE_DATE, ALERT_CHECK_SUCCESS_FLAG, ACTION_SET_CHECK_SUCCESS_FLAG — retention and success indicators for the check and action set.
Common Use Cases and Queries
Typical uses include auditing which alert actions executed, reviewing exceptions raised over a period, and validating the configured execution order of action set members.
- Investigate a specific alert's action history, ordered by execution sequence:
SELECT alert_name, alert_check_date, action_set_name,
action_set_member_sequence, action_name, action_executed_flag,
number_of_exceptions, output_value
FROM apps.alr_alert_history_view
WHERE alert_name = :p_alert_name
ORDER BY alert_check_date DESC, action_set_member_sequence;
- Summarize failures by action to identify problematic definitions:
SELECT action_name, action_type,
COUNT(*) AS executions,
SUM(number_of_exceptions) AS total_exceptions
FROM apps.alr_alert_history_view
WHERE alert_check_success_flag = 'N'
GROUP BY action_name, action_type;
- Verify the sequence of members configured for an action set:
SELECT DISTINCT action_set_name, action_set_member_sequence,
action_set_member_type, action_name
FROM apps.alr_alert_history_view
WHERE alert_name = :p_alert_name
ORDER BY action_set_name, action_set_member_sequence;
Because all base objects are views, queries against ALR_ALERT_HISTORY_VIEW may involve significant join and aggregation cost on large history volumes; restricting by application, alert, or check date is advisable.
-
VIEW: APPS.ALR_ALERT_HISTORY_VIEW
12.1.1
-
View: ALR_ALERT_HISTORY_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ALR.ALR_ALERT_HISTORY_VIEW, object_name:ALR_ALERT_HISTORY_VIEW, status:VALID, product: ALR - Alert , description: All the alert check and alert action history currently stored , implementation_dba_data: APPS.ALR_ALERT_HISTORY_VIEW ,
-
View: ALR_ALERT_HISTORY_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ALR.ALR_ALERT_HISTORY_VIEW, object_name:ALR_ALERT_HISTORY_VIEW, status:VALID, product: ALR - Alert , description: All the alert check and alert action history currently stored , implementation_dba_data: APPS.ALR_ALERT_HISTORY_VIEW ,
-
VIEW: APPS.ALR_ALERT_HISTORY_VIEW
12.2.2
-
View: ALR_ALERT_ACTIONS_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ALR.ALR_ALERT_ACTIONS_VIEW, object_name:ALR_ALERT_ACTIONS_VIEW, status:VALID, product: ALR - Alert , description: Actions that are attached to an action set , implementation_dba_data: APPS.ALR_ALERT_ACTIONS_VIEW ,
-
View: ALR_ALERT_ACTIONS_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ALR.ALR_ALERT_ACTIONS_VIEW, object_name:ALR_ALERT_ACTIONS_VIEW, status:VALID, product: ALR - Alert , description: Actions that are attached to an action set , implementation_dba_data: APPS.ALR_ALERT_ACTIONS_VIEW ,
-
VIEW: APPS.ALR_ALERT_ACTIONS_VIEW
12.1.1
-
VIEW: APPS.ALR_ALERT_HISTORY_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ALR.ALR_ALERT_HISTORY_VIEW, object_name:ALR_ALERT_HISTORY_VIEW, status:VALID,
-
VIEW: APPS.ALR_ALERT_ACTIONS_VIEW
12.2.2
-
VIEW: APPS.ALR_ALERT_ACTIONS_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ALR.ALR_ALERT_ACTIONS_VIEW, object_name:ALR_ALERT_ACTIONS_VIEW, status:VALID,
-
VIEW: APPS.ALR_ALERT_ACTIONS_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ALR.ALR_ALERT_ACTIONS_VIEW, object_name:ALR_ALERT_ACTIONS_VIEW, status:VALID,
-
VIEW: APPS.ALR_ALERT_HISTORY_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ALR.ALR_ALERT_HISTORY_VIEW, object_name:ALR_ALERT_HISTORY_VIEW, status:VALID,
-
eTRM - ALR Tables and Views
12.1.1
description: Response text for each possible response to an alert message ,
-
eTRM - ALR Tables and Views
12.2.2
description: Response text for each possible response to an alert message ,