Search Results ams_act_campaigns_v
Overview
AMS_ACT_CAMPAIGNS_V is a reporting view owned by the APPS schema in the Oracle E-Business Suite Marketing (AMS) module. Its documented purpose is to return all marketing campaigns that promote marketing events. In the broader TCA/AMS object-association model, a campaign is treated as a "using object" that is associated with a "master object" (typically an event or another parent entity). The view flattens that many-to-many relationship into a single denormalized row per campaign-to-master-object association, making it suitable for operational reports, concurrent-program extracts, and integration interfaces that must retrieve campaign context alongside the object it promotes.
The view is status VALID in ETRM 12.2.2 (and is present in 12.1.1), and is documented as Oracle Proprietary, Confidential Information. Because it joins only to other APPS views and a synonym, it is a read-only presentation object; no DML should be issued against it.
Underlying Base Objects
The view text is defined over three documented referenced objects plus the synonym layer:
- AMS_OBJECT_ASSOCIATIONS (SYNONYM, aliased OBJ) — supplies the association identifier, usage type, master object identity, using object identity, object type codes, and the object version number used for optimistic locking.
- AMS_CAMPAIGNS_V (VIEW, aliased CAM) — supplies campaign attributes: campaign ID and name, purpose code and purpose, owner user ID, and actual plan start/end dates.
- AMS_LOOKUPS (VIEW, aliased LKUP1/LKUP2/LKUP3) — outer-joined three times to decode USAGE_TYPE ('AMS_OBJECT_USAGE_TYPE'), MASTER_OBJECT_TYPE ('AMS_MASTER_OBJECT_TYPE'), and USING_OBJECT_TYPE ('AMS_USING_OBJECT_TYPE') into their meanings. Because the joins are outer (+), missing lookups return NULL rather than dropping the campaign row.
- AMS_UTILITY_PVT (PACKAGE) — documented as a referenced object, supporting the underlying view definitions rather than being joined directly.
The driving predicate is OBJ.USING_OBJECT_TYPE = 'CAMP' combined with OBJ.USING_OBJECT_ID = CAM.CAMPAIGN_ID, which restricts the result set to campaigns and links each campaign to the master object(s) it promotes.
Key Columns
- OBJECT_ASSOCIATION_ID — primary identifier of the association row in AMS_OBJECT_ASSOCIATIONS; the unique key for a returned record.
- MASTER_OBJECT_ID / MASTER_OBJECT_TYPE — the promoted (master) entity's identifier and type code; MASTER_OBJECT_TYPE_MEANING provides the decoded value. The user's search term "master_object_id" maps directly here, and is the column most often used to resolve "which campaigns promote this event?"
- USING_OBJECT_ID / USING_OBJECT_TYPE — the dependent entity, i.e., the campaign, with USING_OBJECT_TYPE_MEANING decoded; USAGE_TYPE and USAGE_TYPE_MEANING describe the nature of the relationship.
- CAMPAIGN_ID, CAMPAIGN_NAME, CAMPAIGN_PURPOSE_CODE, CAMPAIGN_PURPOSE, CAMPAIGN_OWNER, CAMPAIGN_START_DATE, CAMPAIGN_END_DATE — the campaign descriptive and date attributes (OWNER is the display form of OWNER_USER_ID).
- OBJECT_VERSION_NUMBER — version stamp used by the underlying association records for concurrency control; useful when comparing extracted data against live rows.
Common Use Cases and Queries
Typical uses include campaign-to-event reporting, populating custom BI Publisher or OBIEE extracts, and inbound/outbound integration feeds that must carry campaign context. Because MASTER_OBJECT_ID is not indexed in the view itself, query predicates should filter on association or campaign identifiers where possible.
Retrieve all campaigns promoting a specific master object:
SELECT campaign_id, campaign_name, master_object_id, master_object_type_meaning, usage_type_meaning FROM apps.ams_act_campaigns_v WHERE master_object_id = :p_master_object_id;
List associations for a given campaign:
SELECT master_object_id, master_object_type_meaning, campaign_start_date, campaign_end_date FROM apps.ams_act_campaigns_v WHERE campaign_id = :p_campaign_id ORDER BY campaign_start_date;
Filter by usage type to isolate relationship categories:
SELECT campaign_name, usage_type, usage_type_meaning FROM apps.ams_act_campaigns_v WHERE usage_type = :p_usage_type AND campaign_owner = :p_user_id;
-
View: AMS_ACT_CAMPAIGNS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_ACT_CAMPAIGNS_V, object_name:AMS_ACT_CAMPAIGNS_V, status:VALID, product: AMS - Marketing , description: This view returns all marketing campaigns promoting marketing events. , implementation_dba_data: APPS.AMS_ACT_CAMPAIGNS_V ,
-
View: AMS_ACT_CAMPAIGNS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_ACT_CAMPAIGNS_V, object_name:AMS_ACT_CAMPAIGNS_V, status:VALID, product: AMS - Marketing , description: This view returns all marketing campaigns promoting marketing events. , implementation_dba_data: APPS.AMS_ACT_CAMPAIGNS_V ,
-
SYNONYM: APPS.AMS_OBJECT_ASSOCIATIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AMS_OBJECT_ASSOCIATIONS, status:VALID,
-
SYNONYM: APPS.AMS_OBJECT_ASSOCIATIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AMS_OBJECT_ASSOCIATIONS, status:VALID,
-
VIEW: APPS.AMS_ACT_CAMPAIGNS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_ACT_CAMPAIGNS_V, object_name:AMS_ACT_CAMPAIGNS_V, status:VALID,
-
VIEW: APPS.AMS_ACT_CAMPAIGNS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_ACT_CAMPAIGNS_V, object_name:AMS_ACT_CAMPAIGNS_V, status:VALID,
-
VIEW: APPS.AMS_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_LOOKUPS, object_name:AMS_LOOKUPS, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.AMS_LOOKUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_LOOKUPS, object_name:AMS_LOOKUPS, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.AMS_CAMPAIGNS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_CAMPAIGNS_V, object_name:AMS_CAMPAIGNS_V, status:VALID,
-
VIEW: APPS.AMS_CAMPAIGNS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_CAMPAIGNS_V, object_name:AMS_CAMPAIGNS_V, status:VALID,
-
PACKAGE: APPS.AMS_UTILITY_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:AMS_UTILITY_PVT, status:VALID,
-
PACKAGE: APPS.AMS_UTILITY_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:AMS_UTILITY_PVT, status:VALID,
-
eTRM - AMS Tables and Views
12.2.2
description: This table is used to store tracking data for web advertisement and offer type schedules ,
-
eTRM - AMS Tables and Views
12.1.1
description: This table is used to store tracking data for web advertisement and offer type schedules ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - AMS Tables and Views
12.1.1
description: This table is used to store tracking data for web advertisement and offer type schedules ,
-
eTRM - AMS Tables and Views
12.2.2
description: This table is used to store tracking data for web advertisement and offer type schedules ,