Search Results msc_orgs_tree_v
Overview
MSC_ORGS_TREE_V is an APPS-owned database view in Oracle E-Business Suite Release 12.1.1 and 12.2.2, delivered as part of the MSC – Advanced Supply Chain Planning product. The view exposes a consolidated, flattened representation of the organizations that participate in a given supply chain plan, together with the netting attributes that govern how the planning engine treats supply and demand for each organization. Its primary design intent is to present planning organizations and trading-partner organizations through a single, uniformly shaped result set so that downstream planning logic, concurrent programs, and reports can iterate over "plan organizations" without branching on the underlying source table.
The view is documented as VALID in the ETRM metadata, and the documented view text confirms that it is a UNION ALL of a planning-organizations branch and a trading-partner branch. The searched term "net_reservations" maps directly to the NET_RESERVATIONS column exposed by the view, one of four netting flags (net WIP, net reservations, net purchasing, and plan safety stock) that control which categories of supply and demand are included when the plan is generated.
Underlying Base Objects
The view is defined over two referenced base objects, both exposed to APPS as synonyms:
- MSC_PLAN_ORGANIZATIONS (SYNONYM) — the primary source for planning organizations. The view selects rows where PLAN_ID <> -1 and PLAN_LEVEL = 2. These are level-2 (organization-level) rows within a named plan, so each row represents one organization in one plan context.
- MSC_TRADING_PARTNERS (SYNONYM) — the source for supplier/source organizations. The view selects rows where PARTNER_TYPE = 3, which corresponds to supplier trading partners, and hard-codes several planning attributes (for example, plan level and netting flags set to the literal value 2, and SIMULATION_SET/BILL_OF_RESOURCES set to NULL) while mapping SR_TP_ID to ORGANIZATION_ID and MASTER_ORGANIZATION to the master organization column.
Both branches are combined with UNION ALL, and the trading-partner branch is stamped with PLAN_ID = -1 to distinguish it from genuine plan rows. Consequently, every organization returned by the view is either a level-2 plan organization or a supplier trading partner synthesized into the same column layout.
Key Columns
- PLAN_ID — identifies the plan; -1 denotes a synthesized trading-partner row rather than a real plan.
- ORGANIZATION_ID — the organization identifier; for trading partners this carries SR_TP_ID.
- MASTER_ORGANIZATION — present in the view's column list and populated from MSC_TRADING_PARTNERS on the partner branch.
- SR_INSTANCE_ID — the source instance identifier, supporting multi-instance and source-system planning.
- ORGANIZATION_CODE and ORGANIZATION_NAME / ORGANIZATION_DESCRIPTION — descriptive identifiers for reporting.
- NET_WIP, NET_RESERVATIONS, NET_PURCHASING, PLAN_SAFETY_STOCK — netting flags. NET_RESERVATIONS determines whether on-hand reservations are netted against supply; the other flags perform the analogous role for work-in-process, purchasing (on-order) supply, and safety stock.
- SIMULATION_SET, BILL_OF_RESOURCES, PLAN_LEVEL — planning-context attributes; PLAN_LEVEL = 2 identifies organization-level records.
- Standard WHO columns — LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY, LAST_UPDATE_LOGIN.
Common Use Cases and Queries
The view is typically used to enumerate the organizations belonging to a plan together with their netting configuration, for example when auditing why reservations are or are not being netted.
List netting flags for all organizations in a plan:
SELECT plan_id, organization_id, organization_code, net_wip, net_reservations, net_purchasing, plan_safety_stock FROM apps.msc_orgs_tree_v WHERE plan_id = :p_plan_id ORDER BY organization_code;
Isolate organizations where reservations are netted:
SELECT organization_id, organization_code FROM apps.msc_orgs_tree_v WHERE plan_id <> -1 AND net_reservations = 2;
Include supplier trading partners in the organization list:
SELECT plan_id, organization_id, organization_code FROM apps.msc_orgs_tree_v WHERE plan_id = -1;
Because the trading-partner branch supplies literal netting values, queries that rely on NET_RESERVATIONS semantics should generally filter to PLAN_ID <> -1 to avoid conflating synthesized supplier rows with genuine plan organizations.
-
View: MSC_ORGS_TREE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_ORGS_TREE_V, object_name:MSC_ORGS_TREE_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_ORGS_TREE_V ,
-
View: MSC_ORGS_TREE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_ORGS_TREE_V, object_name:MSC_ORGS_TREE_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_ORGS_TREE_V ,
-
SYNONYM: APPS.MSC_PLAN_ORGANIZATIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MSC_PLAN_ORGANIZATIONS, status:VALID,
-
VIEW: APPS.MSC_SEARCH_PROJECTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_SEARCH_PROJECTS_V, object_name:MSC_SEARCH_PROJECTS_V, status:VALID,
-
VIEW: APPS.MSC_ORGS_TREE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_ORGS_TREE_V, object_name:MSC_ORGS_TREE_V, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
SYNONYM: APPS.MSC_PLAN_ORGANIZATIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MSC_PLAN_ORGANIZATIONS, status:VALID,
-
VIEW: APPS.MSC_ORGS_TREE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_ORGS_TREE_V, object_name:MSC_ORGS_TREE_V, status:VALID,
-
VIEW: APPS.MSC_SEARCH_PROJECTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_SEARCH_PROJECTS_V, object_name:MSC_SEARCH_PROJECTS_V, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.MSC_SEARCH_ORGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_SEARCH_ORGS_V, object_name:MSC_SEARCH_ORGS_V, status:VALID,
-
VIEW: APPS.MSC_SEARCH_ORGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_SEARCH_ORGS_V, object_name:MSC_SEARCH_ORGS_V, status:VALID,
-
VIEW: APPS.MSC_SEARCH_RESOURCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_SEARCH_RESOURCES_V, object_name:MSC_SEARCH_RESOURCES_V, status:VALID,
-
VIEW: APPS.MSC_SEARCH_RESOURCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_SEARCH_RESOURCES_V, object_name:MSC_SEARCH_RESOURCES_V, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.MSC_SEARCH_RESOURCES_V
12.1.1
-
VIEW: APPS.MSC_SEARCH_PROJECTS_V
12.1.1
-
VIEW: APPS.MSC_SEARCH_PROJECTS_V
12.2.2
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.MSC_SEARCH_RESOURCES_V
12.2.2
-
View: MSC_SEARCH_PROJECTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_SEARCH_PROJECTS_V, object_name:MSC_SEARCH_PROJECTS_V, status:VALID, product: MSC - Advanced Supply Chain Planning , description: this view shows all the search criteria for projects , implementation_dba_data: APPS.MSC_SEARCH_PROJECTS_V ,
-
View: MSC_SEARCH_PROJECTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_SEARCH_PROJECTS_V, object_name:MSC_SEARCH_PROJECTS_V, status:VALID, product: MSC - Advanced Supply Chain Planning , description: this view shows all the search criteria for projects , implementation_dba_data: APPS.MSC_SEARCH_PROJECTS_V ,
-
View: MSC_SEARCH_RESOURCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_SEARCH_RESOURCES_V, object_name:MSC_SEARCH_RESOURCES_V, status:VALID, product: MSC - Advanced Supply Chain Planning , description: this view shows all the search criteria for resources , implementation_dba_data: APPS.MSC_SEARCH_RESOURCES_V ,
-
VIEW: APPS.MSC_SEARCH_ORGS_V
12.1.1
-
View: MSC_SEARCH_RESOURCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_SEARCH_RESOURCES_V, object_name:MSC_SEARCH_RESOURCES_V, status:VALID, product: MSC - Advanced Supply Chain Planning , description: this view shows all the search criteria for resources , implementation_dba_data: APPS.MSC_SEARCH_RESOURCES_V ,
-
SYNONYM: APPS.MSC_TRADING_PARTNERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MSC_TRADING_PARTNERS, status:VALID,
-
VIEW: APPS.MSC_SEARCH_ORGS_V
12.2.2
-
SYNONYM: APPS.MSC_TRADING_PARTNERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MSC_TRADING_PARTNERS, status:VALID,
-
View: MSC_SEARCH_ORGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_SEARCH_ORGS_V, object_name:MSC_SEARCH_ORGS_V, status:VALID, product: MSC - Advanced Supply Chain Planning , description: this view shows all the search criteria for organizations , implementation_dba_data: APPS.MSC_SEARCH_ORGS_V ,
-
View: MSC_SEARCH_ORGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_SEARCH_ORGS_V, object_name:MSC_SEARCH_ORGS_V, status:VALID, product: MSC - Advanced Supply Chain Planning , description: this view shows all the search criteria for organizations , implementation_dba_data: APPS.MSC_SEARCH_ORGS_V ,
-
eTRM - MSC Tables and Views
12.1.1
description: This table contains the mapping between user-defined zone and included regions ,
-
eTRM - MSC Tables and Views
12.2.2
description: This table contains the mapping between user-defined zone and included regions ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - MSC Tables and Views
12.1.1
description: This table contains the mapping between user-defined zone and included regions ,
-
eTRM - MSC Tables and Views
12.2.2
description: This table contains the mapping between user-defined zone and included regions ,