Search Results pack_type
Overview
APPS.WSH_PACK_SLIP_V is a reporting view in the Oracle E-Business Suite Shipping (WSH) module that identifies deliveries for which a packing slip document exists but has not yet been printed. The view returns a concise list of delivery identifiers, delivery names, and the associated organization, filtered to only those deliveries whose packing slip has never been submitted to a final print run. Its central role is to support the packing slip printing process, whereby the Shipping module and concurrent programs must discover which eligible deliveries still require a printed document.
In Oracle EBS 12.1.1 and 12.2.2, this view is owned by the APPS schema and is typically referenced by printing concurrent programs, custom reports, and integrations that need to enumerate outstanding packing slip work. Because it surfaces only deliveries that are not yet finally printed, it functions as a work-queue view rather than a historical listing of all shipments. The reference to PACK_TYPE in WSH_DOCUMENT_INSTANCES is the mechanism that restricts results to packing slip document instances specifically, distinguishing them from other document types such as bills of lading or commercial invoices.
Underlying Base Objects
The view is defined over two base objects, both accessed through APPS synonyms:
- WSH_NEW_DELIVERIES (alias DEL) — the primary delivery header table holding delivery identity, status, direction, and type.
- WSH_DOCUMENT_INSTANCES (alias DOC) — the document instance table that records each generated document, its document type, entity reference, and final print date.
The join is established on DEL.DELIVERY_ID = DOC.ENTITY_ID, with the additional constraint DOC.ENTITY_NAME = 'WSH_NEW_DELIVERIES' ensuring the document instance belongs to a delivery header. The view applies an inner join, so only deliveries that actually have a matching document instance are returned.
Key Columns
- DELIVERY_ID — The unique identifier of the delivery, sourced from WSH_NEW_DELIVERIES and matched to the document entity.
- DELIVERY_NAME — The user-visible delivery name (
DEL.NAME), used for identification in reports and print output. - ORGANIZATION_ID — The inventory organization that owns the delivery, enabling multi-org filtering and reporting.
Although not projected as columns, the view's filter predicates carry important meaning: STATUS_CODE != 'CA' excludes cancelled deliveries; FINAL_PRINT_DATE IS NULL restricts to unprinted documents; DOCUMENT_TYPE = 'PACK_TYPE' isolates packing slips; SHIPMENT_DIRECTION in ('O','IO') limits results to outbound and internal outbound movements; and DELIVERY_TYPE = 'STANDARD' excludes non-standard delivery types.
Common Use Cases and Queries
Typical uses include concurrent print processing, operational dashboards for outstanding packing slips, and interfaces that reconcile unprinted shipping documents.
A simple query listing unprinted standard outbound packing slips:
SELECT delivery_id, delivery_name, organization_id FROM apps.wsh_pack_slip_v WHERE organization_id = :org_id;
Counting outstanding packing slips per organization:
SELECT organization_id, COUNT(*) FROM apps.wsh_pack_slip_v GROUP BY organization_id;
Joining to delivery details for operational reporting:
SELECT v.delivery_name, d.status_code FROM apps.wsh_pack_slip_v v, apps.wsh_new_deliveries d WHERE v.delivery_id = d.delivery_id;
Because the view already applies all eligibility filters, consumers should avoid re-implementing the PACK_TYPE and final-print-date logic in parallel queries; doing so risks divergence from the Shipping module's own print selection criteria.
-
Lookup Type: PACK_TYPE
12.2.2
product: WSH - Shipping Execution , meaning: Packing Slip Types , description: Packing Slip Types ,
-
Lookup Type: PACK_TYPE
12.1.1
product: WSH - Shipping Execution , meaning: Packing Slip Types , description: Packing Slip Types ,
-
VIEW: APPS.WSH_PACK_SLIP_V
12.1.1
-
VIEW: APPS.WSH_PACK_SLIP_V
12.2.2
-
VIEW: APPS.WSH_PACKING_SLIPS_DB_V
12.1.1
-
VIEW: APPS.WSHBV_DOCUMENT_PACKSLIP
12.2.2
-
VIEW: APPS.WSH_PACKING_SLIPS_DB_V
12.2.2
-
VIEW: APPS.WSHBV_DOCUMENT_PACKSLIP
12.1.1
-
VIEW: APPS.WSHFV_DOCUMENT_PACKSLIP
12.1.1
-
VIEW: APPS.WSHFV_DOCUMENT_PACKSLIP
12.2.2
-
View: WSH_PACK_SLIP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_PACK_SLIP_V, object_name:WSH_PACK_SLIP_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_PACK_SLIP_V ,
-
View: WSH_PACK_SLIP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_PACK_SLIP_V, object_name:WSH_PACK_SLIP_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_PACK_SLIP_V ,
-
View: WSH_PACKING_SLIPS_DB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_PACKING_SLIPS_DB_V, object_name:WSH_PACKING_SLIPS_DB_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_PACKING_SLIPS_DB_V ,
-
Lookup Type: DOCUMENT_TYPE
12.1.1
product: WSH - Shipping Execution , meaning: Document Type ,
-
Lookup Type: DOCUMENT_TYPE
12.2.2
product: WSH - Shipping Execution , meaning: Document Type ,
-
View: WSH_PACKING_SLIPS_DB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_PACKING_SLIPS_DB_V, object_name:WSH_PACKING_SLIPS_DB_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_PACKING_SLIPS_DB_V ,
-
12.1.1 FND Design Data
12.1.1
-
View: WSHBV_DOCUMENT_PACKSLIP
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHBV_DOCUMENT_PACKSLIP, object_name:WSHBV_DOCUMENT_PACKSLIP, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSHBV_DOCUMENT_PACKSLIP ,
-
View: WSHFV_DOCUMENT_PACKSLIP
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHFV_DOCUMENT_PACKSLIP, object_name:WSHFV_DOCUMENT_PACKSLIP, status:VALID, product: WSH - Shipping Execution , description: Full BIS Business View of Document Instances for Pack Slip. , implementation_dba_data: APPS.WSHFV_DOCUMENT_PACKSLIP ,
-
View: WSHBV_DOCUMENT_PACKSLIP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHBV_DOCUMENT_PACKSLIP, object_name:WSHBV_DOCUMENT_PACKSLIP, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSHBV_DOCUMENT_PACKSLIP ,
-
12.2.2 FND Design Data
12.2.2
-
View: WSHFV_DOCUMENT_PACKSLIP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHFV_DOCUMENT_PACKSLIP, object_name:WSHFV_DOCUMENT_PACKSLIP, status:VALID, product: WSH - Shipping Execution , description: Full BIS Business View of Document Instances for Pack Slip. , implementation_dba_data: APPS.WSHFV_DOCUMENT_PACKSLIP ,
-
VIEW: APPS.CLN_XML_DELIVERIES2_V
12.1.1
-
VIEW: APPS.CLN_XML_DELIVERIES_V
12.1.1
-
VIEW: APPS.CLN_XML_DELIVERIES2_V
12.2.2
-
VIEW: APPS.CLN_XML_DELIVERIES_V
12.2.2
-
PACKAGE: APPS.WSH_DOCUMENT_PVT
12.1.1
-
PACKAGE: APPS.WSH_DOCUMENT_PVT
12.2.2
-
View: CLN_XML_DELIVERIES2_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_XML_DELIVERIES2_V, object_name:CLN_XML_DELIVERIES2_V, status:VALID, product: CLN - Supply Chain Trading Connector for RosettaNet , description: View for SHIPMENT deliveries section in OAG SHOW_SHIPMENT_005 XML payload , implementation_dba_data: APPS.CLN_XML_DELIVERIES2_V ,
-
View: CLN_XML_DELIVERIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_XML_DELIVERIES_V, object_name:CLN_XML_DELIVERIES_V, status:VALID, product: CLN - Supply Chain Trading Connector for RosettaNet , description: View for SHIPMENT deliveries section in OAG SHOW_SHIPMENT_005 XML payload , implementation_dba_data: APPS.CLN_XML_DELIVERIES_V ,
-
View: CLN_XML_DELIVERIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_XML_DELIVERIES_V, object_name:CLN_XML_DELIVERIES_V, status:VALID, product: CLN - Supply Chain Trading Connector for RosettaNet , description: View for SHIPMENT deliveries section in OAG SHOW_SHIPMENT_005 XML payload , implementation_dba_data: APPS.CLN_XML_DELIVERIES_V ,
-
PACKAGE BODY: APPS.WSH_DOCUMENT_PUB
12.2.2
-
View: CLN_XML_DELIVERIES2_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_XML_DELIVERIES2_V, object_name:CLN_XML_DELIVERIES2_V, status:VALID, product: CLN - Supply Chain Trading Connector for RosettaNet , description: View for SHIPMENT deliveries section in OAG SHOW_SHIPMENT_005 XML payload , implementation_dba_data: APPS.CLN_XML_DELIVERIES2_V ,
-
PACKAGE BODY: APPS.WSH_DOCUMENT_PUB
12.1.1
-
VIEW: APPS.WSH_DSNO_DELIVERIES_V
12.2.2
-
VIEW: APPS.WSH_OPSM_ASN_DELIVERIES_V
12.2.2
-
APPS.WSH_DELIVERIES_GRP SQL Statements
12.1.1
-
VIEW: APPS.WSH_DSNO_DELIVERIES_V
12.1.1
-
PACKAGE: APPS.WSH_DOCUMENT_PUB
12.2.2
-
View: WSH_OPSM_ASN_DELIVERIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_OPSM_ASN_DELIVERIES_V, object_name:WSH_OPSM_ASN_DELIVERIES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_OPSM_ASN_DELIVERIES_V ,
-
PACKAGE: APPS.WSH_DOCUMENT_PUB
12.1.1
-
APPS.WSH_DELIVERIES_GRP SQL Statements
12.2.2
-
View: WSH_DSNO_DELIVERIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_DELIVERIES_V, object_name:WSH_DSNO_DELIVERIES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DSNO_DELIVERIES_V ,
-
View: WSH_DSNO_DELIVERIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_DELIVERIES_V, object_name:WSH_DSNO_DELIVERIES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DSNO_DELIVERIES_V ,
-
APPS.WSH_DOCUMENT_SETS SQL Statements
12.2.2
-
APPS.WSH_DOCUMENT_SETS SQL Statements
12.1.1
-
PACKAGE BODY: APPS.WSH_DOCUMENT_PVT
12.1.1
-
PACKAGE BODY: APPS.WSH_DOCUMENT_PVT
12.2.2
-
APPS.WSH_WSHRDPAK_XMLP_PKG dependencies on WSH_DOCUMENT_PVT
12.1.1
-
APPS.WSH_DELIVERIES_GRP dependencies on FND_GLOBAL
12.2.2