Search Results bim_sgmt_act_mv
Overview
BIM_SGMT_ACT_MV is an APPS-owned materialized view table registered in the FND – Application Object Library product within Oracle EBS 12.1.1 and 12.2.2. Despite its _MV suffix, the object is catalogued as a TABLE in the ETRM repository with a VALID status, indicating it functions as a materialized aggregate storing pre-computed segmentation activity metrics. The 26-column layout, high proportion of _C (calculated/compiled) columns, and presence of DUMMY1_FR through DUMMY6_FR placeholders are characteristic of Oracle's summary management and OLAP-style aggregate materialization pattern, where grouping sets require fixed dummy dimensions to produce stable query rewrite signatures.
From a Data Vault modeling perspective, the table exhibits satellite-like characteristics: it records measurable, time-variant metrics (counts, amounts, responses) keyed against descriptive dimensions. The heuristic classification is therefore satellite-style descriptive snapshot. However, the unique index definition with non-null-mapped (NVL-style) surrogate keys gives it a hub-adjacent role, since the combination SEGMENT_ID, CATEGORY_ID_C, and dummy foreign references effectively forms a business key composite used to enforce uniqueness. Organizations applying Data Vault 2.0 to EBS analytics would typically model this as a downstream sat/aggregate rather than a normative hub.
Key Information Stored
The most operationally significant columns fall into three categories:
- Time/period dimensions:
TIME_IDandPERIOD_TYPE_IDanchor each row to a calendar period; these drive the partitioning and slice-and-dice behaviour expected from a summary object. - Segmentation dimensions:
SEGMENT_IDis the primary business-key candidate and carries a foreign key toCSF_TDS_SEGMENTS.SEGMENT_ID, tying metrics to a defined market segment hierarchy.CATEGORY_IDandCATEGORY_ID_Cprovide the category rollup and its compiled mirror. - Activity/funnel metrics:
ACTIVITIES_COUNT,ACTIVITIES_COUNT_C,RESPONSES,RESPONSES_C,LEADS, andLEADS_Ccapture top-of-funnel volume;NEW_OPPORTUNITY_AMT,NEW_OPPORTUNITY_AMT_C,NEW_OPPORTUNITY_AMT_S,NEW_OPPORTUNITY_AMT_S_C,BOOKED_AMT,BOOKED_AMT_C,BOOKED_AMT_S, andBOOKED_AMT_S_Ccapture pipeline and closed revenue in both base and secondary (_S) currency forms. - Row identifier:
ALL_CNTserves as an aggregate count helper, while the unique indexI_SNAP$_BIM_SGMT_ACT_MVenforces uniqueness across the SYS_OP_MAP_NONNULL-mapped tuple ofSEGMENT_ID, the six dummy foreign references, andCATEGORY_ID_C.
The _C and _S suffixes follow Oracle summary conventions: _C denotes a calculated or compiled companion value, and _S denotes a second-currency equivalent. The _FR columns are foreign-reference placeholder keys, not user data.
Common Use Cases and Queries
Typical usage centres on segmentation analytics and funnel reporting. Common query patterns include:
- Period-over-period pipeline comparison: joining to a time dimension on
TIME_IDand grouping bySEGMENT_IDto trendNEW_OPPORTUNITY_AMTagainstBOOKED_AMT. - Conversion-rate analysis: deriving responsive and lead-to-booking ratios from
RESPONSES,LEADS,ACTIVITIES_COUNT, and amounts from the same row. - Currency restatement: selecting the
_Svariants where a reporting ledger or corporate currency is required. - Materialized view refresh monitoring: checking row counts and last refresh through
DBA_MVIEWSand logs to detect stale snapshots.
A representative pattern:
SELECT s.segment_name, m.time_id,
SUM(m.activities_count) AS activities,
SUM(m.responses) AS responses,
SUM(m.leads) AS leads,
SUM(m.new_opportunity_amt) AS pipeline,
SUM(m.booked_amt) AS booked
FROM bim_sgmt_act_mv m,
csf_tds_segments s
WHERE m.segment_id = s.segment_id
AND m.time_id BETWEEN :start_period AND :end_period
GROUP BY s.segment_name, m.time_id
ORDER BY s.segment_name, m.time_id;
Related Objects
The following object groupings are the most significant dependencies and joins:
CSF_TDS_SEGMENTS— the only documented foreign-key target; joined onSEGMENT_IDto resolve segment names and hierarchy context.BIM_SGMT_ACT_MVrefresh group members — the base tables and source queries feeding the materialization, typically transaction and activity fact tables that supply the counts and amounts.- Calendar/time dimension source columns (
TIME_ID,PERIOD_TYPE_ID) — linked to the period dimension supporting time-series slicing. DBA_MVIEWS/DBA_MVIEW_LOGS— administrative views used to monitor staleness, refresh mode, and rewrite eligibility.- Category/master reference tables supplying
CATEGORY_IDvalues, joined to enrich the_Ccompiled columns where the source category name is required.
Because the object is documented as essentially standalone apart from the SEGMENT_ID link, integration effort should focus on the segment dimension and refresh orchestration rather than on a broad web of referential constraints.
-
Table: BIM_SGMT_ACT_MV
12.1.1
owner:APPS, object_type:TABLE, fnd_design_data:FND.BIM_SGMT_ACT_MV, object_name:BIM_SGMT_ACT_MV, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.BIM_SGMT_ACT_MV ,
-
Table: BIM_SGMT_ACT_MV
12.2.2
product: FND - Application Object Library , implementation_dba_data: Not implemented in this database ,
-
MATERIALIZED VIEW: APPS.BIM_SGMT_ACT_MV
12.1.1
owner:APPS, object_type:MATERIALIZED VIEW, object_name:BIM_SGMT_ACT_MV, status:VALID,
-
TABLE: APPS.BIM_SGMT_ACT_MV
12.1.1
owner:APPS, object_type:TABLE, fnd_design_data:FND.BIM_SGMT_ACT_MV, object_name:BIM_SGMT_ACT_MV, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
TABLE: APPS.BIM_SGMT_ACT_B_MV
12.1.1
owner:APPS, object_type:TABLE, fnd_design_data:FND.BIM_SGMT_ACT_B_MV, object_name:BIM_SGMT_ACT_B_MV, status:VALID,
-
MATERIALIZED VIEW: APPS.BIM_SGMT_ACT_B_MV
12.1.1
owner:APPS, object_type:MATERIALIZED VIEW, object_name:BIM_SGMT_ACT_B_MV, status:VALID,
-
TABLE: FII.FII_TIME_DAY
12.1.1
owner:FII, object_type:TABLE, fnd_design_data:FII.FII_TIME_DAY, object_name:FII_TIME_DAY, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
APPS.BIM_SGMT_INTL_UI_PVT SQL Statements
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.BIM_SGMT_INTL_UI_PVT
12.1.1
-
12.1.1 DBA Data
12.1.1
-
eTRM - FII Tables and Views
12.1.1
description: This table stores the mapping of leaf nodes from pruned dimension to nodes in the child value sets ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,
-
eTRM - FII Tables and Views
12.1.1
description: This table stores the mapping of leaf nodes from pruned dimension to nodes in the child value sets ,