Search Results csp_packlist_boxes
Overview
The CSP_PACKLIST_BOXES table is a core transactional data object within the Oracle E-Business Suite Spares Management (CSP) module. It serves as the central repository for recording and managing the physical boxes or containers used to ship spare parts. Each record in this table represents a distinct box associated with a specific packing list, forming a critical link between the logical packing list header and the detailed line items being shipped. Its primary role is to enable detailed tracking of shipment contents at the container level, which is essential for logistics, inventory control, and customer service in aftermarket service and parts distribution operations.
Key Information Stored
While the provided metadata does not list all columns, the defined relationships and keys indicate the fundamental data structure. The primary identifier, BOX_ID, uniquely defines each box record. The PACKLIST_HEADER_ID is a mandatory foreign key that ties the box to its parent packing list in the CSP_PACKLIST_HEADERS table. Typical columns expected in such a table, based on its functional purpose, would include data points for physical tracking and identification. These likely encompass a box number or identifier (e.g., BOX_NUMBER), dimensional data (weight, dimensions), shipping-related attributes, and creation metadata (CREATED_BY, CREATION_DATE). The table's design ensures each box is explicitly linked to one packing list.
Common Use Cases and Queries
This table is central to operational and analytical activities related to shipment execution. A common use case is generating a detailed packing manifest that lists all boxes on a shipment and their contents, which involves joining to CSP_PACKLIST_LINES. Another key scenario is calculating total shipment weight and dimensions by aggregating data from all boxes associated with a packlist header. For troubleshooting, queries often identify boxes associated with a specific part number or serial number. A fundamental reporting query pattern is:
- SELECT plh.packlist_number, box.box_id, box.box_number, COUNT(line.line_id) as item_count, SUM(line.shipped_quantity) as total_qty
- FROM csp_packlist_boxes box,
- csp_packlist_headers plh,
- csp_packlist_lines line
- WHERE box.packlist_header_id = plh.packlist_header_id
- AND box.box_id = line.box_id
- AND plh.packlist_header_id = :p_header_id
- GROUP BY plh.packlist_number, box.box_id, box.box_number;
Related Objects
The CSP_PACKLIST_BOXES table exists within a tightly defined hierarchy in the Spares Management schema. Its relationships are explicitly documented in the metadata:
- Parent Table (Foreign Key Reference): CSP_PACKLIST_BOXES.PACKLIST_HEADER_ID references CSP_PACKLIST_HEADERS. This establishes that every box belongs to a single packing list.
- Child Table (Referenced by Foreign Key): CSP_PACKLIST_LINES.BOX_ID references CSP_PACKLIST_BOXES.BOX_ID. This critical relationship allows multiple inventory line items to be allocated to a specific physical box, enabling detailed container-level shipment tracking.
Therefore, this table is a mandatory join point for any query or report that needs to associate shipped spare part lines with their physical container and overall packing list document.
-
Table: CSP_PACKLIST_BOXES
12.2.2
owner:CSP, object_type:TABLE, fnd_design_data:CSP.CSP_PACKLIST_BOXES, object_name:CSP_PACKLIST_BOXES, status:VALID, product: CSP - Spares Management , description: Packlist Boxes , implementation_dba_data: CSP.CSP_PACKLIST_BOXES ,
-
Table: CSP_PACKLIST_BOXES
12.1.1
owner:CSP, object_type:TABLE, fnd_design_data:CSP.CSP_PACKLIST_BOXES, object_name:CSP_PACKLIST_BOXES, status:VALID, product: CSP - Spares Management , description: Packlist Boxes , implementation_dba_data: CSP.CSP_PACKLIST_BOXES ,
-
Table: CSP_PACKLIST_LINES
12.1.1
owner:CSP, object_type:TABLE, fnd_design_data:CSP.CSP_PACKLIST_LINES, object_name:CSP_PACKLIST_LINES, status:VALID, product: CSP - Spares Management , description: Packlist lines , implementation_dba_data: CSP.CSP_PACKLIST_LINES ,
-
Table: CSP_PACKLIST_HEADERS
12.2.2
owner:CSP, object_type:TABLE, fnd_design_data:CSP.CSP_PACKLIST_HEADERS, object_name:CSP_PACKLIST_HEADERS, status:VALID, product: CSP - Spares Management , description: Packlist headers , implementation_dba_data: CSP.CSP_PACKLIST_HEADERS ,
-
Table: CSP_PACKLIST_LINES
12.2.2
owner:CSP, object_type:TABLE, fnd_design_data:CSP.CSP_PACKLIST_LINES, object_name:CSP_PACKLIST_LINES, status:VALID, product: CSP - Spares Management , description: Packlist lines , implementation_dba_data: CSP.CSP_PACKLIST_LINES ,
-
View: CSP_PACKLIST_BOXES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_PACKLIST_BOXES_V, object_name:CSP_PACKLIST_BOXES_V, status:VALID, product: CSP - Spares Management , description: Boxes belonging to packlists , implementation_dba_data: APPS.CSP_PACKLIST_BOXES_V ,
-
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 ,
-
Table: CSP_PACKLIST_HEADERS
12.1.1
owner:CSP, object_type:TABLE, fnd_design_data:CSP.CSP_PACKLIST_HEADERS, object_name:CSP_PACKLIST_HEADERS, status:VALID, product: CSP - Spares Management , description: Packlist headers , implementation_dba_data: CSP.CSP_PACKLIST_HEADERS ,
-
View: CSP_PACKLIST_BOXES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_PACKLIST_BOXES_V, object_name:CSP_PACKLIST_BOXES_V, status:VALID, product: CSP - Spares Management , description: Boxes belonging to packlists , implementation_dba_data: APPS.CSP_PACKLIST_BOXES_V ,
-
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_RECV_PARTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_RECV_PARTS_V, object_name:CSP_RECV_PARTS_V, status:VALID, product: CSP - Spares Management , description: Information about shipped packlists , implementation_dba_data: APPS.CSP_RECV_PARTS_V ,
-
View: CSP_RECV_PARTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_RECV_PARTS_V, object_name:CSP_RECV_PARTS_V, status:VALID, product: CSP - Spares Management , description: Information about shipped packlists , implementation_dba_data: APPS.CSP_RECV_PARTS_V ,