Search Results dimension_code
Overview
APPS.MSD_CS_DEFINITIONS_V1 is a denormalized reporting view in Oracle EBS that exposes stream and collection plan definitions maintained by the Enterprise Trade and Transportation Management / Supply Chain Management (MSD) schema. It is defined over the MSD_CS_DEFINITIONS synonym (the stream/definition header), the MSD_CS_DEFN_DIM_DTLS synonym (dimension detail rows), and FND_LOOKUP_VALUES_VL (for descriptive meaning values). The view serves as the canonical read interface for ETRM stream definitions, joining header attributes with one detail row per dimension code.
The user search term dimension_code is significant: the underlying detail table MSD_CS_DEFN_DIM_DTLS is keyed in part by dimension_code, and the view pivots up to eight such codes ('DCS', 'PRD', 'GEO', and others) into distinct column sets. Each dimension appears as a separate outer-joined block providing collect_level_id and collect_flag.
Underlying Base Objects
- FND_LOOKUP_VALUES_VL (VIEW) — the standard EBS lookup view, referenced twice with the aliases
lok1andlok2. It resolvesCS_TYPEagainst lookup typeMSD_CS_STREAM_SOURCE_TYPEandMEASUREMENT_TYPEagainstMSD_CS_MEASUREMENT_TYPE. - MSD_CS_DEFINITIONS (SYNONYM) — the definition header, providing identity, naming, classification and control flags.
- MSD_CS_DEFN_DIM_DTLS (SYNONYM) — the dimension detail table, joined once (as
dcs) withdimension_code = 'DCS'and up to eight times (asdfdim1throughdfdim8) for PRD, GEO and the remaining dimension codes.
All dimension joins are outer joins (denoted (+) in the view text), so a definition appears even when a given dimension has no stored detail row. Lookup joins are likewise outer joins, ensuring definitions persist regardless of lookup completeness.
Key Columns
- CS_DEFINITION_ID — primary key of the definition header; the pivot key for all dimension joins.
- NAME / DESCRIPTION — user-facing identity of the stream or collection definition.
- CS_CLASSIFICATION, CS_TYPE, CS_TYPE_DESC — classification and stream source type, the latter resolved from
MSD_CS_STREAM_SOURCE_TYPE. - MEASUREMENT_TYPE — measurement type code, with corresponding meaning from
MSD_CS_MEASUREMENT_TYPE. - LOWEST_LEVEL_FLAG, STRICT_FLAG, SYSTEM_FLAG, VALID_FLAG — core control flags governing definition behavior.
- AGGREGATION_ALLOWED_FLAG, ALLOCATION_ALLOWED_FLAG, STREAM_EDITABLE_FLAG, MULTIPLE_STREAM_FLAG — operational capability flags.
- PLANNING_SERVER_VIEW_NAME, SOURCE_VIEW_NAME, CS_LOV_VIEW_NAME — the underlying data sources used by the collection engine and LOV rendering.
- COLLECTION_PROGRAM_NAME, COLLECT_ADDTL_WHERE_CLAUSE, PULL_ADDTL_WHERE_CLAUSE — collection program and SQL predicate fragments.
- COLLECT_LEVEL_ID / COLLECT_FLAG (×8) — per-dimension collection settings for dimension codes DCS, PRD, GEO, and others.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE — standard EBS who/audit columns.
Common Use Cases and Queries
Typical uses include validation reports for stream definitions, data-warehouse extraction into planning engines, and configuration audits before running collection programs.
SELECT cs_definition_id, name, cs_type_desc, measurement_type,
dcs_collect_level_id, dcs_collect_flag
FROM apps.msd_cs_definitions_v1
WHERE valid_flag = 'Y';
A dimension-focused query, matching the dimension_code search, inspects the detail synonym directly:
SELECT cs_definition_id, dimension_code, collect_level_id, collect_flag
FROM apps.msd_cs_defn_dim_dtls
WHERE dimension_code IN ('DCS','PRD','GEO');
Integration queries join the definition view to collection runs via CS_DEFINITION_ID for auditing, while lookup-driven queries filter on CS_TYPE_DESC to isolate a given stream source. Because the pivot uses outer joins, IS NULL predicates on dimension columns reliably identify definitions lacking a configured dimension. Note that the view text is truncated after cs_defini in the documented metadata; consulting the deployed schema for the complete join list is advisable before relying on later dimension aliases.
-
VIEW: APPS.MSD_CS_DEFINITIONS_V1
12.1.1
-
VIEW: APPS.MSD_CS_DEFINITIONS_V1
12.2.2
-
VIEW: HR.PAY_US_TAX_REPORT_DIMENSIONS#
12.2.2
-
View: MSD_CS_DEFINITIONS_V1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_CS_DEFINITIONS_V1, object_name:MSD_CS_DEFINITIONS_V1, status:VALID, product: MSD - Demand Planning , description: This view provides Data Stream Definition and it's dimension properties. , implementation_dba_data: APPS.MSD_CS_DEFINITIONS_V1 ,
-
VIEW: MSD.MSD_DP_DIMENSIONS#
12.2.2
-
VIEW: MSD.MSD_CS_DEFN_DIM_DTLS#
12.2.2
-
View: MSD_CS_DEFINITIONS_V1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_CS_DEFINITIONS_V1, object_name:MSD_CS_DEFINITIONS_V1, status:VALID, product: MSD - Demand Planning , description: This view provides Data Stream Definition and it's dimension properties. , implementation_dba_data: APPS.MSD_CS_DEFINITIONS_V1 ,
-
VIEW: PA.PA_ADW_DIMENSION_STATUS#
12.2.2
-
View: RHX_DP_HIER_LEVELS_V
12.2.2
product: MRP - Master Scheduling/MRP , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
VIEW: MSD.MSD_DP_DOC_DIM_SELECTIONS#
12.2.2
-
VIEW: MSD.MSD_DP_SEEDED_DOC_DIMENSIONS#
12.2.2
-
APPS.MSD_SEED SQL Statements
12.2.2
-
TABLE: HR.PAY_US_TAX_REPORT_DIMENSIONS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PAY.PAY_US_TAX_REPORT_DIMENSIONS, object_name:PAY_US_TAX_REPORT_DIMENSIONS, status:VALID,
-
VIEW: MSD.MSD_HIERARCHIES#
12.2.2
-
TABLE: HR.PAY_US_TAX_REPORT_DIMENSIONS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PAY.PAY_US_TAX_REPORT_DIMENSIONS, object_name:PAY_US_TAX_REPORT_DIMENSIONS, status:VALID,
-
View: RHX_DP_HIER_LEVELS_V
12.1.1
product: MRP - Master Scheduling/MRP , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
VIEW: MSD.MSD_LEVELS#
12.2.2
-
APPS.MSD_SEED SQL Statements
12.1.1
-
APPS.MSD_APPLY_TEMPLATE_DEMAND_PLAN SQL Statements
12.2.2
-
APPS.MSD_DP_DIMENSION_PKG SQL Statements
12.1.1
-
APPS.PA_ADW_DIMENSION_STATUS_PKG SQL Statements
12.2.2
-
APPS.MSD_DP_DOC_DIMENSION_PKG SQL Statements
12.1.1
-
APPS.PA_ADW_DIMENSION_STATUS_PKG SQL Statements
12.1.1
-
APPS.MSD_DP_DIMENSION_PKG SQL Statements
12.2.2
-
APPS.MSD_APPLY_TEMPLATE_DEMAND_PLAN SQL Statements
12.1.1
-
APPS.MSD_DP_DOC_DIM_SELECTION_PKG SQL Statements
12.1.1
-
View: RHX_DP_DIMENSIONS_V
12.1.1
product: MRP - Master Scheduling/MRP , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: RHX_DP_DIMENSIONS_V
12.2.2
product: MRP - Master Scheduling/MRP , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
APPS.MSD_DP_DOC_DIM_SELECTION_PKG SQL Statements
12.2.2
-
APPS.MSD_CS_DFN_UTL SQL Statements
12.1.1
-
APPS.MSD_DP_DOC_DIMENSION_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.MSD_SEED
12.1.1
-
VIEW: HR.PAY_US_TAX_REPORT_DIMENSIONS#
12.2.2
owner:HR, object_type:VIEW, object_name:PAY_US_TAX_REPORT_DIMENSIONS#, status:VALID,
-
View: OKR_IP_RGTS_TXN_UDIM_DV
12.2.2
product: OKR - Contracts for Rights (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
TABLE: PA.PA_ADW_DIMENSION_STATUS
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_ADW_DIMENSION_STATUS, object_name:PA_ADW_DIMENSION_STATUS, status:VALID,
-
TABLE: PA.PA_ADW_DIMENSION_STATUS
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_ADW_DIMENSION_STATUS, object_name:PA_ADW_DIMENSION_STATUS, status:VALID,
-
TABLE: MSD.MSD_DP_DIMENSIONS
12.1.1
owner:MSD, object_type:TABLE, fnd_design_data:MSD.MSD_DP_DIMENSIONS, object_name:MSD_DP_DIMENSIONS, status:VALID,
-
APPS.MSD_CS_DFN_UTL SQL Statements
12.2.2
-
VIEW: APPS.PAYBV_US_TAX_REPORT_DIM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAYBV_US_TAX_REPORT_DIM_V, object_name:PAYBV_US_TAX_REPORT_DIM_V, status:VALID,
-
TABLE: MSD.MSD_CS_DEFN_DIM_DTLS
12.2.2
owner:MSD, object_type:TABLE, fnd_design_data:MSD.MSD_CS_DEFN_DIM_DTLS, object_name:MSD_CS_DEFN_DIM_DTLS, status:VALID,
-
View: RHX_DP_LVLVAL_PUB_V
12.1.1
product: MRP - Master Scheduling/MRP , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: RHX_DP_LVLVAL_PUB_V
12.2.2
product: MRP - Master Scheduling/MRP , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.PAYBV_US_TAX_REPORT_DIM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAYBV_US_TAX_REPORT_DIM_V, object_name:PAYBV_US_TAX_REPORT_DIM_V, status:VALID,
-
View: RHX_DP_DATA_ELMNT_PUB_V
12.1.1
product: MRP - Master Scheduling/MRP , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.MSD_SEED
12.2.2
-
TABLE: MSD.MSD_CS_DEFN_DIM_DTLS
12.1.1
owner:MSD, object_type:TABLE, fnd_design_data:MSD.MSD_CS_DEFN_DIM_DTLS, object_name:MSD_CS_DEFN_DIM_DTLS, status:VALID,
-
VIEW: PA.PA_ADW_DIMENSION_STATUS#
12.2.2
owner:PA, object_type:VIEW, object_name:PA_ADW_DIMENSION_STATUS#, status:VALID,
-
PACKAGE BODY: APPS.PA_ADW_DIMENSION_STATUS_PKG
12.1.1
-
TABLE: MSD.MSD_DP_DOC_DIM_SELECTIONS
12.2.2
owner:MSD, object_type:TABLE, object_name:MSD_DP_DOC_DIM_SELECTIONS, status:VALID,
-
APPS.MSD_CS_DEFN_DIM_LOAD_DATA SQL Statements
12.1.1