Search Results msd_cs_stream_source_type
Overview
APPS.MSD_CS_DEFINITIONS_VL is a bilingual (VL) view in the Oracle E-Business Suite ETRM (Enterprise Territory and Resource Management / Advanced Planning) schema. It presents the master definition of "CS" (Constraint Stream or Collection Stream) definitions, combining a base definition table with its translation table and joining two Oracle Application Object Library lookup views to resolve coded values into user-facing meanings. The view exposes descriptive, behavioral, and technical attributes for each CS definition, including classification, stream source type, measurement type, planning server view names, and collection program configuration.
In Oracle EBS 12.1.1 and 12.2.2, this view serves as the reporting and integration interface for constraint/collection stream metadata. Rather than querying the underlying base table directly, developers and report authors use MSD_CS_DEFINITIONS_VL to obtain translated descriptions and decoded lookup meanings in a single query, which is essential for multilingual deployments.
Underlying Base Objects
The documented underlying objects referenced by this view are:
- MSD_CS_DEFINITIONS (SYNONYM) — the base table holding the primary CS definition records and technical attributes.
- MSD_CS_DEFINITIONS_TL (SYNONYM) — the translation table supplying language-specific descriptions, joined on CS_DEFINITION_ID and restricted to USERENV('LANG').
- FND_LOOKUP_VALUES_VL (VIEW) — referenced twice (aliases LOK1 and LOK2) via outer joins to decode lookup codes into meanings.
The join between MSD_CS_DEFINITIONS and MSD_CS_DEFINITIONS_TL is an inner join keyed on CS_DEFINITION_ID. Two outer joins to FND_LOOKUP_VALUES_VL resolve CS_TYPE against lookup type 'MSD_CS_STREAM_SOURCE_TYPE' (LOK1) and MEASUREMENT_TYPE against lookup type 'MSD_CS_MEASUREMENT_TYPE' (LOK2).
Key Columns
- CS_DEFINITION_ID — primary identifier, inherited from the base table.
- NAME / DESCRIPTION — the definition name and its language-specific description from the TL table.
- CS_CLASSIFICATION, CS_TYPE — classification and stream source type; CS_TYPE's meaning is exposed via LOK1.MEANING.
- MEASUREMENT_TYPE — the measurement classification of the definition, with its decoded meaning returned as LOK2.MEANING (joined from lookup type 'MSD_CS_MEASUREMENT_TYPE').
- STRICT_FLAG, SYSTEM_FLAG, AGGREGATION_ALLOWED_FLAG, ALLOCATION_ALLOWED_FLAG, STREAM_EDITABLE_FLAG, ENABLE_FLAG — behavioral control flags.
- CS_LOV_VIEW_NAME, PLANNING_SERVER_VIEW_NAME, PLANNING_SERVER_VIEW_NAME_DS, SOURCE_VIEW_NAME — the underlying view names that back list-of-values and planning server data retrieval.
- COLLECTION_PROGRAM_NAME, COLLECT_ADDTL_WHERE_CLAUSE, PULL_ADDTL_WHERE_CLAUSE — configuration for the collection process that populates the stream.
- STRIPE_FLAG, MULTIPLE_STREAM_FLAG, VALID_FLAG, LOWEST_LEVEL_FLAG, DEPENDENT_DATA_FLAG, LIABILITY_USER_FLAG — additional behavioral and dependency indicators.
- COMPOSITE_GROUP_CODE, DEPENDENT_DEMAND_CODE, PLAN_TYPE — grouping, dependency, and planning context attributes.
- Audit columns (CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, REQUEST_ID, PROGRAM_ID, etc.) — standard WHO/audit trail.
Common Use Cases and Queries
This view is typically used to enumerate available CS/constraint definitions, filter by measurement type, and present decoded meanings for user reports or integration extracts. Because the user searched for "msd_cs_measurement_type," the measurement type column and its lookup decoding are of particular interest.
- Listing all enabled definitions with their measurement type meaning.
- Filtering definitions by classification or stream source type.
- Identifying the collection program and source views associated with a definition.
Sample query:
SELECT cs_definition_id,
name,
description,
measurement_type,
lok2_meaning AS measurement_type_meaning,
cs_type,
lok1_meaning AS stream_source_type,
enable_flag,
collection_program_name
FROM apps.msd_cs_definitions_vl
WHERE enable_flag = 'Y'
AND measurement_type = '&p_measurement_type'
ORDER BY name;
To retrieve only the distinct measurement types available:
SELECT DISTINCT measurement_type, lok2_meaning FROM apps.msd_cs_definitions_vl ORDER BY measurement_type;
These queries return translated descriptions and decoded lookup meanings, making the view suitable for both presentation-layer reporting and downstream integration processes requiring human-readable CS definition metadata.
-
Lookup Type: MSD_CS_STREAM_SOURCE_TYPE
12.1.1
product: MSD - Demand Planning , meaning: MSD_CS_STREAM_SOURCE_TYPE , description: Data Stream Source Type ,
-
Lookup Type: MSD_CS_STREAM_SOURCE_TYPE
12.2.2
product: MSD - Demand Planning , meaning: MSD_CS_STREAM_SOURCE_TYPE , description: Data Stream Source Type ,
-
VIEW: APPS.MSD_CS_DEFINITIONS_VL
12.2.2
-
VIEW: APPS.MSD_CS_DEFINITIONS_VL
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.MSD_CS_DEFINITIONS_V1
12.2.2
-
View: MSD_CS_DEFINITIONS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_CS_DEFINITIONS_VL, object_name:MSD_CS_DEFINITIONS_VL, status:VALID, product: MSD - Demand Planning , description: This view provides Data Stream Definition. It is used in "Define Data Stream UI". , implementation_dba_data: APPS.MSD_CS_DEFINITIONS_VL ,
-
VIEW: APPS.MSD_CS_DEFINITIONS_V1
12.1.1
-
View: MSD_CS_DEFINITIONS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_CS_DEFINITIONS_VL, object_name:MSD_CS_DEFINITIONS_VL, status:VALID, product: MSD - Demand Planning , description: This view provides Data Stream Definition. It is used in "Define Data Stream UI". , implementation_dba_data: APPS.MSD_CS_DEFINITIONS_VL ,
-
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: 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: APPS.MSD_CS_DEFINITIONS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_CS_DEFINITIONS_VL, object_name:MSD_CS_DEFINITIONS_VL, status:VALID,
-
VIEW: APPS.MSD_CS_DEFINITIONS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_CS_DEFINITIONS_VL, object_name:MSD_CS_DEFINITIONS_VL, status:VALID,
-
TABLE: MSD.MSD_CS_DEFINITIONS
12.2.2
owner:MSD, object_type:TABLE, fnd_design_data:MSD.MSD_CS_DEFINITIONS, object_name:MSD_CS_DEFINITIONS, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
TABLE: MSD.MSD_CS_DEFINITIONS
12.1.1
owner:MSD, object_type:TABLE, fnd_design_data:MSD.MSD_CS_DEFINITIONS, object_name:MSD_CS_DEFINITIONS, status:VALID,
-
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. ,