Search Results ams_campaigns_vl
Overview
AMS_CAMPAIGNS_VL is a marketing campaign view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the AMS (Marketing) product family. It is a "_VL" view, meaning it is a "view with translation" join that overlays language-specific descriptive columns on top of the base campaign entity table. The view exposes the complete logical record of a campaign — its identity, status, organizational ownership, budget and revenue figures, schedule dates, channel and media assignments, and the descriptive name, theme, and description held in the translation layer.
Because it presents campaign header information in a single, denormalized read structure, AMS_CAMPAIGNS_VL serves as the primary reference point for reporting, custom concurrent programs, Discoverer worksheets, BI Publisher data models, and integration interfaces that must read or reconcile campaign master data. It is also the standard view used by Oracle's own marketing forms and by API-based extraction logic where a multi-language view is required rather than the underlying base table.
Underlying Base Objects
Per the ETRM 12.2.2 metadata, the view is defined over two synonym objects:
- AMS_CAMPAIGNS_ALL_B — the base table holding language-independent campaign attributes (identified in the view text by alias
B). - AMS_CAMPAIGNS_ALL_TL — the translation table holding language-dependent descriptive columns (identified by alias
T).
The view text joins the two on the campaign identifier and exposes CAMPAIGN_NAME, CAMPAIGN_THEME, and DESCRIPTION from the _TL table, with the remainder of the columns sourced from the _B table. The ROWID of the _B row is surfaced as ROW_ID. In 12.1.1 and 12.2.2 the object is documented as VALID and is not editioned; it behaves consistently across both releases.
Key Columns
- CAMPAIGN_ID — primary surrogate key of the campaign; the join key for child objects such as campaign schedules, deliverables, and activities.
- CAMPAIGN_NAME, CAMPAIGN_THEME, DESCRIPTION — sourced from the translation table; the user-facing campaign descriptions.
- STATUS_CODE, STATUS_DATE, ACTIVE_FLAG, PRIVATE_FLAG, TEMPLATE_FLAG — lifecycle and visibility attributes determining whether a campaign is usable and where it is displayed.
- PARENT_CAMPAIGN_ID, ROLLUP_TYPE, CAMPAIGN_TYPE, MEDIA_TYPE_CODE, PRIORITY — campaign hierarchy and classification.
- FORECASTED_/ACTUAL_ PLAN/EXEC START and END DATE — the four date pairs tracking planned versus executed campaign windows.
- BUDGET_AMOUNT_TC, BUDGET_AMOUNT_FC, FORECASTED_REVENUE, ACTUAL_REVENUE, FORECASTED_COST, ACTUAL_COST, FORECASTED_RESPONSE, ACTUAL_RESPONSE, TARGET_RESPONSE — financial and response-metric measures.
- ORG_ID, BUSINESS_UNIT_ID, OWNER_USER_ID — multi-org and ownership context, essential for security-restricted queries.
- CHANNEL_ID, MEDIA_ID, EVENT_TYPE, COUNTRY_CODE, LANGUAGE_CODE — channel and locale context.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1 through ATTRIBUTE15 — the DFF (descriptive flexfield) columns available for customer-defined reporting.
Common Use Cases and Queries
Typical uses include campaign performance dashboards, budget-versus-actual variance reports, and extraction of campaign metadata into external marketing automation or data-warehouse systems.
SELECT c.campaign_id,
c.campaign_name,
c.status_code,
c.campaign_type,
c.forecasted_plan_start_date,
c.forecasted_plan_end_date,
c.budget_amount_fc,
c.actual_cost,
(c.actual_cost - c.budget_amount_fc) AS variance
FROM apps.ams_campaigns_vl c
WHERE c.org_id = :p_org_id
AND c.active_flag = 'Y'
ORDER BY c.campaign_name;
For response analysis, aggregate actual against target response by campaign type:
SELECT c.campaign_type,
SUM(c.target_response) AS target_resp,
SUM(c.actual_response) AS actual_resp,
SUM(c.actual_revenue) AS revenue
FROM apps.ams_campaigns_vl c
WHERE c.actual_exec_start_date BETWEEN :p_from AND :p_to
GROUP BY c.campaign_type;
Because the view resolves translation rows, queries executed in a specific language session return the appropriate campaign name and description automatically. Reporting logic should always filter on ORG_ID for multi-org compliance and join to AMS_CAMPAIGN_SCHEDULES or AMS_DELIVERABLES on CAMPAIGN_ID when schedule-level or deliverable-level detail is required.
-
View: AMS_CAMPAIGNS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_CAMPAIGNS_VL, object_name:AMS_CAMPAIGNS_VL, status:VALID, product: AMS - Marketing , description: This is the view for marketing campaigns. , implementation_dba_data: APPS.AMS_CAMPAIGNS_VL ,
-
View: AMS_CAMPAIGNS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_CAMPAIGNS_VL, object_name:AMS_CAMPAIGNS_VL, status:VALID, product: AMS - Marketing , description: This is the view for marketing campaigns. , implementation_dba_data: APPS.AMS_CAMPAIGNS_VL ,
-
VIEW: APPS.AMS_P_CAMPAIGN_MKT_SEGMENTS_V
12.2.2
-
VIEW: APPS.AMS_P_EVENT_CAMPAIGNS_V
12.2.2
-
VIEW: APPS.AMS_P_EVENT_CAMPAIGNS_V
12.1.1
-
VIEW: APPS.AMS_P_CAMPAIGN_MKT_SEGMENTS_V
12.1.1
-
APPS.AMS_CAMPAIGNRULES_PVT SQL Statements
12.2.2
-
APPS.AMS_COPYACTIVITIES_PVT SQL Statements
12.2.2
-
View: AMS_P_CAMPAIGN_MKT_SEGMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_CAMPAIGN_MKT_SEGMENTS_V, object_name:AMS_P_CAMPAIGN_MKT_SEGMENTS_V, status:VALID, product: AMS - Marketing , description: This public view returns the market segments associated with a marketing campaigns. , implementation_dba_data: APPS.AMS_P_CAMPAIGN_MKT_SEGMENTS_V ,
-
VIEW: APPS.BIX_DM_CAMPAIGNS_PARAM_V
12.1.1
-
VIEW: APPS.AST_SOURCE_ONLY_V
12.1.1
-
APPS.AMS_CAMPAIGNRULES_PVT SQL Statements
12.1.1
-
View: AMS_P_CAMPAIGN_MKT_SEGMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_CAMPAIGN_MKT_SEGMENTS_V, object_name:AMS_P_CAMPAIGN_MKT_SEGMENTS_V, status:VALID, product: AMS - Marketing , description: This public view returns the market segments associated with a marketing campaigns. , implementation_dba_data: APPS.AMS_P_CAMPAIGN_MKT_SEGMENTS_V ,
-
APPS.AMS_COPYACTIVITIES_PVT SQL Statements
12.1.1
-
VIEW: APPS.IEC_AGENT_WORK_ASSIGNMENTS_V
12.2.2
-
VIEW: APPS.AST_SOURCE_ONLY_V
12.2.2
-
VIEW: APPS.AMS_P_CAMPAIGN_GEO_AREAS_V
12.1.1
-
VIEW: APPS.IEC_GROUP_WORK_ASSIGNMENTS_V
12.2.2
-
VIEW: APPS.IEC_AGENT_WORK_ASSIGNMENTS_V
12.1.1
-
VIEW: APPS.AMS_P_CAMPAIGN_GEO_AREAS_V
12.2.2
-
VIEW: APPS.AST_CAMPAIGNS_LOV_V
12.1.1
-
VIEW: APPS.AMS_P_CAMPAIGN_PRODUCTS_V
12.2.2
-
VIEW: APPS.IEC_GROUP_WORK_ASSIGNMENTS_V
12.1.1
-
View: AMS_P_EVENT_CAMPAIGNS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_EVENT_CAMPAIGNS_V, object_name:AMS_P_EVENT_CAMPAIGNS_V, status:VALID, product: AMS - Marketing , description: This public view returns all marketing campaigns promoting marketing events. , implementation_dba_data: APPS.AMS_P_EVENT_CAMPAIGNS_V ,
-
VIEW: APPS.OZF_P_CAMPAIGN_OFFERS_V
12.1.1
-
VIEW: APPS.AMS_P_CAMPAIGN_PRODUCTS_V
12.1.1
-
VIEW: APPS.AST_CAMPAIGNS_LOV_V
12.2.2
-
VIEW: APPS.AMS_P_CAMPAIGN_OFFERS_V
12.1.1
-
VIEW: APPS.AMS_P_CAMPAIGN_OFFERS_V
12.2.2
-
View: AMS_P_EVENT_CAMPAIGNS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_EVENT_CAMPAIGNS_V, object_name:AMS_P_EVENT_CAMPAIGNS_V, status:VALID, product: AMS - Marketing , description: This public view returns all marketing campaigns promoting marketing events. , implementation_dba_data: APPS.AMS_P_EVENT_CAMPAIGNS_V ,
-
VIEW: APPS.OZF_P_CAMPAIGN_OFFERS_V
12.2.2
-
View: AST_SOURCE_ONLY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_SOURCE_ONLY_V, object_name:AST_SOURCE_ONLY_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_SOURCE_ONLY_V ,
-
APPS.BIM_EDW_CMPGNS_M_SIZE SQL Statements
12.1.1
-
APPS.AMS_APPROVAL_UTIL_PVT SQL Statements
12.1.1
-
VIEW: APPS.AMS_CAMPAIGN_FORECASTS_ALL_V
12.2.2
-
APPS.AMS_APPROVAL_UTIL_PVT SQL Statements
12.2.2
-
VIEW: APPS.AMS_CAMPAIGN_FORECASTS_ALL_V
12.1.1
-
VIEW: APPS.AMS_P_CAMPAIGN_SCHEDS_V
12.2.2
-
View: AST_SOURCE_ONLY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_SOURCE_ONLY_V, object_name:AST_SOURCE_ONLY_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_SOURCE_ONLY_V ,
-
VIEW: APPS.AMS_P_CAMPAIGNS_V
12.2.2
-
VIEW: APPS.AMS_P_CAMPAIGNS_V
12.1.1
-
VIEW: APPS.AMS_P_CAMPAIGN_SCHEDS_V
12.1.1
-
APPS.OZF_SCHEDULE_DENORM_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.AST_AMS_SOURCE_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AST_AMS_SOURCE_PKG, status:VALID,
-
APPS.AST_AMS_SOURCE_PKG SQL Statements
12.2.2
-
APPS.AST_AMS_SOURCE_PKG SQL Statements
12.1.1
-
APPS.AMS_UTILITY_PVT SQL Statements
12.1.1
-
VIEW: APPS.BIM_DIMV_CAMPAIGNS
12.1.1
-
APPS.OZF_SCHEDULE_DENORM_PVT SQL Statements
12.1.1
-
APPS.AMS_WFCMPAPR_PVT SQL Statements
12.1.1