Search Results bim_lead_conv_summ
Overview
The BIM.BIM_LEAD_CONV_SUMM table is a summarized marketing analytics object within the Oracle E-Business Suite Marketing Intelligence module (BIM). It stores pre-aggregated lead-conversion metrics segmented by user-defined reporting periods and multiple analytical dimensions. The table is populated by the BIM_LEAD_CONV_SUMM_PKG concurrent program, which reads detailed transactional marketing data and rolls it up into this summary structure to accelerate reporting performance. The Marketing Intelligence module is flagged as obsolete in the ETRM documentation, meaning the object is retained for backward compatibility with existing 12.1.1 and 12.2.2 installations but is no longer the focus of active development.
From a Data Vault modeling perspective, the table is classified heuristically as standalone. Because it holds no foreign keys to other detail tables (aside from the security context reference to FND_SECURITY_GROUPS), it is best modeled as an independent satellite-style aggregate — a periodic snapshot keyed by its business dimensions rather than as a hub or link. This classification suggests the table is a denormalized summary rather than part of a normalized entity relationship core.
Key Information Stored
The table contains 24 documented columns. The most significant analytical dimensions and measures are:
- CAMPAIGN_ID — Identifier of the marketing campaign being summarized.
- PERIOD_NAME, PERIOD_START_DATE, PERIOD_END_DATE — The user-defined period boundaries for the aggregation.
- MEDIA_ID, CHANNEL_ID — Media and channel classification for the leads and opportunities.
- MARKET_SEGMENT_ID — Target market segment associated with the campaign.
- SALES_CHANNEL_CODE — Code denoting the sales channel through which conversions occurred.
- GEOGRAPHY_CODE — Geographic grouping of the summarized activity.
- NUM_OF_LEADS — Count of leads generated in the period.
- NUM_OF_OPPORTUNITIES — Count of opportunities generated.
- NUM_OF_ORDERS — Count of orders booked.
- NUM_OF_ORDERS_FROM_LEADS — Orders attributed to direct lead conversion.
- NUM_OF_ORDERS_FROM_OPPS — Orders attributed to opportunity conversion.
- SECURITY_GROUP_ID — References
FND_SECURITY_GROUPS, enforcing row-level security scope.
While no explicit surrogate primary key is documented in the metadata, the unique index BIM_LEAD_CONV_SUMM_U1 serves as the business-key candidate. It is defined on the composite of PERIOD_NAME, PERIOD_START_DATE, PERIOD_END_DATE, CAMPAIGN_ID, MEDIA_ID, CHANNEL_ID, MARKET_SEGMENT_ID, SALES_CHANNEL_CODE, GEOGRAPHY_CODE, which together uniquely identify each summary row. Operational lineage columns include REQUEST_ID, PROGRAM_ID, PROGRAM_APPLICATION_ID, PROGRAM_UPDATE_DATE and standard audit columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN).
Common Use Cases and Queries
Typical usage centers on campaign effectiveness reporting and lead-funnel conversion analysis. A common query aggregates conversion rates by campaign and period:
SELECT campaign_id, period_name,
SUM(num_of_leads) AS leads,
SUM(num_of_opportunities) AS opps,
SUM(num_of_orders_from_leads) AS orders_from_leads,
ROUND(SUM(num_of_orders_from_leads)/NULLIF(SUM(num_of_leads),0)*100,2) AS lead_conv_pct
FROM bim.bim_lead_conv_summ
WHERE period_start_date >= :p_from
AND period_end_date <= :p_to
GROUP BY campaign_id, period_name
ORDER BY campaign_id, period_name;
Reports frequently join this table to campaign and geography dimensions to build performance dashboards. Because the data is pre-summarized, it is well suited to period-over-period trend analysis and to feeding BI Publisher or OBIEE reports without hitting high-volume source tables.
Related Objects
The most significant related objects documented or implied by the schema are:
- FND_SECURITY_GROUPS — joined via
BIM_LEAD_CONV_SUMM.SECURITY_GROUP_ID = FND_SECURITY_GROUPS.SECURITY_GROUP_IDto enforce organizational data security. - BIM_LEAD_CONV_SUMM_PKG — the concurrent program package that populates the summary.
- Campaign dimension table (BIM_CAMPAIGNS / AMS_CAMPAIGNS variant) — joined on
CAMPAIGN_IDfor campaign attributes. - Media, Channel, and Market Segment dimension tables — joined on
MEDIA_ID, CHANNEL_ID, MARKET_SEGMENT_ID. - Geography reference data — joined on
GEOGRAPHY_CODE.
Given the module's obsolete status, DBAs should confirm dependencies before modification and validate that existing concurrent program schedules still reference BIM_LEAD_CONV_SUMM_PKG correctly in 12.1.1 and 12.2.2 environments.
-
Table: BIM_LEAD_CONV_SUMM
12.2.2
owner:BIM, object_type:TABLE, fnd_design_data:BIM.BIM_LEAD_CONV_SUMM, object_name:BIM_LEAD_CONV_SUMM, status:VALID, product: BIM - Marketing Intelligence(Obsolete) , description: Summarized data by user-defined period and is populated by BIM_LEAD_CONV_SUMM_PKG concurrent program. , implementation_dba_data: BIM.BIM_LEAD_CONV_SUMM ,
-
Table: BIM_LEAD_CONV_SUMM
12.1.1
owner:BIM, object_type:TABLE, fnd_design_data:BIM.BIM_LEAD_CONV_SUMM, object_name:BIM_LEAD_CONV_SUMM, status:VALID, product: BIM - Marketing Intelligence , description: Summarized data by user-defined period and is populated by BIM_LEAD_CONV_SUMM_PKG concurrent program. , implementation_dba_data: BIM.BIM_LEAD_CONV_SUMM ,
-
SYNONYM: APPS.BIM_LEAD_CONV_SUMM
12.2.2
owner:APPS, object_type:SYNONYM, object_name:BIM_LEAD_CONV_SUMM, status:VALID,
-
VIEW: BIM.BIM_LEAD_CONV_SUMM#
12.2.2
owner:BIM, object_type:VIEW, object_name:BIM_LEAD_CONV_SUMM#, status:VALID,
-
SYNONYM: APPS.BIM_LEAD_CONV_SUMM
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BIM_LEAD_CONV_SUMM, status:VALID,
-
VIEW: BIM.BIM_LEAD_CONV_SUMM#
12.2.2
-
VIEW: APPS.BIM_SUMV_LEAD_CONV
12.1.1
-
VIEW: APPS.BIM_SUMV_LEAD_CONV
12.2.2
-
TABLE: BIM.BIM_LEAD_CONV_SUMM
12.1.1
owner:BIM, object_type:TABLE, fnd_design_data:BIM.BIM_LEAD_CONV_SUMM, object_name:BIM_LEAD_CONV_SUMM, status:VALID,
-
TABLE: BIM.BIM_LEAD_CONV_SUMM
12.2.2
owner:BIM, object_type:TABLE, fnd_design_data:BIM.BIM_LEAD_CONV_SUMM, object_name:BIM_LEAD_CONV_SUMM, status:VALID,
-
View: BIM_SUMV_LEAD_CONV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_SUMV_LEAD_CONV, object_name:BIM_SUMV_LEAD_CONV, status:VALID, product: BIM - Marketing Intelligence , description: Joins the summary table to the dimension views. , implementation_dba_data: APPS.BIM_SUMV_LEAD_CONV ,
-
View: BIM_SUMV_LEAD_CONV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_SUMV_LEAD_CONV, object_name:BIM_SUMV_LEAD_CONV, status:VALID, product: BIM - Marketing Intelligence(Obsolete) , description: Joins the summary table to the dimension views. , implementation_dba_data: APPS.BIM_SUMV_LEAD_CONV ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.BIM_SUMV_LEAD_CONV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_SUMV_LEAD_CONV, object_name:BIM_SUMV_LEAD_CONV, status:VALID,
-
VIEW: APPS.BIM_SUMV_LEAD_CONV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_SUMV_LEAD_CONV, object_name:BIM_SUMV_LEAD_CONV, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - BIM Tables and Views
12.2.2
description: Target segment level table . ,
-
eTRM - BIM Tables and Views
12.1.1
description: Target segment level table . ,
-
eTRM - BIM Tables and Views
12.2.2
description: Target segment level table . ,
-
eTRM - BIM Tables and Views
12.1.1
description: Target segment level table . ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1