Search Results csp_part_priorities_v
Overview
APPS.CSP_PART_CATEGORIES_V is a union view in the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 environments that consolidates part category definitions used by the Oracle Spares Management and Enterprise Territory/Return Management (ETRM) modules. Its principal role is to expose a normalized set of part priority and category ranges, each identified by a descriptive meaning and bounded by numeric lower and upper values. The view merges two distinct data sources: the seeded lookup values held in FND_LOOKUPS for lookup type CSP_PARTS_CATEGORY, and the dynamically derived priority ranges returned by CSP_PART_PRIORITIES_V. Because it is a view rather than a base table, it does not store data; it recomputes results at query time, making it suitable for reporting, list-of-values (LOV) definitions, and integration extracts that require a consistent set of part categories across the application.
The object draws on standard EBS infrastructure, notably the FND_GLOBAL package, which supplies session context such as user, responsibility, and organization identifiers required during runtime execution of dependent views.
Underlying Base Objects
The documented referenced base objects are:
- CSP_PART_PRIORITIES_V (VIEW) — supplies the priority rows and the MEANING, LOWER_RANGE, and UPPER_RANGE columns that are unioned into the result set.
- FND_LOOKUPS (VIEW) — supplies the seeded CSP_PARTS_CATEGORY lookup rows, from which the view derives two numeric range boundaries using DECODE.
- FND_GLOBAL (PACKAGE) — provides session-level context used by the underlying views during execution.
Functionally, CSP_PART_CATEGORIES_V is a higher-level reporting layer built on top of CSP_PART_PRIORITIES_V. It does not reference base tables such as CSP_PART_PRIORITIES directly; all priority logic is deferred to CSP_PART_PRIORITIES_V. The union aligns two representations into a single set of (meaning, lower_range, upper_range) tuples.
Key Columns
The view exposes a small, focused column set:
- MEANING — the human-readable category or priority description. For lookup-sourced rows this is the FND_LOOKUPS meaning; for priority-sourced rows it is the meaning from CSP_PART_PRIORITIES_V.
- Lower range column — the inclusive lower boundary. For the lookup_code '101' row this evaluates to 101; for lookup_code '0' it evaluates to 0. For priority rows, it is LOWER_RANGE plus a small epsilon (0.000001) to make the boundary exclusive and avoid overlap with adjacent ranges.
- Upper range column — the exclusive or inclusive upper boundary. For '101' it is 101; for '0' it is 100. Priority rows use the UPPER_RANGE value directly.
The numeric boundaries allow deterministic mapping of a part's score or priority into a single category, which is the core purpose of the view.
Common Use Cases and Queries
Typical scenarios include defining part priority categories for spares planning, driving LOVs in concurrent program parameters, and feeding downstream analytics. A representative query lists all available categories:
SELECT meaning, lower_range, upper_range FROM apps.csp_part_categories_v ORDER BY lower_range;
To resolve the category for a specific part score, constrain on the range boundaries:
SELECT meaning FROM apps.csp_part_categories_v WHERE :score >= lower_range AND :score < upper_range;
Because the view incorporates FND_LOOKUPS, results reflect site-specific lookup customization for CSP_PARTS_CATEGORY. Users should note that the epsilon offset on LOWER_RANGE means the priority rows present effectively contiguous, non-overlapping bands, which is important when performing BETWEEN or range-join comparisons.
-
VIEW: APPS.CSP_PART_CATEGORIES_V
12.2.2
-
VIEW: APPS.CSP_PART_CATEGORIES_V
12.1.1
-
VIEW: APPS.CSP_DC_PARTS_V
12.1.1
-
VIEW: APPS.CSP_DC_PARTS_V
12.2.2
-
SYNONYM: APPS.CSP_PART_PRIORITIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CSP_PART_PRIORITIES, status:VALID,
-
VIEW: APPS.CSP_REQUIRED_PARTS_V
12.1.1
-
SYNONYM: APPS.CSP_PART_PRIORITIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CSP_PART_PRIORITIES, status:VALID,
-
VIEW: APPS.CSP_PART_CATEGORIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_PART_CATEGORIES_V, object_name:CSP_PART_CATEGORIES_V, status:VALID,
-
VIEW: APPS.CSP_SPARES_ORDERS_OM_V
12.2.2
-
VIEW: APPS.CSP_PART_CATEGORIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_PART_CATEGORIES_V, object_name:CSP_PART_CATEGORIES_V, status:VALID,
-
VIEW: APPS.CSP_REQUIRED_PARTS_V
12.2.2
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.CSP_SPARES_ORDERS_OM_V
12.1.1
-
VIEW: APPS.CSP_PART_PRIORITIES_V
12.2.2
owner:APPS, object_type:VIEW, object_name:CSP_PART_PRIORITIES_V, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.CSP_DC_PARTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_DC_PARTS_V, object_name:CSP_DC_PARTS_V, status:VALID,
-
VIEW: APPS.CSP_PART_PRIORITIES_V
12.1.1
owner:APPS, object_type:VIEW, object_name:CSP_PART_PRIORITIES_V, status:VALID,
-
VIEW: APPS.CSP_DC_PARTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_DC_PARTS_V, object_name:CSP_DC_PARTS_V, status:VALID,
-
VIEW: APPS.CSP_REQUIRED_PARTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_REQUIRED_PARTS_V, object_name:CSP_REQUIRED_PARTS_V, status:VALID,
-
VIEW: APPS.CSP_SPARES_ORDERS_OM_V
12.1.1
owner:APPS, object_type:VIEW, object_name:CSP_SPARES_ORDERS_OM_V, status:VALID,
-
VIEW: APPS.CSP_SPARES_ORDERS_OM_V
12.2.2
owner:APPS, object_type:VIEW, object_name:CSP_SPARES_ORDERS_OM_V, status:VALID,
-
VIEW: APPS.CSP_REQUIRED_PARTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_REQUIRED_PARTS_V, object_name:CSP_REQUIRED_PARTS_V, status:VALID,
-
eTRM - CSP Tables and Views
12.2.2
description: Summarized usage history information ,
-
eTRM - CSP Tables and Views
12.1.1
description: Summarized usage history information ,
-
VIEW: APPS.FND_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_LOOKUPS, object_name:FND_LOOKUPS, status:VALID,
-
VIEW: APPS.FND_LOOKUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_LOOKUPS, object_name:FND_LOOKUPS, status:VALID,
-
eTRM - CSP Tables and Views
12.2.2
description: Summarized usage history information ,
-
eTRM - CSP Tables and Views
12.1.1
description: Summarized usage history information ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE: APPS.FND_GLOBAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
PACKAGE: APPS.FND_GLOBAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,