Search Results jtf_ih_action_items_b




Overview

The AML_BUSINESS_EVENT_TYPES_B table is a core data definition table within the Oracle E-Business Suite Marketing (AMS) module. It serves as a central mapping repository that defines the relationship between business event types and their corresponding actions and action items. Its primary role is to establish the workflow logic for how marketing events trigger specific follow-up activities within the system. This table is part of the base or "seed data" layer, as indicated by the '_B' suffix, and is essential for configuring and executing automated marketing campaign responses and customer interactions.

Key Information Stored

The table's structure is designed to link identifiers. Its primary key is the BUSINESS_EVENT_TYPE_ID, which uniquely identifies a type of marketing or business event. The two critical foreign key columns are ACTION_ID and ACTION_ITEM_ID. These columns store references to specific action and action item records defined in the JTF_IH_ACTIONS_B and JTF_IH_ACTION_ITEMS_B tables, respectively, from the Interaction History module. This creates a direct bridge between a marketing event and the concrete task or activity that should be generated. Other columns typically found in such base tables include CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, and LAST_UPDATE_LOGIN for auditing purposes.

Common Use Cases and Queries

A primary use case is analyzing or troubleshooting the automation rules for marketing campaigns. For instance, an administrator may need to verify which action is triggered by a specific business event. A common query would join this table to the relevant Interaction History tables to retrieve the descriptive names of the mapped actions.

  • Sample Query: To list all event type mappings with their corresponding action names:
    SELECT a.business_event_type_id, jia.action_name
    FROM ams.aml_business_event_types_b a,
        jtf.jtf_ih_actions_b jia
    WHERE a.action_id = jia.action_id;
  • This table is also central during runtime when the Marketing engine detects a configured business event and must instantiate the correct follow-up action or task by looking up the associated ACTION_ID or ACTION_ITEM_ID.

Related Objects

The metadata clearly defines this table's integration points. It has direct foreign key relationships to two tables in the JTF (Common Modules) schema:

  • JTF_IH_ACTIONS_B: References the ACTION_ID column. This table defines the master list of actions that can be performed.
  • JTF_IH_ACTION_ITEMS_B: References the ACTION_ITEM_ID column. This table defines specific tasks or items associated with an action.

Furthermore, the table has a one-to-many relationship with its corresponding translation table, AML_BUSINESS_EVENT_TYPES_TL, which holds the multilingual descriptions for the BUSINESS_EVENT_TYPE_ID. The primary key constraint AML_BUSINESS_EVENT_TYPES_PK enforces data integrity on the BUSINESS_EVENT_TYPE_ID column.