Search Results ams_campaigns_all_b
Overview
The AMS_CAMPAIGNS_ALL_B table is the core base table for storing campaign definitions within the Oracle E-Business Suite Marketing (AMS) module. It serves as the primary repository for the fundamental attributes and master data of a marketing campaign, forming the central node in a complex data model that supports campaign planning, execution, and analysis. Its role is critical for managing the campaign lifecycle, from creation and budgeting to tracking performance against objectives and metrics. The table's "ALL" suffix and multi-organization primary key (CAMPAIGN_ID) indicate it is a multi-org enabled table designed to support data partitioning across operating units, a standard architectural pattern in Oracle EBS applications for versions 12.1.1 and 12.2.2.
Key Information Stored
The table's primary identifier is the system-generated CAMPAIGN_ID. A unique key is also enforced on the SOURCE_CODE column, which typically holds a user-defined identifier for the campaign. The table stores essential campaign details, including hierarchical relationships via PARENT_CAMPAIGN_ID for multi-level campaign structures. It links campaigns to other critical EBS entities through foreign key columns: it associates a campaign with a JTF_TASKS_B record for task management, an OZF_FUNDS_ALL_B record for funding source (FUND_SOURCE_ID), and a JTF_RS_RESOURCE_EXTNS record for the campaign owner (OWNER_USER_ID). Furthermore, it defines campaign context through references to media (MEDIA_ID), channels (CHANNEL_ID), geographic location (CITY_ID), and system status (USER_STATUS_ID). The APPLICATION_ID column ties the campaign to a specific EBS application via FND_APPLICATION.
Common Use Cases and Queries
This table is central to numerous marketing operations. Common use cases include generating master campaign lists, building hierarchical campaign roll-up reports, and serving as the source for data in campaign management user interfaces. For reporting, it is frequently joined with its related transactional tables to analyze campaign performance. A typical query pattern involves selecting campaign headers and joining to lookup tables for descriptive values. For example, to list active campaigns with their owners and statuses, one might use a query such as:
- SELECT cam.campaign_id, cam.source_code, cam.name, res.resource_name, sts.status_name FROM ams_campaigns_all_b cam, jtf_rs_resource_extns res, ams_user_statuses_b sts WHERE cam.owner_user_id = res.resource_id AND cam.user_status_id = sts.user_status_id AND cam.end_date >= SYSDATE;
Another critical use case is integrating campaign data with budgeting (AMS_ACT_BUDGETS) and forecasting (AMS_ACT_FORECASTS_ALL) modules, where the CAMPAIGN_ID serves as the BUDGET_SOURCE_ID or ACT_FCAST_USED_BY_ID.
Related Objects
As the central campaign entity, AMS_CAMPAIGNS_ALL_B has extensive relationships. It is the parent table for a significant portion of the AMS transactional schema. Key documented foreign key relationships include:
- Self-Referential: AMS_CAMPAIGNS_ALL_B.PARENT_CAMPAIGN_ID references AMS_CAMPAIGNS_ALL_B.CAMPAIGN_ID for campaign hierarchies.
- Task Management: TASK_ID references JTF_TASKS_B.TASK_ID.
- Funding: FUND_SOURCE_ID references OZF_FUNDS_ALL_B.FUND_ID.
- Campaign Components: The CAMPAIGN_ID is referenced as a foreign key by numerous AMS activity tables, including:
- AMS_ACT_BUDGETS (BUDGET_SOURCE_ID, ACT_BUDGET_USED_BY_ID)
- AMS_ACT_FORECASTS_ALL (ACT_FCAST_USED_BY_ID)
- AMS_ACT_METRICS_ALL (ACT_METRIC_USED_BY_ID)
- AMS_ACT_OFFERS (ACT_OFFER_USED_BY_ID)
- AMS_ACT_OBJECTIVES (ACT_OBJECTIVE_USED_BY_ID)
- AMS_ACT_ACCESS (ACT_ACCESS_TO_OBJECT_ID)
- Reference Data: Foreign keys to JTF_LOC_HIERARCHIES_B (CITY_ID), AMS_MEDIA_B (MEDIA_ID), AMS_USER_STATUSES_B (USER_STATUS_ID), and FND_APPLICATION (APPLICATION_ID).
-
Table: AMS_CAMPAIGNS_ALL_B
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_CAMPAIGNS_ALL_B, object_name:AMS_CAMPAIGNS_ALL_B, status:VALID, product: AMS - Marketing , description: Base table to store the details of a campaign. , implementation_dba_data: AMS.AMS_CAMPAIGNS_ALL_B ,
-
Table: AMS_CAMPAIGNS_ALL_B
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_CAMPAIGNS_ALL_B, object_name:AMS_CAMPAIGNS_ALL_B, status:VALID, product: AMS - Marketing , description: Base table to store the details of a campaign. , implementation_dba_data: AMS.AMS_CAMPAIGNS_ALL_B ,
-
Table: AMS_CAMPAIGN_RELATIONS
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_CAMPAIGN_RELATIONS, object_name:AMS_CAMPAIGN_RELATIONS, status:VALID, product: AMS - Marketing , description: Originally created for OSM upgrade. , implementation_dba_data: AMS.AMS_CAMPAIGN_RELATIONS ,
-
Table: AMS_CAMPAIGN_RELATIONS
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_CAMPAIGN_RELATIONS, object_name:AMS_CAMPAIGN_RELATIONS, status:VALID, product: AMS - Marketing , description: Originally created for OSM upgrade. , implementation_dba_data: AMS.AMS_CAMPAIGN_RELATIONS ,
-
Table: AMS_ACT_BUDGETS
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_ACT_BUDGETS, object_name:AMS_ACT_BUDGETS, status:VALID, product: AMS - Marketing , description: Holds the information about budget sources for a marketing activity. , implementation_dba_data: AMS.AMS_ACT_BUDGETS ,
-
Table: AMS_OBJECT_ASSOCIATIONS
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_OBJECT_ASSOCIATIONS, object_name:AMS_OBJECT_ASSOCIATIONS, status:VALID, product: AMS - Marketing , description: AMS_OBJECT_ASSOCIATIONS is the cross reference between the Campaigns or Events or Creatives the that are running. , implementation_dba_data: AMS.AMS_OBJECT_ASSOCIATIONS ,
-
Table: AMS_OBJECT_ASSOCIATIONS
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_OBJECT_ASSOCIATIONS, object_name:AMS_OBJECT_ASSOCIATIONS, status:VALID, product: AMS - Marketing , description: AMS_OBJECT_ASSOCIATIONS is the cross reference between the Campaigns or Events or Creatives the that are running. , implementation_dba_data: AMS.AMS_OBJECT_ASSOCIATIONS ,
-
Table: AMS_ACT_BUDGETS
12.2.2
product: AMS - Marketing , description: Holds the information about budget sources for a marketing activity. , implementation_dba_data: Not implemented in this database ,
-
Table: AMS_EVENT_HEADERS_ALL_B
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_EVENT_HEADERS_ALL_B, object_name:AMS_EVENT_HEADERS_ALL_B, status:VALID, product: AMS - Marketing , description: Stores the definition of a Marketing Event. (Master Event or Event Template) , implementation_dba_data: AMS.AMS_EVENT_HEADERS_ALL_B ,
-
Table: AMS_EVENT_OFFERS_ALL_B
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_EVENT_OFFERS_ALL_B, object_name:AMS_EVENT_OFFERS_ALL_B, status:VALID, product: AMS - Marketing , description: Stores information about an Event Offering. .This table also holds the data for all the Agenda Items for the Event Offerings. , implementation_dba_data: AMS.AMS_EVENT_OFFERS_ALL_B ,
-
Table: AMS_EVENT_HEADERS_ALL_B
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_EVENT_HEADERS_ALL_B, object_name:AMS_EVENT_HEADERS_ALL_B, status:VALID, product: AMS - Marketing , description: Stores the definition of a Marketing Event. (Master Event or Event Template) , implementation_dba_data: AMS.AMS_EVENT_HEADERS_ALL_B ,
-
View: AMS_PROGRAM_COMPONENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_PROGRAM_COMPONENTS_V, object_name:AMS_PROGRAM_COMPONENTS_V, status:VALID, product: AMS - Marketing , description: This view is created for giving general information about progam Components , implementation_dba_data: APPS.AMS_PROGRAM_COMPONENTS_V ,
-
View: AMS_PROGRAM_COMPONENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_PROGRAM_COMPONENTS_V, object_name:AMS_PROGRAM_COMPONENTS_V, status:VALID, product: AMS - Marketing , description: This view is created for giving general information about progam Components , implementation_dba_data: APPS.AMS_PROGRAM_COMPONENTS_V ,
-
Table: AMS_EVENT_OFFERS_ALL_B
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_EVENT_OFFERS_ALL_B, object_name:AMS_EVENT_OFFERS_ALL_B, status:VALID, product: AMS - Marketing , description: Stores information about an Event Offering. .This table also holds the data for all the Agenda Items for the Event Offerings. , implementation_dba_data: AMS.AMS_EVENT_OFFERS_ALL_B ,
-
Table: AMS_IBA_CAMP_POSTINGS
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_IBA_CAMP_POSTINGS, object_name:AMS_IBA_CAMP_POSTINGS, status:VALID, product: AMS - Marketing , description: Postings associated with campaigns. , implementation_dba_data: AMS.AMS_IBA_CAMP_POSTINGS ,
-
Table: AMS_IBA_CAMP_POSTINGS
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_IBA_CAMP_POSTINGS, object_name:AMS_IBA_CAMP_POSTINGS, status:VALID, product: AMS - Marketing , description: Postings associated with campaigns. , implementation_dba_data: AMS.AMS_IBA_CAMP_POSTINGS ,
-
Table: AMS_IBA_CAMPAIGN_RULES
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_IBA_CAMPAIGN_RULES, object_name:AMS_IBA_CAMPAIGN_RULES, status:VALID, product: AMS - Marketing , description: Table to associate campaign to rules , implementation_dba_data: AMS.AMS_IBA_CAMPAIGN_RULES ,
-
Table: AMS_ACT_SCRIPTS
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_ACT_SCRIPTS, object_name:AMS_ACT_SCRIPTS, status:VALID, product: AMS - Marketing , description: Stores the Scripts ( Inbound / Outbound ) used by a marketing activity. , implementation_dba_data: AMS.AMS_ACT_SCRIPTS ,
-
Table: AMS_ACT_SCRIPTS
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_ACT_SCRIPTS, object_name:AMS_ACT_SCRIPTS, status:VALID, product: AMS - Marketing , description: Stores the Scripts ( Inbound / Outbound ) used by a marketing activity. , implementation_dba_data: AMS.AMS_ACT_SCRIPTS ,
-
Table: AMS_OBJECT_ATTRIBUTES
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_OBJECT_ATTRIBUTES, object_name:AMS_OBJECT_ATTRIBUTES, status:VALID, product: AMS - Marketing , description: This table is obsoleted and no longer in use. , implementation_dba_data: AMS.AMS_OBJECT_ATTRIBUTES ,
-
Table: AMS_ACT_MARKET_SEGMENTS
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_ACT_MARKET_SEGMENTS, object_name:AMS_ACT_MARKET_SEGMENTS, status:VALID, product: AMS - Marketing , description: Stores what Market Segment are used by what Activity. , implementation_dba_data: AMS.AMS_ACT_MARKET_SEGMENTS ,
-
Table: AMS_ACT_MESSAGES
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_ACT_MESSAGES, object_name:AMS_ACT_MESSAGES, status:VALID, product: AMS - Marketing , description: Association table for messages to a campaign/event. , implementation_dba_data: AMS.AMS_ACT_MESSAGES ,
-
Table: AMS_OBJECT_ATTRIBUTES
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_OBJECT_ATTRIBUTES, object_name:AMS_OBJECT_ATTRIBUTES, status:VALID, product: AMS - Marketing , description: This table is obsoleted and no longer in use. , implementation_dba_data: AMS.AMS_OBJECT_ATTRIBUTES ,
-
Table: AMS_MEDIA_CHANNELS
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_MEDIA_CHANNELS, object_name:AMS_MEDIA_CHANNELS, status:VALID, product: AMS - Marketing , description: Stores what channel can handle what kind of media. , implementation_dba_data: AMS.AMS_MEDIA_CHANNELS ,
-
Table: AMS_ACT_PARTNERS
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_ACT_PARTNERS, object_name:AMS_ACT_PARTNERS, status:VALID, product: AMS - Marketing , description: Holds the information about the participating partners for a marketing activity. , implementation_dba_data: AMS.AMS_ACT_PARTNERS ,
-
Table: AMS_ACT_OBJECTIVES
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_ACT_OBJECTIVES, object_name:AMS_ACT_OBJECTIVES, status:VALID, product: AMS - Marketing , description: Stores objectives for a specific activity (e.g. Promotion, Media, Event). , implementation_dba_data: AMS.AMS_ACT_OBJECTIVES ,
-
Table: AMS_MEDIA_CHANNELS
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_MEDIA_CHANNELS, object_name:AMS_MEDIA_CHANNELS, status:VALID, product: AMS - Marketing , description: Stores what channel can handle what kind of media. , implementation_dba_data: AMS.AMS_MEDIA_CHANNELS ,
-
Table: AMS_ACT_OBJECTIVES
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_ACT_OBJECTIVES, object_name:AMS_ACT_OBJECTIVES, status:VALID, product: AMS - Marketing , description: Stores objectives for a specific activity (e.g. Promotion, Media, Event). , implementation_dba_data: AMS.AMS_ACT_OBJECTIVES ,
-
Table: AMS_CAMPAIGNS_ALL_TL
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_CAMPAIGNS_ALL_TL, object_name:AMS_CAMPAIGNS_ALL_TL, status:VALID, product: AMS - Marketing , description: This table stores all the translatable details of marketing campaigns (like name, message). , implementation_dba_data: AMS.AMS_CAMPAIGNS_ALL_TL ,
-
Table: AMS_ACT_PARTNERS
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_ACT_PARTNERS, object_name:AMS_ACT_PARTNERS, status:VALID, product: AMS - Marketing , description: Holds the information about the participating partners for a marketing activity. , implementation_dba_data: AMS.AMS_ACT_PARTNERS ,
-
Table: AMS_IBA_CAMPAIGN_RULES
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_IBA_CAMPAIGN_RULES, object_name:AMS_IBA_CAMPAIGN_RULES, status:VALID, product: AMS - Marketing , description: Table to associate campaign to rules , implementation_dba_data: AMS.AMS_IBA_CAMPAIGN_RULES ,
-
Table: AMS_ACT_METRIC_FACTS_ALL
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_ACT_METRIC_FACTS_ALL, object_name:AMS_ACT_METRIC_FACTS_ALL, status:VALID, product: AMS - Marketing , description: Store metric values to allow for forecasting over time by certain dimensions. , implementation_dba_data: AMS.AMS_ACT_METRIC_FACTS_ALL ,
-
Table: AMS_ACT_FORECASTS_ALL
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_ACT_FORECASTS_ALL, object_name:AMS_ACT_FORECASTS_ALL, status:VALID, product: AMS - Marketing , description: This table stores the Forecasts planned for a Marketing Activity. , implementation_dba_data: AMS.AMS_ACT_FORECASTS_ALL ,
-
Table: AMS_LIST_ENTRY_USAGES
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_LIST_ENTRY_USAGES, object_name:AMS_LIST_ENTRY_USAGES, status:VALID, product: AMS - Marketing , description: This table stores the assignment of list entries to the sales person and the promotion. , implementation_dba_data: AMS.AMS_LIST_ENTRY_USAGES ,
-
Table: AMS_ACT_FORECASTS_ALL
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_ACT_FORECASTS_ALL, object_name:AMS_ACT_FORECASTS_ALL, status:VALID, product: AMS - Marketing , description: This table stores the Forecasts planned for a Marketing Activity. , implementation_dba_data: AMS.AMS_ACT_FORECASTS_ALL ,
-
Table: AMS_ACT_MARKET_SEGMENTS
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_ACT_MARKET_SEGMENTS, object_name:AMS_ACT_MARKET_SEGMENTS, status:VALID, product: AMS - Marketing , description: Stores what Market Segment are used by what Activity. , implementation_dba_data: AMS.AMS_ACT_MARKET_SEGMENTS ,
-
Table: AMS_ACT_MESSAGES
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_ACT_MESSAGES, object_name:AMS_ACT_MESSAGES, status:VALID, product: AMS - Marketing , description: Association table for messages to a campaign/event. , implementation_dba_data: AMS.AMS_ACT_MESSAGES ,
-
Table: AMS_CAMPAIGNS_ALL_TL
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_CAMPAIGNS_ALL_TL, object_name:AMS_CAMPAIGNS_ALL_TL, status:VALID, product: AMS - Marketing , description: This table stores all the translatable details of marketing campaigns (like name, message). , implementation_dba_data: AMS.AMS_CAMPAIGNS_ALL_TL ,
-
Table: AMS_DIALOGS_ALL_B
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_DIALOGS_ALL_B, object_name:AMS_DIALOGS_ALL_B, status:VALID, product: AMS - Marketing , description: This stores the dialog object , implementation_dba_data: AMS.AMS_DIALOGS_ALL_B ,
-
Table: AMS_DIALOGS_ALL_B
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_DIALOGS_ALL_B, object_name:AMS_DIALOGS_ALL_B, status:VALID, product: AMS - Marketing , description: This stores the dialog object , implementation_dba_data: AMS.AMS_DIALOGS_ALL_B ,
-
Table: AMS_ACT_ACCESS
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_ACT_ACCESS, object_name:AMS_ACT_ACCESS, status:VALID, product: AMS - Marketing , description: Holds access information for all marketing objects. , implementation_dba_data: AMS.AMS_ACT_ACCESS ,
-
Table: AMS_ACT_METRIC_FACTS_ALL
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_ACT_METRIC_FACTS_ALL, object_name:AMS_ACT_METRIC_FACTS_ALL, status:VALID, product: AMS - Marketing , description: Store metric values to allow for forecasting over time by certain dimensions. , implementation_dba_data: AMS.AMS_ACT_METRIC_FACTS_ALL ,
-
Table: AMS_ACT_GEO_AREAS
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_ACT_GEO_AREAS, object_name:AMS_ACT_GEO_AREAS, status:VALID, product: AMS - Marketing , description: Holds the geographical regions in which a campaign or an event is active , implementation_dba_data: AMS.AMS_ACT_GEO_AREAS ,
-
Table: AMS_TRIGGERS
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_TRIGGERS, object_name:AMS_TRIGGERS, status:VALID, product: AMS - Marketing , description: AMS_TRIGGERS stores Triggers to start execution of certain Activity at a certain time. , implementation_dba_data: AMS.AMS_TRIGGERS ,
-
Table: AMS_ACT_GEO_AREAS
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_ACT_GEO_AREAS, object_name:AMS_ACT_GEO_AREAS, status:VALID, product: AMS - Marketing , description: Holds the geographical regions in which a campaign or an event is active , implementation_dba_data: AMS.AMS_ACT_GEO_AREAS ,
-
Table: AMS_ACT_OFFERS
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_ACT_OFFERS, object_name:AMS_ACT_OFFERS, status:VALID, product: AMS - Marketing , description: Holds the high level details of promotional offers related to a campaign , implementation_dba_data: AMS.AMS_ACT_OFFERS ,
-
Table: AMS_LIST_ENTRY_USAGES
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_LIST_ENTRY_USAGES, object_name:AMS_LIST_ENTRY_USAGES, status:VALID, product: AMS - Marketing , description: This table stores the assignment of list entries to the sales person and the promotion. , implementation_dba_data: AMS.AMS_LIST_ENTRY_USAGES ,
-
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_ACT_ACCESS
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_ACT_ACCESS, object_name:AMS_ACT_ACCESS, status:VALID, product: AMS - Marketing , description: Holds access information for all marketing objects. , implementation_dba_data: AMS.AMS_ACT_ACCESS ,
-
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 ,