Search Results ams_iba_postings_b_pk
Overview
The AMS_IBA_POSTINGS_B table is a core data object within the Oracle E-Business Suite Marketing (AMS) module, specifically in versions 12.1.1 and 12.2.2. It functions as the base table for storing master information about postings. In the context of Oracle Marketing, a posting is a fundamental entity representing a specific marketing communication or content piece that can be associated with campaigns and other marketing activities. This table serves as the primary source of truth for posting definitions, holding the essential, non-translatable attributes. Its role is central to the marketing execution framework, enabling the management and tracking of discrete marketing deliverables.
Key Information Stored
While the provided ETRM metadata does not list specific columns, the structure indicates it is a base table with a corresponding translation table (AMS_IBA_POSTINGS_TL). Typically, such a table stores the system-generated and descriptive attributes for a posting. The primary key, POSTING_ID, is the unique identifier for each posting record. Other columns likely include creation date (CREATION_DATE), created by (CREATED_BY), last update date (LAST_UPDATE_DATE), last updated by (LAST_UPDATED_BY), and other system control columns. It may also contain key descriptive fields like NAME, START_DATE_ACTIVE, END_DATE_ACTIVE, and STATUS_CODE, with language-specific translations managed in the related TL table. The data is owned by the AMS schema.
Common Use Cases and Queries
This table is primarily accessed for reporting on marketing assets, integrating posting data with campaign information, and supporting data maintenance operations. Common scenarios include generating a list of all active postings, linking postings to their associated campaigns for performance analysis, and auditing changes to posting master data. A typical query would join this table with its translation table to retrieve language-specific names and with the campaign postings table to understand posting assignments.
Sample Query Pattern:
SELECT b.POSTING_ID, tl.NAME, b.CREATION_DATE
FROM AMS_IBA_POSTINGS_B b,
AMS_IBA_POSTINGS_TL tl
WHERE b.POSTING_ID = tl.POSTING_ID
AND tl.LANGUAGE = USERENV('LANG')
AND b.STATUS_CODE = 'ACTIVE';
Related Objects
The AMS_IBA_POSTINGS_B table has defined relationships with several other key AMS tables, as documented in the ETRM metadata.
- Primary Key: AMS_IBA_POSTINGS_B_PK on column POSTING_ID.
- Foreign Key References (Child Tables):
- AMS_IBA_CAMP_POSTINGS: References this table via the column AMS_IBA_CAMP_POSTINGS.POSTING_ID. This relationship links postings to specific marketing campaigns.
- AMS_IBA_POSTINGS_TL: References this table via the column AMS_IBA_POSTINGS_TL.POSTING_ID. This table holds the translated, language-specific descriptions for the posting records in the base table.
These relationships are critical for maintaining referential integrity and are essential for correct joins in any reporting or data extraction involving marketing postings.
-
Table: AMS_IBA_POSTINGS_B
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_IBA_POSTINGS_B, object_name:AMS_IBA_POSTINGS_B, status:VALID, product: AMS - Marketing , description: Storing posting information , implementation_dba_data: AMS.AMS_IBA_POSTINGS_B ,
-
Table: AMS_IBA_POSTINGS_B
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_IBA_POSTINGS_B, object_name:AMS_IBA_POSTINGS_B, status:VALID, product: AMS - Marketing , description: Storing posting information , implementation_dba_data: AMS.AMS_IBA_POSTINGS_B ,