Search Results duration_uom_code




Overview

The EDW_BIM_EVNT_EVENTS_LCV view is a Marketing Intelligence (BIM) reporting object within the Oracle E-Business Suite 12.1.1 / 12.2.2 data warehouse layer. It exposes event header information from the Marketing (AMS) module in a denormalized, conformed form suitable for loading into the Enterprise Data Warehouse (EDW) and for downstream business intelligence consumption. The view is classified as an LCV (Load Control / column-mapped view) and, as documented in the ETRM metadata, is not implemented in this database — meaning it exists as a reference definition only and is not deployed as a physical dictionary object in the target environment.

Its central purpose is to present a unified event record keyed by a synthetic primary key. The EVENT_PK is constructed by concatenating the event header identifier, the instance code, and the literal suffix '-EVENT', producing a globally unique key across multiple EBS instances consolidated into the warehouse. This design supports multi-instance data marts where the same logical event may exist in more than one source system.

Underlying Base Objects

The view text defines a join between two objects: AMS_EVENT_HEADERS_VL (aliased AEH) and EDW_LOCAL_INSTANCE (aliased INST). The ETRM metadata records no formally documented base objects, but the view text is authoritative for the join structure.

  • AMS_EVENT_HEADERS_VL — the Marketing event header view providing all event-level attributes (name, type, status, registration parameters, scheduling, and marketing content).
  • EDW_LOCAL_INSTANCE — the data warehouse instance registry, supplying INSTANCE_CODE to qualify each row by source EBS instance.
  • The join is effectively unconditional within the defined view text, with the instance acting as a partitioning/qualifier dimension for the EDW load.

Key Columns

The user's search term, event_header_name, is exposed by this view under three aliases, each serving a distinct warehouse role:

Common Use Cases and Queries

A frequent requirement is to report events by name across all consolidated instances. Because the view tags each row with INSTANCE_CODE, the following query resolves events by their header name and instance:

  • List all events and their status: SELECT EVENT_HEADER_NAME, SYSTEM_STATUS_CODE, INSTANCE FROM EDW_BIM_EVNT_EVENTS_LCV;
  • Filter by a specific name: SELECT * FROM EDW_BIM_EVNT_EVENTS_LCV WHERE EVENT_HEADER_NAME = :p_name;
  • Reconcile instances: SELECT EVENT_HEADER_ID, INSTANCE, EVENT_PK FROM EDW_BIM_EVNT_EVENTS_LCV ORDER BY EVENT_HEADER_NAME;

Typical applications include event catalog dashboards, registration-capacity analysis, marketing campaign reporting, and cross-instance consolidation audits. As the object is not implemented in the database, consumers should treat it as a specification blueprint for building ETL mappings rather than a directly queryable view.