Search Results msd_cs_allocation_type
Overview
APPS.MSD_CS_DEFN_COLUMN_DTLS_V is a reporting and integration view within the Oracle EBS Advanced Planning / Demand Planning schema (MSD), which supports the Collaborative Planning and constraint-based supply chain planning functionality. The view exposes column-level definition details for planning definitions configured in MSD_CS_DEFINITIONS, along with decoded lookup meanings and identifier metadata. It serves as a denormalized, read-friendly façade over the underlying MSD_CS_DEFN_COLUMN_DTLS synonym, joining definition headers, column identifier descriptions, and two FND lookup overlays to present human-readable aggregation and allocation semantics. It is commonly consumed by concurrent programs, BI Publisher reports, Discoverer workbooks, and custom extensions that need to enumerate the columns belonging to a given planning definition, together with their source/planning view column names and behavior attributes.
Underlying Base Objects
The view is defined in the APPS schema and references the following documented base objects:
- MSD_CS_DEFN_COLUMN_DTLS (synonym) — the driving table holding per-column detail rows, including column identifier, source/planning column names, aggregation type, and allocation type.
- MSD_CS_DEFINITIONS (synonym) — the definition header providing the user-visible name (DEFN.NAME) for the parent definition.
- MSD_CS_CLMN_IDENTIFIERS_VL (view) — the column identifier repository supplying description, identifier type, and user prompt via an inner join on COLUMN_IDENTIFIER.
- FND_LOOKUP_VALUES_VL (view) — joined twice with outer joins (LOOK1, LOOK2) to decode AGGREGATION_TYPE against lookup type MSD_CS_AGGREGATION_TYPE and ALLOCATION_TYPE against lookup type MSD_CS_ALLOCATION_TYPE.
The view text confirms two outer-joined lookups and two inner joins, so a definition column row is returned only when its identifier and parent definition exist, while aggregation/allocation meanings degrade to NULL when no lookup code is present.
Key Columns
- CS_COLUMN_DTLS_ID / CS_DEFINITION_ID — primary key of the detail row and foreign key to the parent definition.
- NAME — the definition name from MSD_CS_DEFINITIONS.
- SOURCE_VIEW_COLUMN_NAME / PLANNING_VIEW_COLUMN_NAME — physical column names on the source and planning views.
- COLUMN_IDENTIFIER / COLUMN_IDENTIFIER_DESC / IDENTIFIER_TYPE / USER_PROMPT — identifier metadata used in UI prompts and mappings.
- TABLE_COLUMN — the underlying table column mapped by the definition.
- AGGREGATION_TYPE / ALLOCATION_TYPE — lookup codes; the corresponding MEANING columns (LOOK1.MEANING, LOOK2.MEANING) provide the decoded, user-facing values.
- UOM_CONVERSION_FLAG — indicates whether unit-of-measure conversion applies to the column.
- Standard audit columns — CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE.
Note that the two MEANING columns share the same alias in the raw text; consumers referencing them should use positional aliasing or wrap the view to disambiguate.
Common Use Cases and Queries
Typical uses include auditing column definitions for a planning definition, verifying allocation/aggregation configuration, and driving downstream mapping logic. A representative query filtering on the allocation lookup, matching the user's search term, is:
- Enumerate all columns and decoded semantics for a definition: SELECT name, source_view_column_name, planning_view_column_name, aggregation_type, allocation_type FROM apps.msd_cs_defn_column_dtls_v WHERE cs_definition_id = :p_def_id;
- Find columns using a specific allocation meaning: SELECT name, column_identifier, allocation_type FROM apps.msd_cs_defn_column_dtls_v WHERE allocation_type IN (SELECT lookup_code FROM fnd_lookup_values_vl WHERE lookup_type = 'MSD_CS_ALLOCATION_TYPE' AND meaning = :p_meaning);
- Reconcile identifier prompts against mappings: SELECT column_identifier, user_prompt, identifier_type, uom_conversion_flag FROM apps.msd_cs_defn_column_dtls_v ORDER BY name, column_identifier;
Because lookups are outer-joined, reports should coalesce lookup meanings to avoid NULL display when aggregation or allocation type is unset.
-
Lookup Type: MSD_CS_ALLOCATION_TYPE
12.1.1
product: MSD - Demand Planning , meaning: MSD_CS_ALLOCATION_TYPE , description: Allocation Function ,
-
Lookup Type: MSD_CS_ALLOCATION_TYPE
12.2.2
product: MSD - Demand Planning , meaning: MSD_CS_ALLOCATION_TYPE , description: Allocation Function ,
-
VIEW: APPS.MSD_CS_DEFN_COLUMN_DTLS_V
12.1.1
-
VIEW: APPS.MSD_CS_DEFN_DIM_DTLS_V
12.1.1
-
VIEW: APPS.MSD_CS_DEFN_DIM_DTLS_V
12.2.2
-
VIEW: APPS.MSD_CS_CLMN_DIM_DTLS_V
12.1.1
-
VIEW: APPS.MSD_CS_CLMN_DIM_DTLS_V
12.2.2
-
VIEW: APPS.MSD_CS_DEFN_COLUMN_DTLS_V
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
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 ,
-
View: 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, product: MSD - Demand Planning , description: This view provides Data Stream's Column Details. , implementation_dba_data: APPS.MSD_CS_DEFN_COLUMN_DTLS_V ,
-
View: 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, product: MSD - Demand Planning , description: This view provides Data Stream's Column Details. , implementation_dba_data: APPS.MSD_CS_DEFN_COLUMN_DTLS_V ,
-
View: 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, product: MSD - Demand Planning , description: This view provides Data Stream's Dimension Details. , implementation_dba_data: APPS.MSD_CS_DEFN_DIM_DTLS_V ,
-
12.1.1 FND Design Data
12.1.1
-
View: 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, product: MSD - Demand Planning , description: This view provides Data Stream's Dimension Details. , implementation_dba_data: APPS.MSD_CS_DEFN_DIM_DTLS_V ,
-
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 ,
-
TABLE: MSD.MSD_CS_CLMN_DIM_DTLS
12.1.1
owner:MSD, object_type:TABLE, fnd_design_data:MSD.MSD_CS_CLMN_DIM_DTLS, object_name:MSD_CS_CLMN_DIM_DTLS, status:VALID,
-
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,
-
TABLE: MSD.MSD_CS_DEFN_COLUMN_DTLS
12.2.2
owner:MSD, object_type:TABLE, fnd_design_data:MSD.MSD_CS_DEFN_COLUMN_DTLS, object_name:MSD_CS_DEFN_COLUMN_DTLS, 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,
-
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,
-
TABLE: MSD.MSD_CS_DEFN_COLUMN_DTLS
12.1.1
owner:MSD, object_type:TABLE, fnd_design_data:MSD.MSD_CS_DEFN_COLUMN_DTLS, object_name:MSD_CS_DEFN_COLUMN_DTLS, status:VALID,
-
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,
-
TABLE: MSD.MSD_CS_CLMN_DIM_DTLS
12.2.2
owner:MSD, object_type:TABLE, fnd_design_data:MSD.MSD_CS_CLMN_DIM_DTLS, object_name:MSD_CS_CLMN_DIM_DTLS, 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. ,