Search Results edw_dimensions_md_v
Overview
EDW_DIMENSIONS_MD_V is a read-only dictionary view owned by the APPS schema in Oracle E-Business Suite. It belongs to the BIS (Business Intelligence System / Applications BIS) product family, which supplies the extract, staging, and dimensional infrastructure used by Oracle's embedded data warehouse and the Enterprise Data Warehouse (EDW) reporting layer. The suffix _MD_V denotes a metadata view, distinguishing it from the fact and dimension value views published for end-user reporting. Its purpose is to expose the catalog of dimensions available to the warehouse so that ETL programs, report definitions, and BI metadata utilities can enumerate dimension identifiers, their source column names, display prefixes, and target table names without querying the underlying collection structures directly.
In ETRM 12.1.1 and 12.2.2 the object is documented as VALID, and its definition is intentionally thin: it is created WITH READ ONLY and projects columns from a single supplier view, CMPWBDIMENSION_V. This makes EDW_DIMENSIONS_MD_V a stable, presentation-layer contract that insulates downstream consumers from changes in the underlying BIS dictionary implementation.
Underlying Base Objects
The documented view text references exactly one object, CMPWBDIMENSION_V DIM, aliased as DIM, with no join, filter, or aggregation applied. Because CMPWBDIMENSION_V is itself a view over the BIS dimension registry, EDW_DIMENSIONS_MD_V is effectively a pass-through projection: it renames and reorders the supplier view's columns into the DIM_* naming convention expected by the EDW metadata consumers. The clause WITH READ ONLY guarantees that no DML can be issued against the view, which is appropriate for a metadata catalog consumed by reporting and extraction processes.
The documentation records no other referenced base objects. Tracing consumption therefore requires following CMPWBDIMENSION_V into the underlying BIS dictionary tables, which reside in the same APPS schema territory. Because the dependency is a single view-to-view hop, the object generally survives upgrades and patches with minimal disruption, but it should never be treated as a source of transactional data.
Key Columns
The view exposes six columns. The documented column list and the select list are not perfectly aligned in the ETRM excerpt, so the following reflects the published names and their evident meaning:
- DIM_ID — The unique identifier of the dimension within the BIS metadata registry; sourced from
ELEMENTID. - DIM_NAME — The internal dimension name used programmatically by the warehouse; sourced from
NAME. - DIM_PREFIX — The short prefix applied to generated column names for this dimension; sourced from
PREFIX. - DIM_LONG_NAME — The verbose or business-friendly dimension name; sourced from
LONGNAME. - DIM_TABLE_NAME — The warehouse table that physically stores the dimension; sourced from the second
NAMEreference in the select list. - DIM_DESCRIPTION — Free-text description of the dimension's contents and intended use; sourced from
DESCRIPTION.
Common Use Cases and Queries
Typical use cases include validating which dimensions are registered before running an EDW extract, generating dynamic SQL that resolves a dimension prefix to its physical table, and feeding BI metadata repositories with the dimension catalog.
Listing all registered dimensions:
SELECT dim_id, dim_name, dim_long_name, dim_table_name FROM apps.edw_dimensions_md_v ORDER BY dim_name;
Locating a dimension by prefix:
SELECT dim_name, dim_table_name FROM apps.edw_dimensions_md_v WHERE dim_prefix = 'GL';
Searching descriptions for a business term:
SELECT dim_id, dim_name, dim_description FROM apps.edw_dimensions_md_v WHERE UPPER(dim_description) LIKE '%CUSTOMER%';
Because the view is read-only, it is safe to expose to read-only reporting responsibilities, though access should be granted through a custom synonym rather than directly to APPS.
-
View: EDW_DIMENSIONS_MD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.EDW_DIMENSIONS_MD_V, object_name:EDW_DIMENSIONS_MD_V, status:VALID, product: BIS - Applications BIS , description: EDW_DIMENSIONS_MD_V , implementation_dba_data: APPS.EDW_DIMENSIONS_MD_V ,
-
View: EDW_DIMENSIONS_MD_V
12.2.2
product: BIS - Applications BIS , description: EDW_DIMENSIONS_MD_V , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.EDW_DIM_VIEW
12.1.1
-
APPS.EDW_ANALYZE_OBJECT SQL Statements
12.1.1
-
APPS.EDW_CLEAN_OBJECT SQL Statements
12.1.1
-
VIEW: APPS.EDW_SEC_DIM_INFO_V
12.1.1
-
APPS.BIS_PMF_MIGRATE_DIMENSIONS_PVT SQL Statements
12.1.1
-
VIEW: APPS.EDW_DIMENSIONS_MD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.EDW_DIMENSIONS_MD_V, object_name:EDW_DIMENSIONS_MD_V, status:VALID,
-
APPS.EDW_WH_DANG_RECOVERY SQL Statements
12.1.1
-
APPS.EDW_DUPLICATE_CLEAN SQL Statements
12.1.1
-
PACKAGE BODY: APPS.EDW_BSC_BRIDGE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:EDW_BSC_BRIDGE, status:VALID,
-
View: EDW_SEC_DIM_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.EDW_SEC_DIM_INFO_V, object_name:EDW_SEC_DIM_INFO_V, status:VALID, product: BIS - Applications BIS , description: EDW_SEC_DIM_INFO_V , implementation_dba_data: APPS.EDW_SEC_DIM_INFO_V ,
-
View: EDW_SEC_DIM_INFO_V
12.2.2
product: BIS - Applications BIS , description: EDW_SEC_DIM_INFO_V , implementation_dba_data: Not implemented in this database ,
-
APPS.EDW_NAEDW_PUSH SQL Statements
12.1.1
-
PACKAGE BODY: APPS.EDW_DEL_STG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:EDW_DEL_STG, status:VALID,
-
APPS.EDW_TRUNC_STG SQL Statements
12.1.1
-
View: EDW_DIM_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.EDW_DIM_VIEW, object_name:EDW_DIM_VIEW, status:VALID, product: BIS - Applications BIS , description: EDW_DIM_VIEW , implementation_dba_data: APPS.EDW_DIM_VIEW ,
-
View: EDW_DIM_VIEW
12.2.2
product: BIS - Applications BIS , description: EDW_DIM_VIEW , implementation_dba_data: Not implemented in this database ,
-
PACKAGE: APPS.EDW_BSC_BRIDGE
12.1.1
owner:APPS, object_type:PACKAGE, object_name:EDW_BSC_BRIDGE, status:VALID,
-
SYNONYM: APPS.EDW_DIMENSIONS_MD
12.1.1
owner:APPS, object_type:SYNONYM, object_name:EDW_DIMENSIONS_MD, status:VALID,
-
VIEW: APPS.EDW_SEC_DIM_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.EDW_SEC_DIM_INFO_V, object_name:EDW_SEC_DIM_INFO_V, status:VALID,
-
PACKAGE BODY: APPS.EDW_TRUNC_STG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:EDW_TRUNC_STG, status:VALID,
-
PACKAGE BODY: APPS.EDW_NAEDW_PUSH
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:EDW_NAEDW_PUSH, status:VALID,
-
PACKAGE BODY: APPS.EDW_VBH_SETUP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:EDW_VBH_SETUP, status:VALID,
-
PACKAGE BODY: APPS.EDW_SUMMARY_COLLECT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:EDW_SUMMARY_COLLECT, status:VALID,
-
PACKAGE BODY: APPS.EDW_OWB_COLLECTION_UTIL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:EDW_OWB_COLLECTION_UTIL, status:VALID,
-
VIEW: APPS.EDW_DIM_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.EDW_DIM_VIEW, object_name:EDW_DIM_VIEW, status:VALID,
-
APPS.EDW_DEL_STG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.EDW_GL_ACCT_M_T
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:EDW_GL_ACCT_M_T, status:VALID,
-
APPS.EDW_GEN_VIEW SQL Statements
12.1.1
-
APPS.EDW_FLEX_PUSH_C SQL Statements
12.1.1
-
PACKAGE BODY: APPS.EDW_ANALYZE_OBJECT
12.1.1
-
PACKAGE BODY: APPS.BIS_PMF_MIGRATE_DIMENSIONS_PVT
12.1.1
-
APPS.EDW_OWB_COLLECTION_UTIL SQL Statements
12.1.1
-
APPS.EDW_DERIVED_FACT_COLLECT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.EDW_TRUNC_STG
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
APPS.BIS_DIMLEVEL_ERRS_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.EDW_DEL_STG
12.1.1
-
APPS.EDW_BSC_BRIDGE SQL Statements
12.1.1
-
APPS.EDW_SRC_DANG_RECOVERY SQL Statements
12.1.1
-
PACKAGE BODY: APPS.EDW_CLEAN_OBJECT
12.1.1
-
APPS.BSC_UTILITY SQL Statements
12.1.1
-
PACKAGE BODY: APPS.EDW_DUPLICATE_CLEAN
12.1.1
-
APPS.EDW_COLLECTION_UTIL SQL Statements
12.1.1
-
PACKAGE BODY: APPS.EDW_FLEX_PUSH_C
12.1.1
-
PACKAGE BODY: APPS.EDW_NAEDW_PUSH
12.1.1
-
APPS.EDW_CHECK_DATA_INTEGRITY SQL Statements
12.1.1
-
APPS.BIS_PMF_GET_DIMLEVELS_PVT SQL Statements
12.1.1