Search Results alr_action_group_members
Overview
The ALR_ACTION_GROUP_MEMBERS table is a core data structure within the Oracle E-Business Suite (EBS) Alert (ALR) module. It functions as a junction or mapping table that defines the relationship between alert action groups and the specific actions they contain. In the EBS architecture, an alert is a business rule that monitors database changes and can trigger notifications. Action groups are logical sets of one or more executable actions, such as sending an email or launching a concurrent program. This table's primary role is to maintain the membership of individual actions within these groups, enabling the modular and reusable design of alert responses across both EBS 12.1.1 and 12.2.2 versions.
Key Information Stored
The table's structure is designed to enforce data integrity and manage the lifecycle of action group membership. Its primary key is a composite of APPLICATION_ID and ACTION_GROUP_MEMBER_ID. Key columns include APPLICATION_ID, which scopes the data to a specific EBS application; ALERT_ID and ACTION_GROUP_ID, which identify the parent alert and action group; and ACTION_ID, which specifies the particular action included in the group. The END_DATE_ACTIVE column is critical for controlling the effective period of the membership, allowing administrators to deactivate a member action without deleting the historical record. This supports auditability and phased implementation of alert logic changes.
Common Use Cases and Queries
This table is central to administrative and diagnostic activities related to alerts. A common use case is auditing the complete action sequence for a specific alert to understand its business logic. Developers and system administrators often query this table to verify action group composition or troubleshoot alerts that are not executing as expected. A typical diagnostic query would join ALR_ACTION_GROUP_MEMBERS with ALR_ACTIONS and ALR_ACTION_GROUPS to list all active actions for an alert.
Sample Query:
SELECT agm.alert_id, agm.action_group_id, agm.action_id, a.action_name
FROM alr_action_group_members agm,
alr_actions a
WHERE agm.application_id = a.application_id
AND agm.action_id = a.action_id
AND agm.alert_id = <ALERT_ID>
AND (agm.end_date_active IS NULL OR agm.end_date_active > SYSDATE)
ORDER BY agm.action_group_id;
Related Objects
As indicated by its foreign key constraints, ALR_ACTION_GROUP_MEMBERS has direct dependencies on three primary Alert module tables. It references ALR_ALERTS (via APPLICATION_ID and ALERT_ID) to link membership to a specific alert definition. It references ALR_ACTION_GROUPS (via APPLICATION_ID and ACTION_GROUP_ID) to associate members with their parent container. Finally, it references ALR_ACTIONS (via APPLICATION_ID and ACTION_ID) to identify the executable action that is a member of the group. This table is typically accessed indirectly through the Oracle Alert manager forms and APIs, which provide the standard interface for creating and maintaining these relationships.
-
Table: ALR_ACTION_GROUP_MEMBERS
12.1.1
owner:ALR, object_type:TABLE, fnd_design_data:ALR.ALR_ACTION_GROUP_MEMBERS, object_name:ALR_ACTION_GROUP_MEMBERS, status:VALID, product: ALR - Alert , description: Member actions of an alert action group , implementation_dba_data: ALR.ALR_ACTION_GROUP_MEMBERS ,
-
Table: ALR_ACTION_GROUP_MEMBERS
12.2.2
owner:ALR, object_type:TABLE, fnd_design_data:ALR.ALR_ACTION_GROUP_MEMBERS, object_name:ALR_ACTION_GROUP_MEMBERS, status:VALID, product: ALR - Alert , description: Member actions of an alert action group , implementation_dba_data: ALR.ALR_ACTION_GROUP_MEMBERS ,
-
APPS.ALR_ACTION_GROUP_MEMBERS_PKG dependencies on ALR_ACTION_GROUP_MEMBERS
12.1.1
-
APPS.ALR_ACTION_GROUP_MEMBERS_PKG dependencies on ALR_ACTION_GROUP_MEMBERS
12.2.2
-
VIEW: ALR.ALR_ACTION_GROUP_MEMBERS#
12.2.2
owner:ALR, object_type:VIEW, object_name:ALR_ACTION_GROUP_MEMBERS#, status:VALID,
-
TRIGGER: APPS.ALR_ACTION_GROUP_MEMBERS+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:ALR_ACTION_GROUP_MEMBERS+, status:VALID,
-
APPS.ALR_ACTION_GROUP_MEMBERS_PKG dependencies on ALR_ACTION_GROUP_MEMBERS_S
12.1.1
-
APPS.ALR_ACTION_GROUP_MEMBERS_PKG SQL Statements
12.2.2
-
APPS.ALR_ACTION_GROUP_MEMBERS_PKG SQL Statements
12.1.1
-
SYNONYM: APPS.ALR_ACTION_GROUP_MEMBERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:ALR_ACTION_GROUP_MEMBERS, status:VALID,
-
SYNONYM: APPS.ALR_ACTION_GROUP_MEMBERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:ALR_ACTION_GROUP_MEMBERS, status:VALID,
-
APPS.ALR_ACTION_GROUP_MEMBERS_PKG dependencies on ALR_ACTION_GROUP_MEMBERS_S
12.2.2
-
VIEW: ALR.ALR_ACTION_GROUP_MEMBERS#
12.2.2
-
TRIGGER: APPS.ALR_ACTION_GROUP_MEMBERS+
12.2.2
-
TABLE: ALR.ALR_ACTION_GROUP_MEMBERS
12.1.1
owner:ALR, object_type:TABLE, fnd_design_data:ALR.ALR_ACTION_GROUP_MEMBERS, object_name:ALR_ACTION_GROUP_MEMBERS, status:VALID,
-
TABLE: ALR.ALR_ACTION_GROUP_MEMBERS
12.2.2
owner:ALR, object_type:TABLE, fnd_design_data:ALR.ALR_ACTION_GROUP_MEMBERS, object_name:ALR_ACTION_GROUP_MEMBERS, status:VALID,
-
PACKAGE BODY: APPS.ALR_ACTION_GROUP_MEMBERS_PKG
12.1.1
-
PACKAGE BODY: APPS.ALR_ACTION_GROUP_MEMBERS_PKG
12.2.2
-
FUNCTION: APPS.ALR_ACTION_GROUP_MEMBERS=
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
FUNCTION: APPS.ALR_ACTION_GROUP_MEMBERS=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:ALR_ACTION_GROUP_MEMBERS=, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
Table: ALR_ACTION_GROUPS
12.2.2
owner:ALR, object_type:TABLE, fnd_design_data:ALR.ALR_ACTION_GROUPS, object_name:ALR_ACTION_GROUPS, status:VALID, product: ALR - Alert , description: Alert action, threshold, and escalation groups , implementation_dba_data: ALR.ALR_ACTION_GROUPS ,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.ALR_ALERT_ACTIONS_VIEW
12.1.1
-
12.1.1 DBA Data
12.1.1
-
Table: ALR_ACTION_GROUPS
12.1.1
owner:ALR, object_type:TABLE, fnd_design_data:ALR.ALR_ACTION_GROUPS, object_name:ALR_ACTION_GROUPS, status:VALID, product: ALR - Alert , description: Alert action, threshold, and escalation groups , implementation_dba_data: ALR.ALR_ACTION_GROUPS ,
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.ALR_ALERT_ACTIONS_VIEW
12.2.2
-
PACKAGE BODY: APPS.ALR_ACTION_GROUP_MEMBERS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:ALR_ACTION_GROUP_MEMBERS_PKG, status:VALID,
-
APPS.ALR_ACTION_GROUP_MEMBERS_PKG dependencies on FND_LOAD_UTIL
12.2.2
-
APPS.ALR_ACTION_GROUP_MEMBERS_PKG dependencies on FND_LOAD_UTIL
12.1.1
-
Table: ALR_ACTIONS
12.1.1
owner:ALR, object_type:TABLE, fnd_design_data:ALR.ALR_ACTIONS, object_name:ALR_ACTIONS, status:VALID, product: ALR - Alert , description: Alert and response actions , implementation_dba_data: ALR.ALR_ACTIONS ,
-
Table: ALR_ACTIONS
12.2.2
owner:ALR, object_type:TABLE, fnd_design_data:ALR.ALR_ACTIONS, object_name:ALR_ACTIONS, status:VALID, product: ALR - Alert , description: Alert and response actions , implementation_dba_data: ALR.ALR_ACTIONS ,
-
PACKAGE BODY: APPS.ALR_ACTION_GROUP_MEMBERS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:ALR_ACTION_GROUP_MEMBERS_PKG, status:VALID,
-
Table: ALR_ALERTS
12.2.2
owner:ALR, object_type:TABLE, fnd_design_data:ALR.ALR_ALERTS, object_name:ALR_ALERTS, status:VALID, product: ALR - Alert , description: Alerts defined on application tables , implementation_dba_data: ALR.ALR_ALERTS ,
-
Table: ALR_ALERTS
12.1.1
owner:ALR, object_type:TABLE, fnd_design_data:ALR.ALR_ALERTS, object_name:ALR_ALERTS, status:VALID, product: ALR - Alert , description: Alerts defined on application tables , implementation_dba_data: ALR.ALR_ALERTS ,
-
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.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_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,
-
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 ,