Search Results mail_sender_name
Overview
AMS_TRIGGER_ACTIONS is a Marketing (AMS) module table in Oracle E-Business Suite 12.1.1 and 12.2.2 that stores all actions that can be performed when a particular trigger fires. Within Oracle Advanced Marketing, triggers represent event-driven conditions—such as a customer milestone, a list membership change, or a campaign response—and this table defines the actionable responses configured against each trigger. Each row describes a single action, its execution mode, approval requirements, and any associated deliverable, offer, or list artifact.
From a Data Vault modeling perspective, the mined heuristic classification of AMS_TRIGGER_ACTIONS is satellite-leaning. This suggests the table behaves primarily as a descriptive satellite attached to a parent trigger hub, carrying the attribute detail of configured actions rather than acting as an independent business key hub or a pure link between entities. The multiple foreign keys to AMS_TRIGGERS, AMS_LIST_HEADERS_ALL, AMS_ACT_OFFERS, AMS_DELIVERABLES_ALL_B, and other reference tables reinforce this satellite interpretation, since the table captures context and attributes for actions belonging to a trigger.
Key Information Stored
The table is defined in the AMS schema with 28 documented columns. Its surrogate primary key is TRIGGER_ACTION_ID, enforced by the AMS_TRIGGER_ACTIONS_PK constraint and mirrored by the unique index AMS_TRIGGER_ACTIONS_U1. This identifier uniquely distinguishes each configured action and is the candidate business key exposed through the unique index.
- TRIGGER_ID — foreign key to AMS_TRIGGERS, identifying the trigger that owns the action.
- ORDER_NUMBER — sequencing of the action relative to other actions for the same trigger.
- EXECUTE_ACTION_TYPE — the type of action to execute when the trigger fires.
- NOTIFY_FLAG and GENERATE_LIST_FLAG — flags controlling notifications and list generation behavior.
- ACTION_NEED_APPROVAL_FLAG and ACTION_APPROVER_USER_ID — approval requirements and the approver resource (JTF_RS_RESOURCE_EXTNS).
- LIST_HEADER_ID and LIST_CONNECTED_TO_ID / ARC_LIST_CONNECTED_TO — list references and their linkage.
- DELIVERABLE_ID — foreign key to AMS_DELIVERABLES_ALL_B.
- ACTIVITY_OFFER_ID — foreign key to AMS_ACT_OFFERS, linking the action to an offer.
- COVER_LETTER_ID — foreign key to GR_COVER_LETTERS_B for correspondence.
- MAIL_SUBJECT, MAIL_SENDER_NAME, FROM_FAX_NO — communication attributes.
- SECURITY_GROUP_ID — foreign key to FND_SECURITY_GROUPS for multi-org/security partitioning.
- PROGRAM_TO_CALL and DSRIPT_NAME — control fields for invoking custom logic.
- OBJECT_VERSION_NUMBER — optimistic locking column for concurrent updates.
Common Use Cases and Queries
Typical usage centers on inspecting and validating trigger configurations. Marketing administrators review which actions are attached to a trigger, their order, and whether approvals are required. Reporting queries frequently join to AMS_TRIGGERS and AMS_ACT_OFFERS to produce an action inventory, while integration logic reads EXECUTE_ACTION_TYPE and PROGRAM_TO_CALL to determine execution behavior.
- Action inventory per trigger: join AMS_TRIGGER_ACTIONS to AMS_TRIGGERS on TRIGGER_ID.
- Approval routing analysis: join to JTF_RS_RESOURCE_EXTNS on ACTION_APPROVER_USER_ID.
- Offer and deliverable dependency reporting: join to AMS_ACT_OFFERS and AMS_DELIVERABLES_ALL_B.
- Action outcome tracking: join to AMS_TRIGGER_RESULTS on TRIGGER_RESULT_FOR_ID = TRIGGER_ACTION_ID.
A representative query shape is SELECT ta.trigger_action_id, ta.trigger_id, ta.order_number, ta.execute_action_type FROM ams.ams_trigger_actions ta WHERE ta.trigger_id = :trigger_id ORDER BY ta.order_number;
Related Objects
The most significant related objects, based on documented foreign key relationships, are the following.
- AMS_TRIGGERS — parent trigger definition; joined via TRIGGER_ID.
- AMS_TRIGGER_RESULTS — downstream result records referencing this table via TRIGGER_RESULT_FOR_ID.
- AMS_ACT_OFFERS — linked by ACTIVITY_OFFER_ID.
- AMS_DELIVERABLES_ALL_B — linked by DELIVERABLE_ID.
- AMS_LIST_HEADERS_ALL — linked by LIST_HEADER_ID.
- JTF_RS_RESOURCE_EXTNS — approver resource via ACTION_APPROVER_USER_ID.
- FND_SECURITY_GROUPS — security partitioning via SECURITY_GROUP_ID.
- GR_COVER_LETTERS_B — cover letter reference via COVER_LETTER_ID.
-
Table: AMS_TRIGGER_ACTIONS
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_TRIGGER_ACTIONS, object_name:AMS_TRIGGER_ACTIONS, status:VALID, product: AMS - Marketing , description: AMS_TRIGGER_ACTIONS stores all actions that can be peformed when a particular Trigger Fires. , implementation_dba_data: AMS.AMS_TRIGGER_ACTIONS ,
-
Table: AMS_CAMPAIGN_SCHEDULES
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_CAMPAIGN_SCHEDULES, object_name:AMS_CAMPAIGN_SCHEDULES, status:VALID, product: AMS - Marketing , description: This table is obsoleted and no longer in use. , implementation_dba_data: AMS.AMS_CAMPAIGN_SCHEDULES ,
-
Table: AMS_TRIGGER_ACTIONS
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_TRIGGER_ACTIONS, object_name:AMS_TRIGGER_ACTIONS, status:VALID, product: AMS - Marketing , description: AMS_TRIGGER_ACTIONS stores all actions that can be peformed when a particular Trigger Fires. , implementation_dba_data: AMS.AMS_TRIGGER_ACTIONS ,
-
Table: AMS_CAMPAIGN_SCHEDULES
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_CAMPAIGN_SCHEDULES, object_name:AMS_CAMPAIGN_SCHEDULES, status:VALID, product: AMS - Marketing , description: This table is obsoleted and no longer in use. , implementation_dba_data: AMS.AMS_CAMPAIGN_SCHEDULES ,
-
Table: AMS_CAMPAIGN_SCHEDULES_B
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_CAMPAIGN_SCHEDULES_B, object_name:AMS_CAMPAIGN_SCHEDULES_B, status:VALID, product: AMS - Marketing , description: Stores all Campaign Schedules , implementation_dba_data: AMS.AMS_CAMPAIGN_SCHEDULES_B ,
-
Table: AMS_CAMPAIGN_SCHEDULES_B
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_CAMPAIGN_SCHEDULES_B, object_name:AMS_CAMPAIGN_SCHEDULES_B, status:VALID, product: AMS - Marketing , description: Stores all Campaign Schedules , implementation_dba_data: AMS.AMS_CAMPAIGN_SCHEDULES_B ,
-
VIEW: AMS.AMS_TRIGGER_ACTIONS#
12.2.2
-
VIEW: AMS.AMS_CAMPAIGN_SCHEDULES#
12.2.2
-
VIEW: AMS.AMS_CAMPAIGN_SCHEDULES_B#
12.2.2
-
VIEW: APPS.AMS_TRIGGERS_V
12.2.2
-
View: AMS_TRIGGERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_TRIGGERS_V, object_name:AMS_TRIGGERS_V, status:VALID, product: AMS - Marketing , description: This view returns all the Trigger details and the checks and Actions associated with it. , implementation_dba_data: APPS.AMS_TRIGGERS_V ,
-
View: AMS_TRIGGERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_TRIGGERS_V, object_name:AMS_TRIGGERS_V, status:VALID, product: AMS - Marketing , description: This view returns all the Trigger details and the checks and Actions associated with it. , implementation_dba_data: APPS.AMS_TRIGGERS_V ,
-
VIEW: AMS.AMS_TRIGGER_ACTIONS#
12.2.2
owner:AMS, object_type:VIEW, object_name:AMS_TRIGGER_ACTIONS#, status:VALID,
-
VIEW: APPS.AMS_TRIGGERS_V
12.1.1
-
VIEW: AMS.AMS_CAMPAIGN_SCHEDULES#
12.2.2
owner:AMS, object_type:VIEW, object_name:AMS_CAMPAIGN_SCHEDULES#, status:VALID,
-
APPS.AMS_THLDACT_PVT SQL Statements
12.1.1
-
APPS.AMS_THLDACT_PVT SQL Statements
12.2.2
-
VIEW: AMS.AMS_CAMPAIGN_SCHEDULES_B#
12.2.2
owner:AMS, object_type:VIEW, object_name:AMS_CAMPAIGN_SCHEDULES_B#, status:VALID,
-
TABLE: AMS.AMS_TRIGGER_ACTIONS
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_TRIGGER_ACTIONS, object_name:AMS_TRIGGER_ACTIONS, status:VALID,
-
TABLE: AMS.AMS_TRIGGER_ACTIONS
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_TRIGGER_ACTIONS, object_name:AMS_TRIGGER_ACTIONS, status:VALID,
-
TABLE: AMS.AMS_CAMPAIGN_SCHEDULES
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_CAMPAIGN_SCHEDULES, object_name:AMS_CAMPAIGN_SCHEDULES, status:VALID,
-
TABLE: AMS.AMS_CAMPAIGN_SCHEDULES
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_CAMPAIGN_SCHEDULES, object_name:AMS_CAMPAIGN_SCHEDULES, status:VALID,
-
View: AMS_CAMPAIGN_SCHEDULES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_CAMPAIGN_SCHEDULES_VL, object_name:AMS_CAMPAIGN_SCHEDULES_VL, status:VALID, product: AMS - Marketing , description: This is the view for marketing campaign Schedules. , implementation_dba_data: APPS.AMS_CAMPAIGN_SCHEDULES_VL ,
-
VIEW: APPS.AMS_P_CAMPAIGN_SCHEDS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_CAMPAIGN_SCHEDS_V, object_name:AMS_P_CAMPAIGN_SCHEDS_V, status:VALID,
-
VIEW: APPS.AMS_P_CAMPAIGN_SCHEDS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_CAMPAIGN_SCHEDS_V, object_name:AMS_P_CAMPAIGN_SCHEDS_V, status:VALID,
-
View: AMS_CAMPAIGN_SCHEDULES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_CAMPAIGN_SCHEDULES_VL, object_name:AMS_CAMPAIGN_SCHEDULES_VL, status:VALID, product: AMS - Marketing , description: This is the view for marketing campaign Schedules. , implementation_dba_data: APPS.AMS_CAMPAIGN_SCHEDULES_VL ,
-
View: AMS_P_CAMPAIGN_SCHEDS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_CAMPAIGN_SCHEDS_V, object_name:AMS_P_CAMPAIGN_SCHEDS_V, status:VALID, product: AMS - Marketing , description: This public view returns the campaign schedule information.. , implementation_dba_data: APPS.AMS_P_CAMPAIGN_SCHEDS_V ,
-
View: AMS_P_CAMPAIGN_SCHEDS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_CAMPAIGN_SCHEDS_V, object_name:AMS_P_CAMPAIGN_SCHEDS_V, status:VALID, product: AMS - Marketing , description: This public view returns the campaign schedule information.. , implementation_dba_data: APPS.AMS_P_CAMPAIGN_SCHEDS_V ,
-
APPS.AMS_FULFILL_PVT SQL Statements
12.1.1
-
APPS.AMS_FULFILL_PVT SQL Statements
12.2.2
-
TABLE: AMS.AMS_CAMPAIGN_SCHEDULES_B
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_CAMPAIGN_SCHEDULES_B, object_name:AMS_CAMPAIGN_SCHEDULES_B, status:VALID,
-
VIEW: APPS.AMS_TRIGGERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_TRIGGERS_V, object_name:AMS_TRIGGERS_V, status:VALID,
-
VIEW: APPS.AMS_CAMPAIGN_SCHEDULES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_CAMPAIGN_SCHEDULES_VL, object_name:AMS_CAMPAIGN_SCHEDULES_VL, status:VALID,
-
VIEW: APPS.AMS_CAMPAIGN_SCHEDULES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_CAMPAIGN_SCHEDULES_VL, object_name:AMS_CAMPAIGN_SCHEDULES_VL, status:VALID,
-
VIEW: APPS.AMS_TRIGGERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_TRIGGERS_V, object_name:AMS_TRIGGERS_V, status:VALID,
-
TABLE: AMS.AMS_CAMPAIGN_SCHEDULES_B
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_CAMPAIGN_SCHEDULES_B, object_name:AMS_CAMPAIGN_SCHEDULES_B, status:VALID,
-
APPS.AMS_CAMPAIGN_SCHEDULES_B_PKG SQL Statements
12.2.2
-
APPS.AMS_CAMPAIGN_SCHEDULES_B_PKG SQL Statements
12.1.1
-
PACKAGE: APPS.AMS_CAMP_SCHEDULE_PUB
12.2.2
-
PACKAGE: APPS.AMS_CAMP_SCHEDULE_PUB
12.1.1
-
PACKAGE: APPS.AMS_CAMP_SCHEDULE_PVT
12.2.2
-
PACKAGE: APPS.AMS_CAMP_SCHEDULE_PVT
12.1.1
-
APPS.AMS_CAMP_SCHEDULE_PVT SQL Statements
12.2.2
-
APPS.AMS_CAMP_SCHEDULE_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.AMS_CAMPAIGN_SCHEDULES_B_PKG
12.2.2
-
PACKAGE BODY: APPS.AMS_CAMPAIGN_SCHEDULES_B_PKG
12.1.1
-
PACKAGE: APPS.AMS_THLDACT_PVT
12.2.2
-
PACKAGE: APPS.AMS_THLDACT_PVT
12.1.1
-
PACKAGE BODY: APPS.AMS_OA_CAMP_SCHEDULE_PUB_W
12.1.1
-
PACKAGE BODY: APPS.AMS_OA_CAMP_SCHEDULE_PUB_W
12.2.2