Search Results ams_event_registrations_v
Overview
The AMS_EVENT_REGISTRATIONS_V view is an Oracle E-Business Suite (EBS) dictionary object owned by the APPS schema and delivered as part of the AMS (Marketing) product family in releases 12.1.1 and 12.2.2. It presents the registration details of participants to a marketing event, consolidating registration header data with the registrant's party and contact information into a single reporting surface. The view is defined as a UNION ALL query, which reflects the fact that registration records may originate from distinct sources—for example, a primary registration flow and a secondary or relationship-driven flow—and both must be surfaced uniformly to consumers.
Because AMS is tightly integrated with the Oracle Marketing Online (OMO) and Oracle Trade Management (OTM) sub-modules, this view serves as a reporting and integration access point for event registration analytics, customer attendance tracking, and downstream campaign attribution. Developers and analysts query it to avoid reconstructing joins across the underlying registration, lookup, status, and party tables.
Underlying Base Objects
The documented base objects referenced by the view are:
AMS_EVENT_REGISTRATIONS(SYNONYM) — the primary transactional table holding event registration records.AMS_LOOKUPS(VIEW) — supplies lookup meanings, notably forAMS_EVENT_PAYMENT_STATUS.AMS_USER_STATUSES_VL(VIEW) — provides user-defined status names viaUSER_STATUS_ID.HZ_PARTIES(SYNONYM) — the Trading Community Architecture (TCA) party master, source ofPARTY_NAME,PERSON_FIRST_NAME, andPERSON_LAST_NAME.HZ_RELATIONSHIPS(SYNONYM) — TCA relationship data, joined to resolve registrant-to-contact associations in the second branch of the union.
Joins in the visible branch connect REG.USER_STATUS_ID to AUS.USER_STATUS_ID, REG.REGISTRANT_PARTY_ID to HZ.PARTY_ID, and an outer join to AMS_LOOKUPS on the payment status lookup type. The condition REG.REGISTRANT_PARTY_ID = REG.REGISTRANT_CONTACT_ID restricts rows to registrations where the party and contact coincide in the first union branch.
Key Columns
EVENT_REGISTRATION_ID— primary identifier of the registration record.EVENT_OFFER_ID— the marketing event offer to which the registration belongs.CONFIRMATION_CODE,ACTIVE_FLAG,DATE_REGISTRATION_PLACED— registration lifecycle attributes.USER_STATUS_ID/NAME— user-defined registration status and its display value.SYSTEM_STATUS_CODE,LAST_REG_STATUS_DATE— system-managed status and its timestamp.REGISTRANT_PARTY_ID,CUSTOMER_NAME,PERSON_FIRST_NAME,PERSON_LAST_NAME— registrant identity from TCA.ATTENDED_FLAG,CONFIRMED_FLAG,EVALUATED_FLAG,ATTENDANCE_RESULT_CODE— attendance and evaluation state.INBOUND_MEDIA_IDandINBOUND_CHANNEL_ID— the inbound marketing media and channel that generated the registration, central to attribution and campaign-effectiveness reporting (the column most commonly searched for).PAYMENT_STATUS_CODE/MEANING— decoded payment status fromAMS_LOOKUPS.CANCELLATION_CODE,CANCELLATION_REASON_CODE,ATTENDANCE_FAILURE_REASON— cancellation and no-show analysis fields.EVENT_JOIN_TIME,EVENT_EXIT_TIME— attendance duration for virtual or timed events.
Common Use Cases and Queries
Typical use cases include registration-volume reporting by event offer, channel attribution, attendance tracking, and payment/cancellation analysis.
SELECT EVENT_REGISTRATION_ID,
EVENT_OFFER_ID,
CUSTOMER_NAME,
USER_STATUS_ID,
INBOUND_CHANNEL_ID,
INBOUND_MEDIA_ID,
DATE_REGISTRATION_PLACED
FROM APPS.AMS_EVENT_REGISTRATIONS_V
WHERE ACTIVE_FLAG = 'Y'
AND DATE_REGISTRATION_PLACED >= :p_from_date;
Channel attribution for inbound marketing effectiveness:
SELECT INBOUND_CHANNEL_ID, COUNT(*) reg_count FROM APPS.AMS_EVENT_REGISTRATIONS_V WHERE EVENT_OFFER_ID = :p_offer_id GROUP BY INBOUND_CHANNEL_ID;
Attendance versus no-show analysis:
SELECT ATTENDED_FLAG, ATTENDANCE_RESULT_CODE, COUNT(*) FROM APPS.AMS_EVENT_REGISTRATIONS_V GROUP BY ATTENDED_FLAG, ATTENDANCE_RESULT_CODE;
Because the view performs live joins (including an outer join to lookups), queries should filter on indexed base columns such as EVENT_OFFER_ID and EVENT_REGISTRATION_ID to avoid full scans on AMS_EVENT_REGISTRATIONS.
-
View: AMS_EVENT_REGISTRATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_EVENT_REGISTRATIONS_V, object_name:AMS_EVENT_REGISTRATIONS_V, status:VALID, product: AMS - Marketing , description: This view returns the registration details of the participants to a marketing event. , implementation_dba_data: APPS.AMS_EVENT_REGISTRATIONS_V ,
-
View: AMS_EVENT_REGISTRATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_EVENT_REGISTRATIONS_V, object_name:AMS_EVENT_REGISTRATIONS_V, status:VALID, product: AMS - Marketing , description: This view returns the registration details of the participants to a marketing event. , implementation_dba_data: APPS.AMS_EVENT_REGISTRATIONS_V ,
-
PACKAGE BODY: APPS.OKL_UWQ_SEL_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_UWQ_SEL_PKG, status:VALID,
-
PACKAGE BODY: APPS.OKL_UWQ_SEL_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_UWQ_SEL_PKG, status:VALID,
-
PACKAGE BODY: APPS.IEX_UWQ_SEL_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IEX_UWQ_SEL_PKG, status:VALID,
-
PACKAGE BODY: APPS.IEX_UWQ_SEL_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IEX_UWQ_SEL_PKG, status:VALID,
-
SYNONYM: APPS.AMS_EVENT_REGISTRATIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AMS_EVENT_REGISTRATIONS, status:VALID,
-
SYNONYM: APPS.AMS_EVENT_REGISTRATIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AMS_EVENT_REGISTRATIONS, status:VALID,
-
APPS.OKL_UWQ_SEL_PKG SQL Statements
12.2.2
-
APPS.IEX_UWQ_SEL_PKG SQL Statements
12.1.1
-
APPS.IEX_UWQ_SEL_PKG SQL Statements
12.2.2
-
APPS.OKL_UWQ_SEL_PKG SQL Statements
12.1.1
-
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.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_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_EVENT_REGISTRATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_EVENT_REGISTRATIONS_V, object_name:AMS_EVENT_REGISTRATIONS_V, status:VALID,
-
VIEW: APPS.AMS_EVENT_REGISTRATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_EVENT_REGISTRATIONS_V, object_name:AMS_EVENT_REGISTRATIONS_V, status:VALID,
-
APPS.IEX_UWQ_SEL_PKG dependencies on AMS_EVENT_REGISTRATIONS_V
12.1.1
-
APPS.IEX_UWQ_SEL_PKG dependencies on AMS_EVENT_REGISTRATIONS_V
12.2.2
-
APPS.OKL_UWQ_SEL_PKG dependencies on AMS_EVENT_REGISTRATIONS_V
12.2.2
-
APPS.OKL_UWQ_SEL_PKG dependencies on AMS_EVENT_REGISTRATIONS_V
12.1.1
-
SYNONYM: APPS.HZ_RELATIONSHIPS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_RELATIONSHIPS, status:VALID,
-
SYNONYM: APPS.HZ_RELATIONSHIPS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_RELATIONSHIPS, status:VALID,
-
APPS.AST_UWQ_SEL_PKG dependencies on AMS_EVENT_REGISTRATIONS
12.2.2
-
APPS.AST_UWQ_SEL_PKG dependencies on AMS_EVENT_REGISTRATIONS
12.1.1
-
PACKAGE BODY: APPS.IEX_UWQ_SEL_PKG
12.1.1
-
PACKAGE BODY: APPS.OKL_UWQ_SEL_PKG
12.1.1
-
PACKAGE BODY: APPS.IEX_UWQ_SEL_PKG
12.2.2
-
PACKAGE BODY: APPS.OKL_UWQ_SEL_PKG
12.2.2
-
PACKAGE BODY: APPS.AST_UWQ_SEL_PKG
12.2.2
-
PACKAGE BODY: APPS.AST_UWQ_SEL_PKG
12.1.1
-
SYNONYM: APPS.HZ_PARTIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTIES, status:VALID,
-
SYNONYM: APPS.HZ_PARTIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTIES, 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.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 ,