Search Results msd_objects_v
Overview
MSD_OBJECTS_V is a read-only database view owned by the APPS schema in Oracle E-Business Suite environments spanning 12.1.1 and 12.2.2. It resides within the MSD product family, commonly identified as Demand Planning under the Advanced Supply Chain Planning and Demand Planning (MSC/MSD) modules of the Value Chain Planning suite. Its documented purpose is to present a consolidated listing of "all MSD Objects" — a unified registry of the principal Demand Planning entities such as levels, hierarchies, dimensions, and demand plans.
The view plays a metadata-oriented role rather than a transactional one. It abstracts multiple separate MSD tables behind a single, uniform three-column interface, allowing reporting tools, custom concurrent programs, and integration layers to enumerate Demand Planning objects without maintaining separate queries against each underlying source object. Because it is a view and not a table, no data is duplicated; every query resolves dynamically against the underlying MSD and FND objects. In 12.2.2 the object is documented as VALID, with the standard legal notice that the view text is Oracle proprietary and confidential.
Underlying Base Objects
The documented definition of MSD_OBJECTS_V is a UNION of four SELECT statements, each contributing a distinct category of MSD object with a numeric OBJECT_TYPE discriminator. The referenced base objects are:
- MSD_LEVELS (synonym) — supplies level records; columns LEVEL_ID and LEVEL_NAME, tagged with OBJECT_TYPE '5'.
- MSD_HIERARCHIES (synonym) — supplies hierarchy records; columns HIERARCHY_ID and HIERARCHY_NAME, tagged with OBJECT_TYPE '4'.
- FND_LOOKUP_VALUES_VL (view) — supplies dimension records from the lookup type MSD_DIMENSIONS; columns LOOKUP_CODE and MEANING, tagged with OBJECT_TYPE '3'.
- MSD_DEMAND_PLANS (synonym) — supplies demand plan records; columns DEMAND_PLAN_ID and DEMAND_PLAN_NAME, tagged with OBJECT_TYPE '2'.
The FND_LOOKUP_VALUES_VL component is notable because it crosses module boundaries: it is the standard Applications Foundation lookup view rather than an MSD-owned object, which means dimension values are governed by lookup maintenance rather than by Demand Planning setup screens. The MSD-named base objects are exposed as synonyms, indicating that the actual physical tables live in the MSD schema and are referenced from APPS through public or private synonyms.
Key Columns
The view exposes exactly three columns, which are consistent across all four UNION branches:
- OBJECT_ID — a character representation of the source identifier. The view text applies TO_CHAR to LEVEL_ID, HIERARCHY_ID, and DEMAND_PLAN_ID, while the lookup branch passes LOOKUP_CODE directly. This implicit conversion ensures a uniform VARCHAR2-style key column; consumers should be aware that IDs are not numeric in this view and that the lookup branch uses alphanumeric codes.
- OBJECT_NAME — the descriptive name of the object: LEVEL_NAME, HIERARCHY_NAME, MEANING, or DEMAND_PLAN_NAME depending on the row's origin. This is the user-facing label suitable for display in lists of values and reports.
- OBJECT_TYPE — a single-character discriminator identifying the object category: '5' for levels, '4' for hierarchies, '3' for dimensions, and '2' for demand plans. Because OBJECT_TYPE is a string literal rather than a foreign key, no lookup validation is enforced by the database; the meaning of each code must be supplied by the consuming application or report.
No other columns, including descriptive attributes, org context, or audit fields, are exposed. The view is therefore a lightweight enumeration aid rather than a full object catalog.
Common Use Cases and Queries
Typical uses include populating selection lists in custom forms or OAF pages, driving concurrent programs that iterate over Demand Planning hierarchies and levels, and supporting metadata extraction or migration utilities that must classify MSD objects by type. Because ORDER BY is absent from the view definition, any deterministic ordering must be applied by the caller.
- List all objects with names and type codes:
SELECT object_id, object_name, object_type FROM apps.msd_objects_v ORDER BY object_type, object_name;
- Retrieve only demand plans (OBJECT_TYPE '2'):
SELECT object_id, object_name FROM apps.msd_objects_v WHERE object_type = '2';
- Count objects by category, useful for validation or gap analysis:
SELECT object_type, COUNT(*) FROM apps.msd_objects_v GROUP BY object_type ORDER BY object_type;
- Locate a specific object by name:
SELECT object_id, object_type FROM apps.msd_objects_v WHERE object_name = :p_name;
When embedding these queries, callers should reference the view as APPS.MSD_OBJECTS_V or ensure the APPS schema is on the session's current schema path. Because the view is read-only and derived entirely from other objects, no DML should be attempted against it.
-
View: MSD_OBJECTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_OBJECTS_V, object_name:MSD_OBJECTS_V, status:VALID, product: MSD - Demand Planning , description: This view to show all MSD Objects , implementation_dba_data: APPS.MSD_OBJECTS_V ,
-
View: MSD_OBJECTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_OBJECTS_V, object_name:MSD_OBJECTS_V, status:VALID, product: MSD - Demand Planning , description: This view to show all MSD Objects , implementation_dba_data: APPS.MSD_OBJECTS_V ,
-
SYNONYM: APPS.MSD_HIERARCHIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MSD_HIERARCHIES, status:VALID,
-
SYNONYM: APPS.MSD_HIERARCHIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MSD_HIERARCHIES, status:VALID,
-
SYNONYM: APPS.MSD_LEVELS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MSD_LEVELS, status:VALID,
-
SYNONYM: APPS.MSD_LEVELS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MSD_LEVELS, status:VALID,
-
VIEW: APPS.MSD_OBJECTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_OBJECTS_V, object_name:MSD_OBJECTS_V, status:VALID,
-
VIEW: APPS.MSD_OBJECTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_OBJECTS_V, object_name:MSD_OBJECTS_V, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.MSD_DEMAND_PLANS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MSD_DEMAND_PLANS, status:VALID,
-
SYNONYM: APPS.MSD_DEMAND_PLANS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MSD_DEMAND_PLANS, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
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.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 - MSD Tables and Views
12.2.2
description: This is the fact table that stores the UOM conversions information. ,
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
eTRM - MSD Tables and Views
12.1.1
description: This is the fact table that stores the UOM conversions information. ,
-
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 ,