Search Results msd_cs_clmn_dim_dtls_v
Overview
MSD_CS_CLMN_DIM_DTLS_V is a read-only database view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the MSD (Demand Planning) product family. The view exposes Data Stream dimension-column specific details, functioning as the intersection layer that maps columns defined within a Data Stream definition to the dimensions those columns participate in. In the ETRM 12.1.1 and 12.2.2 documentation sets, the object carries a VALID status and is classified as a VIEW, meaning it is not directly maintained by users but derived at runtime from its underlying definition and synonym structure.
Its practical role in Oracle EBS reporting and integration is to present descriptive, human-readable attributes for each dimension-column pairing. Rather than forcing report authors to resolve lookup codes manually, the view joins the raw AGGREGATION_TYPE and ALLOCATION_TYPE codes against FND_LOOKUP_VALUES_VL to surface the corresponding AGGREGATION_TYPE_DESC and ALLOCATION_TYPE_DESC meanings. This makes the view a frequent target for ad hoc queries, Discoverer workbooks, and BI Publisher data templates that examine how a given Data Stream aggregates or allocates dimensional data.
Underlying Base Objects
The view is defined over a join of five documented objects. The primary driving table is the synonym MSD_CS_CLMN_DIM_DTLS, aliased CLDIM, which stores the actual column-to-dimension detail rows. Three views supply contextual attributes: MSD_CS_DEFN_COLUMN_DTLS_V (DFCLM) supplies definition-level column identifiers and table column references; MSD_CS_DEFN_DIM_DTLS_V (DFDIM) supplies dimension codes and descriptions; and FND_LOOKUP_VALUES_VL is joined twice (aliases AGG and ALLO) to translate the aggregation and allocation codes using the lookup types MSD_CS_AGGREGATION_TYPE and MSD_CS_ALLOCATION_TYPE respectively. Both lookup joins are outer joins, so rows with an unresolved or null code are still returned with a null description. The MSD_CS_DFN_UTL package is also referenced in the dependency chain, providing utility logic for the Data Stream definition metadata used to populate the base objects.
Key Columns
- CS_CLMN_DIM_DTLS_ID — Unique identifier for the column-dimension detail row.
- CS_DEFN_DIM_DTLS_ID and CS_COLUMN_DTLS_ID — Foreign keys that link the row back to its dimension detail and column detail definitions.
- CS_DEFINITION_ID — Identifies the parent Data Stream definition.
- IDENTIFIER_TYPE, COLUMN_IDENTIFIER, COLUMN_IDENTIFIER_DESC, TABLE_COLUMN — Describe the physical or logical column being mapped.
- AGGREGATION_TYPE / AGGREGATION_TYPE_DESC — The aggregation rule code and its decoded meaning.
- ALLOCATION_TYPE / ALLOCATION_TYPE_DESC — The allocation rule code and its decoded meaning; the ALLOCATION_TYPE_DESC column is the field most commonly targeted by users searching for allocation classifications.
- DIMENSION_CODE and DIMENSION_DESC — Identify the dimension the column is associated with.
- Standard WHO columns — CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, plus REQUEST_ID, PROGRAM_ID, PROGRAM_APPLICATION_ID, and PROGRAM_UPDATE_DATE for concurrent program traceability.
Common Use Cases and Queries
The most frequent use case is resolving allocation and aggregation behavior for a Data Stream. A query filtered on ALLOCATION_TYPE_DESC allows planners and analysts to list every column-dimension mapping that uses a particular allocation rule:
SELECT DIMENSION_CODE, COLUMN_IDENTIFIER,
AGGREGATION_TYPE_DESC, ALLOCATION_TYPE_DESC
FROM APPS.MSD_CS_CLMN_DIM_DTLS_V
WHERE ALLOCATION_TYPE_DESC = :p_allocation_type
AND CS_DEFINITION_ID = :p_definition_id;
Administrators troubleshooting Data Stream setup use the view to audit unmapped or null lookups by checking rows where ALLOCATION_TYPE_DESC IS NULL despite a populated ALLOCATION_TYPE. Integration developers extract the full dimension-column inventory for a definition to feed external planning engines, selecting DIMENSION_CODE, TABLE_COLUMN, and the descriptive attributes together. Because all descriptive columns are pre-joined, the view eliminates the need for custom lookup logic in downstream reports.
-
View: MSD_CS_CLMN_DIM_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_CS_CLMN_DIM_DTLS_V, object_name:MSD_CS_CLMN_DIM_DTLS_V, status:VALID, product: MSD - Demand Planning , description: This view is provides Data Stream's Dimension-Column specific details. , implementation_dba_data: APPS.MSD_CS_CLMN_DIM_DTLS_V ,
-
View: MSD_CS_CLMN_DIM_DTLS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_CS_CLMN_DIM_DTLS_V, object_name:MSD_CS_CLMN_DIM_DTLS_V, status:VALID, product: MSD - Demand Planning , description: This view is provides Data Stream's Dimension-Column specific details. , implementation_dba_data: APPS.MSD_CS_CLMN_DIM_DTLS_V ,
-
PACKAGE BODY: APPS.MSD_CS_CLMN_DIM_LOAD_DATA
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:MSD_CS_CLMN_DIM_LOAD_DATA, status:VALID,
-
PACKAGE: APPS.MSD_CS_DFN_UTL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:MSD_CS_DFN_UTL, status:VALID,
-
PACKAGE: APPS.MSD_CS_DFN_UTL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:MSD_CS_DFN_UTL, status:VALID,
-
PACKAGE BODY: APPS.MSD_CS_CLMN_DIM_LOAD_DATA
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:MSD_CS_CLMN_DIM_LOAD_DATA, status:VALID,
-
SYNONYM: APPS.MSD_CS_CLMN_DIM_DTLS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MSD_CS_CLMN_DIM_DTLS, status:VALID,
-
SYNONYM: APPS.MSD_CS_CLMN_DIM_DTLS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MSD_CS_CLMN_DIM_DTLS, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.MSD_CS_DEFN_COLUMN_DTLS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_CS_DEFN_COLUMN_DTLS_V, object_name:MSD_CS_DEFN_COLUMN_DTLS_V, status:VALID,
-
VIEW: APPS.MSD_CS_DEFN_DIM_DTLS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_CS_DEFN_DIM_DTLS_V, object_name:MSD_CS_DEFN_DIM_DTLS_V, status:VALID,
-
VIEW: APPS.MSD_CS_CLMN_DIM_DTLS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_CS_CLMN_DIM_DTLS_V, object_name:MSD_CS_CLMN_DIM_DTLS_V, status:VALID,
-
VIEW: APPS.MSD_CS_DEFN_DIM_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_CS_DEFN_DIM_DTLS_V, object_name:MSD_CS_DEFN_DIM_DTLS_V, status:VALID,
-
APPS.MSD_CS_CLMN_DIM_LOAD_DATA SQL Statements
12.1.1
-
APPS.MSD_CS_CLMN_DIM_LOAD_DATA SQL Statements
12.2.2
-
VIEW: APPS.MSD_CS_CLMN_DIM_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_CS_CLMN_DIM_DTLS_V, object_name:MSD_CS_CLMN_DIM_DTLS_V, status:VALID,
-
VIEW: APPS.MSD_CS_DEFN_COLUMN_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_CS_DEFN_COLUMN_DTLS_V, object_name:MSD_CS_DEFN_COLUMN_DTLS_V, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.MSD_CS_CLMN_DIM_LOAD_DATA
12.1.1
-
PACKAGE BODY: APPS.MSD_CS_CLMN_DIM_LOAD_DATA
12.2.2
-
APPS.MSD_CS_CLMN_DIM_LOAD_DATA dependencies on MSD_CS_CLMN_DIM_DTLS_V
12.1.1
-
APPS.MSD_CS_CLMN_DIM_LOAD_DATA dependencies on MSD_CS_CLMN_DIM_DTLS_V
12.2.2
-
VIEW: APPS.FND_LOOKUP_VALUES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_LOOKUP_VALUES_VL, object_name:FND_LOOKUP_VALUES_VL, status:VALID,
-
VIEW: APPS.FND_LOOKUP_VALUES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_LOOKUP_VALUES_VL, object_name:FND_LOOKUP_VALUES_VL, status:VALID,
-
eTRM - MSD Tables and Views
12.1.1
description: This is the fact table that stores the UOM conversions information. ,
-
eTRM - MSD Tables and Views
12.2.2
description: This is the fact table that stores the UOM conversions information. ,
-
APPS.MSD_CS_CLMN_DIM_LOAD_DATA dependencies on MSD_CS_CLMN_DIM_DTLS
12.2.2
-
APPS.MSD_CS_CLMN_DIM_LOAD_DATA dependencies on MSD_CS_CLMN_DIM_DTLS
12.1.1
-
APPS.MSD_CS_CLMN_DIM_LOAD_DATA dependencies on MSD_CS_DEFINITIONS
12.1.1
-
APPS.MSD_CS_CLMN_DIM_LOAD_DATA dependencies on MSD_CS_DEFINITIONS
12.2.2
-
eTRM - MSD Tables and Views
12.2.2
description: This is the fact table that stores the UOM conversions information. ,
-
eTRM - MSD Tables and Views
12.1.1
description: This is the fact table that stores the UOM conversions information. ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,