Search Results parent_node_key
Overview
CSP_PLN_ORG_NAV is a foundational navigation view in the Oracle E-Business Suite Spares Management (CSP) module, owned by the APPS schema and documented as VALID in ETRM for releases 12.1.1 and 12.2.2. It supplies the organization-level nodes displayed within the CSP Planning navigation hierarchy, exposing each inventory organization as a selectable node beneath the CSP_PLANNING root. The view answers the tree-building question of which organizations are available and how they should be labeled, ordered, and parented for the planning user interface and for integration consumers that traverse the same hierarchy.
Because it emits a uniform set of tree attributes — LABEL, NODE_KEY, PARENT_NODE_KEY, NODE_TYPE, LEAF_FLAG — the view can be consumed directly by generic tree-rendering code, by descriptive flexfield or folder-style personalizations, and by custom concurrent programs that must reproduce the standard navigation. The presence of NODE_KEY ($NODE_KEY) in the column list makes it the primary correlation column for joining a navigation node back to the underlying organization record.
Underlying Base Objects
The documented view text joins four sources. CSP_NAV_NODE_TYPES supplies the static node metadata (NODE_TYPE, ICON_NAME, ROOT_KEY) and is itself a view. MTL_PARAMETERS provides the organization identifier, which is projected as NODE_KEY. ORG_ORGANIZATION_DEFINITIONS supplies the display name used as LABEL. CSP_PLANNING_PARAMETERS is outer-joined (CPP.ORGANIZATION_ID(+) with CPP.SECONDARY_INVENTORY IS NULL) so that organizations lacking a planning parameter row are still returned, and its ORGANIZATION_TYPE drives the ORDER BY. ETRM additionally lists HR_GENERAL and HR_SECURITY as referenced base objects, indicating that the security model for the underlying organization definitions is applied through those packages; users therefore see only organizations their responsibility and HR security profile permit.
Key Columns
- LABEL — the organization name from ORG_ORGANIZATION_DEFINITIONS, used as the visible tree text.
- NODE_TYPE — literal 'ORGANIZATION' from CSP_NAV_NODE_TYPES; distinguishes this node class from other CSP navigation entries.
- NODE_KEY — the organization ID from MTL_PARAMETERS; the unique identifier for the node and the join key to inventory and planning data.
- ICON_NAME — the icon assigned to the node type for UI rendering.
- LEAF_FLAG — hard-coded 'N', indicating organization nodes may expand further.
- PARENT_NODE_TYPE — hard-coded 'ROOT'; PARENT_NODE_KEY — the ROOT_KEY value 'CSP_PLANNING', anchoring every row to the planning root.
Common Use Cases and Queries
Typical uses include validating which organizations appear in the planning navigator, driving custom tree regions, and resolving a NODE_KEY back to an organization for downstream spares queries.
- List all planning organizations with their keys:
SELECT label, node_key, node_type FROM csp_pln_org_nav ORDER BY 1; - Resolve a node key to inventory context:
SELECT n.label, mp.organization_code FROM csp_pln_org_nav n, mtl_parameters mp WHERE n.node_key = mp.organization_id; - Filter planning-enabled organizations:
SELECT n.node_key, n.label FROM csp_pln_org_nav n, csp_planning_parameters cpp WHERE n.node_key = cpp.organization_id; - Confirm the root binding for integration:
SELECT DISTINCT parent_node_key, parent_node_type FROM csp_pln_org_nav;
Because security is enforced through HR_GENERAL and HR_SECURITY, results vary by responsibility; queries used in concurrent programs should therefore be executed under the intended operating unit and security profile.
-
View: CSP_PLN_ORG_NAV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_PLN_ORG_NAV, object_name:CSP_PLN_ORG_NAV, status:VALID, product: CSP - Spares Management , implementation_dba_data: APPS.CSP_PLN_ORG_NAV ,
-
View: CSP_PLN_SUBINV_NAV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_PLN_SUBINV_NAV, object_name:CSP_PLN_SUBINV_NAV, status:VALID, product: CSP - Spares Management , implementation_dba_data: APPS.CSP_PLN_SUBINV_NAV ,
-
View: CSP_PLN_SUBINV_NAV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_PLN_SUBINV_NAV, object_name:CSP_PLN_SUBINV_NAV, status:VALID, product: CSP - Spares Management , implementation_dba_data: APPS.CSP_PLN_SUBINV_NAV ,
-
View: CSP_PLN_ORG_NAV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_PLN_ORG_NAV, object_name:CSP_PLN_ORG_NAV, status:VALID, product: CSP - Spares Management , implementation_dba_data: APPS.CSP_PLN_ORG_NAV ,
-
View: CSP_PLIST_STATUS_NAV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_PLIST_STATUS_NAV, object_name:CSP_PLIST_STATUS_NAV, status:VALID, product: CSP - Spares Management , description: View for Packlist Root to Packlist status , implementation_dba_data: APPS.CSP_PLIST_STATUS_NAV ,
-
View: CSP_NOT_PLTYPES_NAV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_NOT_PLTYPES_NAV, object_name:CSP_NOT_PLTYPES_NAV, status:VALID, product: CSP - Spares Management , description: View for Parts Loop to Notification Types flow , implementation_dba_data: APPS.CSP_NOT_PLTYPES_NAV ,
-
View: CSP_NOT_PLOOP_NAV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_NOT_PLOOP_NAV, object_name:CSP_NOT_PLOOP_NAV, status:VALID, product: CSP - Spares Management , description: View for Notification Root to Parts Loop flow , implementation_dba_data: APPS.CSP_NOT_PLOOP_NAV ,
-
View: CSP_PLIST_BOXES_NAV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_PLIST_BOXES_NAV, object_name:CSP_PLIST_BOXES_NAV, status:VALID, product: CSP - Spares Management , description: View for Packlist to Boxes flow , implementation_dba_data: APPS.CSP_PLIST_BOXES_NAV ,
-
View: CSP_NOT_PLOOP_NAV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_NOT_PLOOP_NAV, object_name:CSP_NOT_PLOOP_NAV, status:VALID, product: CSP - Spares Management , description: View for Notification Root to Parts Loop flow , implementation_dba_data: APPS.CSP_NOT_PLOOP_NAV ,
-
View: CSP_PARTS_LOOPS_NAV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_PARTS_LOOPS_NAV, object_name:CSP_PARTS_LOOPS_NAV, status:VALID, product: CSP - Spares Management , description: View for Parts Loop Root to Parts Loop flow , implementation_dba_data: APPS.CSP_PARTS_LOOPS_NAV ,
-
View: CSP_PACK_LIST_NAV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_PACK_LIST_NAV, object_name:CSP_PACK_LIST_NAV, status:VALID, product: CSP - Spares Management , description: View for Packlist status to Packlist flow , implementation_dba_data: APPS.CSP_PACK_LIST_NAV ,
-
View: CSP_REP_HIERARCHIES_NAV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_REP_HIERARCHIES_NAV, object_name:CSP_REP_HIERARCHIES_NAV, status:VALID, product: CSP - Spares Management , description: View for Reporting Hierarchy Root to Reporting Hierarchy flow , implementation_dba_data: APPS.CSP_REP_HIERARCHIES_NAV ,
-
View: CSP_PLIST_STATUS_NAV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_PLIST_STATUS_NAV, object_name:CSP_PLIST_STATUS_NAV, status:VALID, product: CSP - Spares Management , description: View for Packlist Root to Packlist status , implementation_dba_data: APPS.CSP_PLIST_STATUS_NAV ,
-
View: CSP_PARTS_LOOPS_NAV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_PARTS_LOOPS_NAV, object_name:CSP_PARTS_LOOPS_NAV, status:VALID, product: CSP - Spares Management , description: View for Parts Loop Root to Parts Loop flow , implementation_dba_data: APPS.CSP_PARTS_LOOPS_NAV ,
-
View: CSP_PLIST_BOXES_NAV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_PLIST_BOXES_NAV, object_name:CSP_PLIST_BOXES_NAV, status:VALID, product: CSP - Spares Management , description: View for Packlist to Boxes flow , implementation_dba_data: APPS.CSP_PLIST_BOXES_NAV ,
-
View: CSP_PLN_REGIONS_NAV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_PLN_REGIONS_NAV, object_name:CSP_PLN_REGIONS_NAV, status:VALID, product: CSP - Spares Management , implementation_dba_data: APPS.CSP_PLN_REGIONS_NAV ,
-
View: CSP_PLN_REGIONS_NAV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_PLN_REGIONS_NAV, object_name:CSP_PLN_REGIONS_NAV, status:VALID, product: CSP - Spares Management , implementation_dba_data: APPS.CSP_PLN_REGIONS_NAV ,
-
View: CSP_PLIST_BOXITEMS_NAV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_PLIST_BOXITEMS_NAV, object_name:CSP_PLIST_BOXITEMS_NAV, status:VALID, product: CSP - Spares Management , description: View for Box to Items flow , implementation_dba_data: APPS.CSP_PLIST_BOXITEMS_NAV ,
-
View: CSP_REP_HIERARCHIES_NAV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_REP_HIERARCHIES_NAV, object_name:CSP_REP_HIERARCHIES_NAV, status:VALID, product: CSP - Spares Management , description: View for Reporting Hierarchy Root to Reporting Hierarchy flow , implementation_dba_data: APPS.CSP_REP_HIERARCHIES_NAV ,
-
View: CSP_PACK_LIST_NAV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_PACK_LIST_NAV, object_name:CSP_PACK_LIST_NAV, status:VALID, product: CSP - Spares Management , description: View for Packlist status to Packlist flow , implementation_dba_data: APPS.CSP_PACK_LIST_NAV ,
-
View: CSP_SEC_INVENTORIES_NAV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_SEC_INVENTORIES_NAV, object_name:CSP_SEC_INVENTORIES_NAV, status:VALID, product: CSP - Spares Management , description: View for Parts Loop to Subinventory flow , implementation_dba_data: APPS.CSP_SEC_INVENTORIES_NAV ,
-
View: CSP_NOT_PLTYPES_NAV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_NOT_PLTYPES_NAV, object_name:CSP_NOT_PLTYPES_NAV, status:VALID, product: CSP - Spares Management , description: View for Parts Loop to Notification Types flow , implementation_dba_data: APPS.CSP_NOT_PLTYPES_NAV ,
-
View: CSP_PLIST_BOXITEMS_NAV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_PLIST_BOXITEMS_NAV, object_name:CSP_PLIST_BOXITEMS_NAV, status:VALID, product: CSP - Spares Management , description: View for Box to Items flow , implementation_dba_data: APPS.CSP_PLIST_BOXITEMS_NAV ,
-
View: CSP_NOT_STAT_ITEMS_NAV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_NOT_STAT_ITEMS_NAV, object_name:CSP_NOT_STAT_ITEMS_NAV, status:VALID, product: CSP - Spares Management , description: View for Notification status to Items flow , implementation_dba_data: APPS.CSP_NOT_STAT_ITEMS_NAV ,
-
View: CSP_SEC_INVENTORIES_NAV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_SEC_INVENTORIES_NAV, object_name:CSP_SEC_INVENTORIES_NAV, status:VALID, product: CSP - Spares Management , description: View for Parts Loop to Subinventory flow , implementation_dba_data: APPS.CSP_SEC_INVENTORIES_NAV ,
-
View: CSP_PLIST_ITMSLNO_NAV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_PLIST_ITMSLNO_NAV, object_name:CSP_PLIST_ITMSLNO_NAV, status:VALID, product: CSP - Spares Management , description: View for packlist items to Serial/Lot flow , implementation_dba_data: APPS.CSP_PLIST_ITMSLNO_NAV ,
-
View: CSP_NOT_TYSTAT_NAV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_NOT_TYSTAT_NAV, object_name:CSP_NOT_TYSTAT_NAV, status:VALID, product: CSP - Spares Management , description: View for Notification Types to Status flow , implementation_dba_data: APPS.CSP_NOT_TYSTAT_NAV ,
-
View: CSP_NOT_TYSTAT_NAV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_NOT_TYSTAT_NAV, object_name:CSP_NOT_TYSTAT_NAV, status:VALID, product: CSP - Spares Management , description: View for Notification Types to Status flow , implementation_dba_data: APPS.CSP_NOT_TYSTAT_NAV ,
-
View: CSP_NOT_STAT_ITEMS_NAV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_NOT_STAT_ITEMS_NAV, object_name:CSP_NOT_STAT_ITEMS_NAV, status:VALID, product: CSP - Spares Management , description: View for Notification status to Items flow , implementation_dba_data: APPS.CSP_NOT_STAT_ITEMS_NAV ,
-
View: CSP_PLIST_ITMSLNO_NAV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_PLIST_ITMSLNO_NAV, object_name:CSP_PLIST_ITMSLNO_NAV, status:VALID, product: CSP - Spares Management , description: View for packlist items to Serial/Lot flow , implementation_dba_data: APPS.CSP_PLIST_ITMSLNO_NAV ,
-
View: CSP_PLN_REGION_ORG_NAV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_PLN_REGION_ORG_NAV, object_name:CSP_PLN_REGION_ORG_NAV, status:VALID, product: CSP - Spares Management , implementation_dba_data: APPS.CSP_PLN_REGION_ORG_NAV ,
-
View: CSP_REP_HIER_SECINV_NAV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_REP_HIER_SECINV_NAV, object_name:CSP_REP_HIER_SECINV_NAV, status:VALID, product: CSP - Spares Management , description: View for Reporting Hierarchy to Subinventory flow , implementation_dba_data: APPS.CSP_REP_HIER_SECINV_NAV ,
-
View: CSP_REP_HIER_SECINV_NAV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_REP_HIER_SECINV_NAV, object_name:CSP_REP_HIER_SECINV_NAV, status:VALID, product: CSP - Spares Management , description: View for Reporting Hierarchy to Subinventory flow , implementation_dba_data: APPS.CSP_REP_HIER_SECINV_NAV ,
-
View: CSP_PLN_REGION_ORG_NAV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_PLN_REGION_ORG_NAV, object_name:CSP_PLN_REGION_ORG_NAV, status:VALID, product: CSP - Spares Management , implementation_dba_data: APPS.CSP_PLN_REGION_ORG_NAV ,