Search Results ams_event_offers_vl
Overview
AMS_EVENT_OFFERS_VL is a Marketing (AMS) module view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It returns general information about marketing event offerings, exposing the header-level attributes of an event offer — an entity that represents a bookable, registrable event such as a seminar, conference, or training session. The view is a "VL" (view of translated and untranslated columns) construct, meaning it joins the transactional base entity to its translation table so that both language-independent and language-specific attributes are presented in a single row. It is the principal public interface through which forms, concurrent programs, OAF pages, and custom integrations read event offer data without directly querying the underlying tables. At runtime the object reports a status of VALID, and it is the standard read path for marketing event offer information used across registration, partner, and revenue-related processes.
Underlying Base Objects
The view is defined over two documented base objects, both reached through APPS synonyms:
- AMS_EVENT_OFFERS_ALL_B — the base (untranslated) table holding the core event offer attributes and all numeric, date, flag, and foreign key columns.
- AMS_EVENT_OFFERS_ALL_TL — the translation (_TL) table holding language-dependent text columns for each event offer, keyed by language.
The view text is written against the alias B for the base table, so every non-translated column is sourced from AMS_EVENT_OFFERS_ALL_B, with the VL layer supplying the translated columns from AMS_EVENT_OFFERS_ALL_TL. Because the definition spans a _B and a _TL table, the view enforces the standard multi-language pattern: each event offer appears once per installed/selected language, and the VL mechanism exposes the appropriate translation without requiring the caller to join the _TL table explicitly.
Key Columns
The view exposes a broad column set that supports event setup, registration control, and financial tracking:
- Identity and audit: EVENT_OFFER_ID, OBJECT_VERSION_NUMBER, APPLICATION_ID, ORG_ID, plus CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, and LAST_UPDATE_LOGIN.
- Classification: EVENT_HEADER_ID, SETUP_TYPE_ID, SOURCE_CODE, EVENT_LEVEL, EVENT_TYPE_CODE, USER_STATUS_ID, SYSTEM_STATUS_CODE, and USER_STATUS-related dates such as LAST_STATUS_DATE.
- Scheduling: EVENT_START_DATE, EVENT_START_DATE_TIME, EVENT_END_DATE, EVENT_END_DATE_TIME, EVENT_DURATION, EVENT_DURATION_UOM_CODE, and TIMEZONE_ID.
- Registration controls: REG_START_DATE, REG_START_TIME, REG_END_DATE, REG_END_TIME, REG_REQUIRED_FLAG, REG_FROZEN_FLAG, REG_CHARGE_FLAG, REG_INVITED_ONLY_FLAG, REG_WAITLIST_ALLOWED_FLAG, REG_OVERBOOK_ALLOWED_FLAG, REG_MAXIMUM_CAPACITY, REG_OVERBOOK_PCT, REG_EFFECTIVE_CAPACITY, REG_WAITLIST_PCT, REG_MINIMUM_CAPACITY, REG_MINIMUM_REQ_BY_DATE, AUTO_REGISTER_FLAG, EVENT_FULL_FLAG, and WAITLIST_ACTION_TYPE_CODE.
- Financials: FORECASTED_REVENUE, ACTUAL_REVENUE, FORECASTED_COST, ACTUAL_COST, FUND_AMOUNT_TC, FUND_AMOUNT_FC, CURRENCY_CODE_TC, CURRENCY_CODE_FC, and CURRENCY-related fund source identifiers.
- Commercial context: INVENTORY_ITEM_ID, PRICELIST_HEADER_ID, PRICELIST_LINE_ID, ORGANIZATION_ID, and PARTNER_FLAG.
- Flexfields: ATTRIBUTE_CATEGORY and ATTRIBUTE1 through ATTRIBUTE15 for descriptive flexfield storage.
Common Use Cases and Queries
The view is used for event calendar reporting, registration eligibility checks, revenue and cost analysis, and partner-facing event extracts. Typical retrievals filter by status, date range, and organization:
- List active upcoming offerings for an operating unit.
- Determine whether registration is still open and whether the event is full.
- Report forecasted versus actual revenue and cost by event type.
- Feed external registration or e-commerce systems with event headers, venues, and pricing references.
Example:
SELECT event_offer_id, event_header_id, event_start_date,
event_end_date, reg_start_date, reg_end_date,
reg_maximum_capacity, actual_revenue, currency_code_tc
FROM apps.ams_event_offers_vl
WHERE active_flag = 'Y'
AND org_id = :p_org_id
AND event_start_date >= SYSDATE
ORDER BY event_start_date;
Custom code should query the view rather than the base tables to remain consistent with the multi-language join and to avoid replicating translation logic.
-
View: AMS_EVENT_OFFERS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_EVENT_OFFERS_VL, object_name:AMS_EVENT_OFFERS_VL, status:VALID, product: AMS - Marketing , description: This view returns the general information about marketing event offerings. , implementation_dba_data: APPS.AMS_EVENT_OFFERS_VL ,
-
View: AMS_EVENT_OFFERS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_EVENT_OFFERS_VL, object_name:AMS_EVENT_OFFERS_VL, status:VALID, product: AMS - Marketing , description: This view returns the general information about marketing event offerings. , implementation_dba_data: APPS.AMS_EVENT_OFFERS_VL ,
-
VIEW: APPS.AMS_EVENT_OFFERS_AGENDA_V
12.1.1
-
VIEW: APPS.AMS_EVENT_OFFERS_AGENDA_V
12.2.2
-
VIEW: APPS.AMS_P_EVENT_DELIVERABLES_V
12.2.2
-
VIEW: APPS.AMS_P_EVENT_REG_CONTACTS_V
12.2.2
-
VIEW: APPS.AMS_P_EVENT_DELIVERABLES_V
12.1.1
-
VIEW: APPS.AMS_SOURCE_CODES_DETAILS_V
12.1.1
-
VIEW: APPS.AMS_P_EVENT_REG_ROSTER_V
12.2.2
-
VIEW: APPS.AMS_SOURCE_CODES_DETAILS_V
12.2.2
-
VIEW: APPS.AMS_P_EVENT_REG_CONTACTS_V
12.1.1
-
APPS.AMS_COPYACTIVITIES_PVT SQL Statements
12.2.2
-
VIEW: APPS.AMS_P_SOURCE_CODES_V
12.2.2
-
VIEW: APPS.AMS_P_EVENT_REG_ROSTER_V
12.1.1
-
VIEW: APPS.AMS_P_EVENT_CAMPAIGNS_V
12.2.2
-
APPS.AMS_COPYACTIVITIES_PVT SQL Statements
12.1.1
-
APPS.AMS_EVENTSCHEDULE_COPY_PVT SQL Statements
12.1.1
-
VIEW: APPS.AMS_P_SOURCE_CODES_V
12.1.1
-
View: AMS_EVENT_OFFERS_AGENDA_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_EVENT_OFFERS_AGENDA_V, object_name:AMS_EVENT_OFFERS_AGENDA_V, status:VALID, product: AMS - Marketing , description: This view returns the general information about marketing event offering agenda. , implementation_dba_data: APPS.AMS_EVENT_OFFERS_AGENDA_V ,
-
VIEW: APPS.BIM_DIMV_EVENT_OFFERS
12.1.1
-
VIEW: APPS.AMS_P_EVENT_CAMPAIGNS_V
12.1.1
-
APPS.AMS_EVENTSCHEDULE_COPY_PVT SQL Statements
12.2.2
-
VIEW: APPS.AST_EV_HIS_ORG_V
12.1.1
-
View: AMS_SOURCE_CODES_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_SOURCE_CODES_DETAILS_V, object_name:AMS_SOURCE_CODES_DETAILS_V, status:VALID, product: AMS - Marketing , implementation_dba_data: APPS.AMS_SOURCE_CODES_DETAILS_V ,
-
VIEW: APPS.AMS_EVENT_OFFERS_OV_V
12.2.2
-
View: AMS_EVENT_OFFERS_AGENDA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_EVENT_OFFERS_AGENDA_V, object_name:AMS_EVENT_OFFERS_AGENDA_V, status:VALID, product: AMS - Marketing , description: This view returns the general information about marketing event offering agenda. , implementation_dba_data: APPS.AMS_EVENT_OFFERS_AGENDA_V ,
-
VIEW: APPS.AST_EV_HIS_ORG_V
12.2.2
-
APPS.AMS_EVENT_OBJECTS_COPY_PVT SQL Statements
12.1.1
-
View: AMS_SOURCE_CODES_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_SOURCE_CODES_DETAILS_V, object_name:AMS_SOURCE_CODES_DETAILS_V, status:VALID, product: AMS - Marketing , implementation_dba_data: APPS.AMS_SOURCE_CODES_DETAILS_V ,
-
VIEW: APPS.AMS_EVENT_OFFERS_OV_V
12.1.1
-
VIEW: APPS.BIM_DIMV_EVENT_OFFERS
12.2.2
-
VIEW: APPS.AST_EV_HIS_PER_V
12.1.1
-
VIEW: APPS.AMS_P_OSO_SOURCE_CODES_V
12.2.2
-
APPS.AMS_EVENT_OBJECTS_COPY_PVT SQL Statements
12.2.2
-
View: AST_EVENT_ENROLL_HISTORY_V
12.1.1
product: AST - TeleSales , implementation_dba_data: Not implemented in this database ,
-
View: AST_EVENT_ENROLL_HISTORY_V
12.2.2
product: AST - TeleSales , implementation_dba_data: Not implemented in this database ,
-
View: AST_EV_HIS_ORG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_EV_HIS_ORG_V, object_name:AST_EV_HIS_ORG_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_EV_HIS_ORG_V ,
-
View: AMS_P_SOURCE_CODES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_SOURCE_CODES_V, object_name:AMS_P_SOURCE_CODES_V, status:VALID, product: AMS - Marketing , description: This public view shows the information related to Marketing Source code. , implementation_dba_data: APPS.AMS_P_SOURCE_CODES_V ,
-
VIEW: APPS.AMS_P_OSO_SOURCE_CODES_V
12.1.1
-
PACKAGE BODY: APPS.AST_AMS_SOURCE_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AST_AMS_SOURCE_PKG, status:VALID,
-
SYNONYM: APPS.AMS_EVENT_OFFERS_ALL_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AMS_EVENT_OFFERS_ALL_TL, status:VALID,
-
VIEW: APPS.AMS_EVENT_OFFERS_REG_V
12.2.2
-
View: AST_EV_HIS_ORG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_EV_HIS_ORG_V, object_name:AST_EV_HIS_ORG_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_EV_HIS_ORG_V ,
-
SYNONYM: APPS.AMS_EVENT_OFFERS_ALL_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AMS_EVENT_OFFERS_ALL_TL, status:VALID,
-
VIEW: APPS.AST_EV_HIS_PER_V
12.2.2
-
APPS.AST_AMS_SOURCE_PKG SQL Statements
12.2.2
-
APPS.AST_AMS_SOURCE_PKG SQL Statements
12.1.1
-
VIEW: APPS.AST_SOURCE_ONLY_V
12.1.1
-
VIEW: APPS.AMS_EVENT_OFFERS_REG_V
12.1.1
-
PACKAGE BODY: APPS.AST_OFL_EVENT_INFO_PARAM
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AST_OFL_EVENT_INFO_PARAM, status:VALID,