Search Results bom_item_name




Overview

The CSD_SC_BOM_AND_ROUTE_V view is a reporting and integration object within the Oracle E-Business Suite Depot Repair (CSD) module. It exposes the mapping maintained between Service Codes and the Bills of Material (BOM) and Routings that are used to repair or rebuild an item. In Depot Repair, a Service Code represents a repairable service offering, and the work performed against it is driven by a bill of material and a routing definition. This view flattens the underlying intersection table CSD_SC_WORK_ENTITIES so that the surrogate keys stored against each Service Code are resolved into human-readable inventory item names, descriptions, organization codes, and alternate designator descriptions.

Because the view joins the Depot Repair work-entity definition to manufacturing master data, it is commonly used in custom reports, concurrent programs, and interface extracts that need to answer the question: for a given Service Code, which BOM and routing are attached, in which organization, and against which assembly item? The presence of denormalized columns such as BOM_ITEM_NAME, ROUTING_ITEM_NAME, and the alternate designator descriptions makes it directly suitable for display in BI Publisher reports and OAF-based inquiry pages without additional joins. The routing_item_name column in particular is the attribute most frequently searched by developers looking to report the assembly item carrying the routing for a Service Code.

Underlying Base Objects

The view is owned by the APPS schema and is defined over the following documented base objects:

All manufacturing-side joins are outer joins, so a Service Code row is still returned when its BOM or routing has been deleted or is not yet defined.

Key Columns

Common Use Cases and Queries

The view is typically queried to validate that every Service Code has a BOM and routing attached, to report the routing item name for a given Service Code, or to extract BOM and routing mappings for a specified organization. The following query returns the routing and BOM details for a Service Code by routing item name:

SELECT service_code_id,
       organization_code,
       bom_item_name,
       alternate_bom_designator,
       routing_item_name,
       alternate_routing_designator
FROM   apps.csd_sc_bom_and_route_v
WHERE  routing_item_name = :p_routing_item_name
AND    organization_id   = :p_org_id;

A second common pattern identifies Service Codes missing a routing definition, which the outer joins expose as null ROUTING_SEQUENCE_ID values, and is useful for data-cleansing scripts prior to go-live. Because the view references FND_GLOBAL for session context, queries should be executed with the standard EBS security and MOAC initialization, and callers should filter by ORGANIZATION_ID where operating unit or inventory organization isolation is required.