Search Results ams_event_headers_v
Overview
AMS_EVENT_HEADERS_V is a reporting and integration view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the AMS (Marketing) product family. In both release 12.1.1 and 12.2.2 the object carries a VALID status and returns the general header-level information about marketing events. The view is a consolidation layer: rather than requiring consumers to join the event header table to lookup, status, and language tables manually, it presents a single denormalized row per marketing event, with descriptive values such as the event type meaning and the user status name already resolved. Because it is a view and not a table, it introduces no storage of its own and inherits the read-only, query-oriented behaviour expected of EBS reporting objects. It is commonly consumed by concurrent programs, BI Publisher reports, Discoverer worksheets, and custom PL/SQL packages that need event header attributes without reproducing the underlying join logic. The view also forms a convenient integration point for extract processes that publish marketing event data to external campaign management or CRM systems.
Underlying Base Objects
The documented definition is built over four referenced objects. AMS_EVENT_HEADERS_VL is the principal source and supplies the overwhelming majority of columns; the suffix VL indicates a translatable view that exposes the base language and translated (_TL) descriptions. AMS_USER_STATUSES_VL provides the user-defined status name through AUS.NAME. FND_LANGUAGES_VL supplies the NLS language description used to render MAIN_LANGUAGE_CODE. AMS_LOOKUPS, despite its name, is itself a view in the referenced object list and is outer-joined on LOOKUP_TYPE 'AMS_EVENT_TYPE' to translate EVENT_TYPE_CODE into the derived EVENT_TYPE column. The outer join preserves header rows whose event type code has no active lookup entry.
Key Columns
- EVENT_HEADER_ID – primary surrogate key of the event header; the join key to child event detail, registration, and schedule objects.
- EVENT_HEADER_NAME, DESCRIPTION, EVENT_MKTG_MESSAGE – identifying and descriptive text for the event.
- EVENT_TYPE_CODE / EVENT_TYPE – stored lookup code and its decoded meaning, derived from AMS_LOOKUPS.
- CURRENCY_CODE_TC and CURRENCY_CODE_FC – the transaction (functional) currency and foreign currency codes. These are the columns most relevant to the search term "currency_code_tc"; the TC suffix denotes the ledger/functional currency while FC denotes the entered foreign currency, and they pair with FUND_AMOUNT_TC and FUND_AMOUNT_FC.
- FUND_AMOUNT_TC / FUND_AMOUNT_FC, FUND_SOURCE_TYPE_CODE, FUND_SOURCE_ID, FUND_SOURCE_NAME – funding budget and its source; note FUND_SOURCE_NAME is an aliased duplicate of FUND_SOURCE_TYPE_CODE.
- USER_STATUS_ID / NAME and SYSTEM_STATUS_CODE – user-defined and seeded lifecycle status values, with LAST_STATUS_DATE.
- ACTIVE_FLAG, PRIVATE_FLAG, GLOBAL_FLAG, EVENT_STANDALONE_FLAG – operational and visibility indicators.
- ACTIVE_FROM_DATE, ACTIVE_TO_DATE, DAY_OF_EVENT, AGENDA_START_TIME, AGENDA_END_TIME, DURATION, DURATION_UOM_CODE – scheduling attributes.
- FORECASTED_REVENUE, ACTUAL_REVENUE, FORECASTED_COST, ACTUAL_COST – financial performance measures.
- ORGANIZATION_ID, INVENTORY_ITEM_ID, BUSINESS_UNIT_ID, COUNTRY_CODE – organizational and geographic context.
- START_PERIOD_NAME, END_PERIOD_NAME, ACCOUNTS_CLOSED_FLAG – accounting period linkage and close indicator.
- OWNER_USER_ID, COORDINATOR_ID – responsible personnel references to FND_USER / resources.
Common Use Cases and Queries
The view is typically queried to list active events, to reconcile funding amounts across currencies, or to feed downstream reporting. All queries should restrict EVENT_LEVEL, since the definition filters to main events when used as intended. A representative query returning event identity with currency and funding is:
SELECT event_header_id, event_header_name, event_type, currency_code_tc, fund_amount_tc, currency_code_fc, fund_amount_fc FROM apps.ams_event_headers_v WHERE active_flag = 'Y' AND TRUNC(active_from_date) >= TRUNC(SYSDATE) ORDER BY active_from_date;
A second pattern aggregates funding by functional currency for budget review:
SELECT currency_code_tc, COUNT(*) event_count, SUM(fund_amount_tc) total_fund FROM apps.ams_event_headers_v GROUP BY currency_code_tc ORDER BY total_fund DESC;
Because AMS_EVENT_HEADERS_VL is the driving object, security applied at the translatable view level is inherited. Listing currency_code_tc together with its FC counterpart and the corresponding fund amounts is the correct approach whenever multi-currency event budgets must be reported or interfaced, as it preserves both the functional ledger view and the original entered currency.
-
View: AMS_EVENT_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_EVENT_HEADERS_V, object_name:AMS_EVENT_HEADERS_V, status:VALID, product: AMS - Marketing , description: This view returns the general information about marketing events (headers). , implementation_dba_data: APPS.AMS_EVENT_HEADERS_V ,
-
View: AMS_EVENT_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_EVENT_HEADERS_V, object_name:AMS_EVENT_HEADERS_V, status:VALID, product: AMS - Marketing , description: This view returns the general information about marketing events (headers). , implementation_dba_data: APPS.AMS_EVENT_HEADERS_V ,
-
PACKAGE BODY: APPS.AMS_EVENTHEADER_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMS_EVENTHEADER_PVT, status:VALID,
-
PACKAGE BODY: APPS.AMS_EVENTHEADER_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AMS_EVENTHEADER_PVT, status:VALID,
-
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 DBA Data
12.2.2
-
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.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.FND_LANGUAGES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_LANGUAGES_VL, object_name:FND_LANGUAGES_VL, status:VALID,
-
VIEW: APPS.FND_LANGUAGES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_LANGUAGES_VL, object_name:FND_LANGUAGES_VL, status:VALID,
-
VIEW: APPS.AMS_USER_STATUSES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_USER_STATUSES_VL, object_name:AMS_USER_STATUSES_VL, status:VALID,
-
VIEW: APPS.AMS_USER_STATUSES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_USER_STATUSES_VL, object_name:AMS_USER_STATUSES_VL, status:VALID,
-
VIEW: APPS.AMS_EVENT_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_EVENT_HEADERS_V, object_name:AMS_EVENT_HEADERS_V, status:VALID,
-
VIEW: APPS.AMS_EVENT_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_EVENT_HEADERS_V, object_name:AMS_EVENT_HEADERS_V, status:VALID,
-
VIEW: APPS.AMS_EVENT_HEADERS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_EVENT_HEADERS_VL, object_name:AMS_EVENT_HEADERS_VL, status:VALID,
-
VIEW: APPS.AMS_EVENT_HEADERS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_EVENT_HEADERS_VL, object_name:AMS_EVENT_HEADERS_VL, status:VALID,
-
APPS.AMS_EVENTHEADER_PVT dependencies on AMS_EVENT_HEADERS_V
12.1.1
-
APPS.AMS_EVENTHEADER_PVT dependencies on AMS_EVENT_HEADERS_V
12.2.2
-
APPS.AMS_EVENTHEADER_PVT SQL Statements
12.1.1
-
APPS.AMS_EVENTHEADER_PVT SQL Statements
12.2.2
-
APPS.AMS_EVENTOFFER_PVT dependencies on AMS_EVENT_HEADERS_ALL_B
12.1.1
-
APPS.AMS_EVENTOFFER_PVT dependencies on AMS_CAMPAIGNS_ALL_B
12.2.2
-
APPS.AMS_EVENTOFFER_PVT dependencies on AMS_EVENT_HEADERS_ALL_B
12.2.2
-
APPS.AMS_EVENTOFFER_PVT dependencies on AMS_CAMPAIGNS_ALL_B
12.1.1
-
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 ,
-
PACKAGE BODY: APPS.AMS_EVENTOFFER_PVT
12.2.2
-
PACKAGE BODY: APPS.AMS_EVENTHEADER_PVT
12.2.2
-
PACKAGE BODY: APPS.AMS_EVENTOFFER_PVT
12.1.1
-
PACKAGE BODY: APPS.AMS_EVENTHEADER_PVT
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
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 ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,