Search Results campaign_source_code
Overview
AST_LS_EVENTS_V is a TeleSales (AST) module view that exposes event offer information for use within the Oracle E-Business Suite TeleSales and Advanced Marketing (AMS) product family. Its primary role is to present a consolidated, query-ready result set of active, main-level event offers together with their registration availability, location, language, user status, campaign association, and event type classification. The view is most commonly referenced when building prospect lists, campaign audiences, or registration workflows in TeleSales, where agents need to identify events that are currently open for registration.
The view name itself suggests a TeleSales listing ("LS") of events, and it is typically consumed by concurrent programs, forms, or custom reports that require a filtered, business-ready list rather than the raw event offer table. Because it embeds several filtering predicates directly in its definition, callers benefit from consistent eligibility rules across all consumers.
Underlying Base Objects
Although the ETRM metadata documentation notes "Referenced base objects: none documented," the view definition clearly incorporates the following AMS and shared tables:
- AMS_EVENT_OFFERS_VL — the master event offer table, providing offer ID, name, description, dates, capacity, status, language, and location.
- AMS_USER_STATUSES_VL — supplies the user-defined status name for the event offer.
- FND_LANGUAGES_VL — provides the event language translation.
- HZ_LOCATIONS — supplies city, state, province, and country for the event venue.
- AMS_LOOKUPS — resolves the AMS_EVENT_TYPE lookup code into its displayed meaning.
- AMS_OBJECT_ASSOCIATIONS — links the event offer (master object type 'EVEO') to a campaign (using object type 'CAMP').
- AMS_CAMPAIGNS_VL — provides campaign name and source code.
- AMS_EVENT_REGISTRATIONS — used in a scalar subquery to compute remaining registration capacity.
The joins are largely outer joins for language, lookup, campaign, and location, ensuring that an active event offer still appears even when optional attributes are absent.
Key Columns
- EVENT_OFFER_ID / EVENT_OFFER_NAME — the unique identifier and display name of the event offer.
- DESCRIPTION — the event offer description.
- EVENT_LANGUAGE — the NLS language of the event content.
- REG_NUMBER_AVAILABLE — remaining registration capacity, calculated as regional effective capacity minus the count of registrations with SYSTEM_STATUS_CODE = 'REGISTERED'.
- EVENT_TYPE — the decoded meaning of the AMS_EVENT_TYPE lookup (this is the field associated with the user search term "ams_event_type").
- EVENT_LOCATION, CITY, STATE, PROVINCE, COUNTRY — venue address components derived from HZ_LOCATIONS.
- EVENT_START_DATE / EVENT_END_DATE — scheduled event window.
- USER_STATUS — the user-defined status name.
- CAMPAIGN_NAME / CAMPAIGN_SOURCE_CODE — campaign linkage via AMS_OBJECT_ASSOCIATIONS.
- Columns returning NULL — EVENT_HEADER_ID, REG_INVITED_ONLY_FLAG, EVENT_VENUE_NAME, and COORDINATOR_PHONE are placeholders retained for interface compatibility.
Common Use Cases and Queries
Typical uses include TeleSales agent event pick lists, campaign audience generation, and capacity monitoring. A simple query lists active events with available seats:
SELECT event_offer_id, event_offer_name, event_type, event_start_date, reg_number_available FROM ast_ls_events_v WHERE reg_number_available > 0;SELECT event_offer_name, city, state, country, campaign_name FROM ast_ls_events_v WHERE event_type = 'Conference';SELECT event_offer_name, reg_number_available FROM ast_ls_events_v ORDER BY reg_number_available DESC;
The view is documented as not implemented in the reference database, so availability should be confirmed in the target 12.1.1 or 12.2.2 instance before use in custom reports.
-
View: AST_LS_EVENTS_V
12.1.1
product: AST - TeleSales , implementation_dba_data: Not implemented in this database ,
-
View: AST_LS_EVENTS_V
12.2.2
product: AST - TeleSales , implementation_dba_data: Not implemented in this database ,
-
View: AST_LM_EVENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_EVENTS_V, object_name:AST_LM_EVENTS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_EVENTS_V ,
-
View: AST_LM_EVENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_EVENTS_V, object_name:AST_LM_EVENTS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_EVENTS_V ,
-
View: AST_LM_EVENTS_SRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_EVENTS_SRC_V, object_name:AST_LM_EVENTS_SRC_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_EVENTS_SRC_V ,
-
View: AST_LM_EVENTS_SRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_EVENTS_SRC_V, object_name:AST_LM_EVENTS_SRC_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_EVENTS_SRC_V ,
-
View: AST_CAMPAIGNS_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_CAMPAIGNS_LOV_V, object_name:AST_CAMPAIGNS_LOV_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_CAMPAIGNS_LOV_V ,
-
View: AST_CAMPAIGNS_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_CAMPAIGNS_LOV_V, object_name:AST_CAMPAIGNS_LOV_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_CAMPAIGNS_LOV_V ,
-
View: AST_GRP_CAMPAIGNS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_GRP_CAMPAIGNS_V, object_name:AST_GRP_CAMPAIGNS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_GRP_CAMPAIGNS_V ,
-
View: AST_GRP_CAMPAIGNS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_GRP_CAMPAIGNS_V, object_name:AST_GRP_CAMPAIGNS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_GRP_CAMPAIGNS_V ,
-
View: AST_RS_CAMPAIGNS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_RS_CAMPAIGNS_V, object_name:AST_RS_CAMPAIGNS_V, status:VALID, product: AST - TeleSales , description: To Show the assignment of Campaigns to resources with additional information , implementation_dba_data: APPS.AST_RS_CAMPAIGNS_V ,
-
View: AST_RS_CAMPAIGNS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_RS_CAMPAIGNS_V, object_name:AST_RS_CAMPAIGNS_V, status:VALID, product: AST - TeleSales , description: To Show the assignment of Campaigns to resources with additional information , implementation_dba_data: APPS.AST_RS_CAMPAIGNS_V ,