Search Results outermost_license_plate_number
Overview
APPS.WMS_LICENSE_PLATE_NUMBERS_V is a reporting and integration view over Oracle Warehouse Management license plate (LPN) data. Its distinguishing purpose is to denormalize the raw license plate records held in WMS_LICENSE_PLATE_NUMBERS and resolve the numerical cost group identifier into a human-readable cost group name by joining to CST_COST_GROUPS. The view is presented as a UNION ALL of two branches: the first returns top-level (outermost) LPNs whose PARENT_LPN_ID is null, and the second returns nested child LPNs, resolving their parent license plate numbers and outermost LPN identifiers through self-joins back to the license plate table. This structure makes the view suitable for reporting on both standalone containers and containers that are physically packed inside other containers, without requiring the caller to write recursive or multi-pass logic. The user search term "cost_group_name" maps directly to the view column of that name, which is one of the principal reasons the view is queried rather than the base table.
Underlying Base Objects
The documented referenced base objects are WMS_LICENSE_PLATE_NUMBERS (accessed via synonym) and CST_COST_GROUPS (accessed via synonym). The first branch of the UNION ALL selects from WMS_LICENSE_PLATE_NUMBERS aliased as WLN, filtered by wln.parent_lpn_id is null, and performs an outer join to CST_COST_GROUPS aliased as CG on wln.cost_group_id = cg.cost_group_id(+). Because the join is outer, license plates without a matching cost group still appear, with COST_GROUP_NAME returned as null. The second branch selects from WMS_LICENSE_PLATE_NUMBERS aliased as WLP and self-joins to additional instances of the same table (WLP1, WLP2) to derive PARENT_LICENSE_PLATE_NUMBER and OUTERMOST_LICENSE_PLATE_NUMBER. Each branch also exposes the ROWID as ROW_ID, although this is a composite across both branches and should not be treated as a stable surrogate key. The view therefore carries no additional storage; it is a pure definition layered over these two base objects.
Key Columns
- LPN_ID / LICENSE_PLATE_NUMBER — Primary identifier and human-readable label of the license plate.
- INVENTORY_ITEM_ID, REVISION, LOT_NUMBER, SERIAL_NUMBER — Item and revision/lot/serial context associated with the LPN contents.
- ORGANIZATION_ID, SUBINVENTORY_CODE, LOCATOR_ID — Warehouse, subinventory, and locator placement.
- COST_GROUP_ID and COST_GROUP_NAME — The cost group identifier and its resolved descriptive name from CST_COST_GROUPS; this is the column pair most relevant to the searched term.
- PARENT_LPN_ID, PARENT_LICENSE_PLATE_NUMBER, OUTERMOST_LPN_ID, OUTERMOST_LICENSE_PLATE_NUMBER — Hierarchical container context. Top-level rows carry null parent values; child rows expose the resolved parent and outermost plate numbers.
- GROSS_WEIGHT, TARE_WEIGHT, CONTENT_VOLUME (with their UOM codes) — Physical measures of the container and contents.
- STATUS_ID, SEALED_STATUS, LPN_REUSABILITY, LPN_CONTEXT, HOMOGENEOUS_CONTAINER — Operational status and container characteristics.
- SOURCE_TYPE_ID, SOURCE_HEADER_ID, SOURCE_LINE_ID, SOURCE_LINE_DETAIL_ID, SOURCE_NAME — Document chain indicating the transaction source that created the LPN.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–15 — Descriptive flexfield columns.
- Audit columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN, and the concurrent program identifiers REQUEST_ID, PROGRAM_ID, PROGRAM_APPLICATION_ID, PROGRAM_UPDATE_DATE.
Common Use Cases and Queries
Typical uses include LPN inventory reporting, container hierarchy analysis, and cost group classification of packed material. A cost-group-oriented query follows:
SELECT lpn_id, license_plate_number, organization_id,
cost_group_id, cost_group_name
FROM apps.wms_license_plate_numbers_v
WHERE cost_group_name = 'DEFAULT';
Because the view already filters and unions parent and child rows, callers reporting on nesting can query directly without recursion:
SELECT license_plate_number, parent_license_plate_number,
outermost_license_plate_number, inventory_item_id
FROM apps.wms_license_plate_numbers_v
WHERE parent_license_plate_number IS NOT NULL
ORDER BY outermost_license_plate_number;
Where no cost group is assigned, COST_GROUP_NAME is null by virtue of the outer join, so queries filtering on a specific name will naturally exclude unassigned plates unless an explicit null check is added.
-
VIEW: APPS.WMS_LICENSE_PLATE_NUMBERS_V
12.1.1
-
VIEW: WMS.WMS_LPN_HISTORIES#
12.2.2
-
View: WMS_LICENSE_PLATE_NUMBERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_LICENSE_PLATE_NUMBERS_V, object_name:WMS_LICENSE_PLATE_NUMBERS_V, status:VALID, product: WMS - Warehouse Management , description: Detailed view of WMS_LICENSE_PLATE_NUMBERS, including detailed information on relations between lpns , implementation_dba_data: APPS.WMS_LICENSE_PLATE_NUMBERS_V ,
-
VIEW: APPS.WMS_LICENSE_PLATE_NUMBERS_V
12.2.2
-
View: WMS_LICENSE_PLATE_NUMBERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_LICENSE_PLATE_NUMBERS_V, object_name:WMS_LICENSE_PLATE_NUMBERS_V, status:VALID, product: WMS - Warehouse Management , description: Detailed view of WMS_LICENSE_PLATE_NUMBERS, including detailed information on relations between lpns , implementation_dba_data: APPS.WMS_LICENSE_PLATE_NUMBERS_V ,
-
VIEW: APPS.WMS_LPN_CONTENTS_LOT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_LPN_CONTENTS_LOT_V, object_name:WMS_LPN_CONTENTS_LOT_V, status:VALID,
-
VIEW: APPS.WMS_LPN_CONTENTS_SERIAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_LPN_CONTENTS_SERIAL_V, object_name:WMS_LPN_CONTENTS_SERIAL_V, status:VALID,
-
VIEW: APPS.WMS_LPN_CONTENTS_LOT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_LPN_CONTENTS_LOT_V, object_name:WMS_LPN_CONTENTS_LOT_V, status:VALID,
-
VIEW: APPS.WMS_LPN_CONTENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_LPN_CONTENTS_V, object_name:WMS_LPN_CONTENTS_V, status:VALID,
-
VIEW: WMS.WMS_LPN_HISTORIES#
12.2.2
owner:WMS, object_type:VIEW, object_name:WMS_LPN_HISTORIES#, status:VALID,
-
VIEW: APPS.WMS_LPN_CONTENTS_SERIAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_LPN_CONTENTS_SERIAL_V, object_name:WMS_LPN_CONTENTS_SERIAL_V, status:VALID,
-
View: WMS_LPN_CONTENTS_SERIAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_LPN_CONTENTS_SERIAL_V, object_name:WMS_LPN_CONTENTS_SERIAL_V, status:VALID, product: WMS - Warehouse Management , description: View of container contents ( only serial controlled items) , implementation_dba_data: APPS.WMS_LPN_CONTENTS_SERIAL_V ,
-
VIEW: APPS.WMS_LPN_CONTENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_LPN_CONTENTS_V, object_name:WMS_LPN_CONTENTS_V, status:VALID,
-
View: WMS_LPN_CONTENTS_SERIAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_LPN_CONTENTS_SERIAL_V, object_name:WMS_LPN_CONTENTS_SERIAL_V, status:VALID, product: WMS - Warehouse Management , description: View of container contents ( only serial controlled items) , implementation_dba_data: APPS.WMS_LPN_CONTENTS_SERIAL_V ,
-
View: WMS_LPN_CONTENTS_LOT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_LPN_CONTENTS_LOT_V, object_name:WMS_LPN_CONTENTS_LOT_V, status:VALID, product: WMS - Warehouse Management , description: View of container contents ( only lot controlled items) , implementation_dba_data: APPS.WMS_LPN_CONTENTS_LOT_V ,
-
View: WMS_LPN_CONTENTS_LOT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_LPN_CONTENTS_LOT_V, object_name:WMS_LPN_CONTENTS_LOT_V, status:VALID, product: WMS - Warehouse Management , description: View of container contents ( only lot controlled items) , implementation_dba_data: APPS.WMS_LPN_CONTENTS_LOT_V ,
-
VIEW: APPS.WMS_LPN_CONTENTS_DETAIL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_LPN_CONTENTS_DETAIL_V, object_name:WMS_LPN_CONTENTS_DETAIL_V, status:VALID,
-
TABLE: WMS.WMS_LPN_HISTORIES
12.2.2
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_LPN_HISTORIES, object_name:WMS_LPN_HISTORIES, status:VALID,
-
TABLE: WMS.WMS_LPN_HISTORIES
12.1.1
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_LPN_HISTORIES, object_name:WMS_LPN_HISTORIES, status:VALID,
-
VIEW: APPS.WMS_LICENSE_PLATE_NUMBERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_LICENSE_PLATE_NUMBERS_V, object_name:WMS_LICENSE_PLATE_NUMBERS_V, status:VALID,
-
VIEW: APPS.WMS_LPN_CONTENTS_DETAIL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_LPN_CONTENTS_DETAIL_V, object_name:WMS_LPN_CONTENTS_DETAIL_V, status:VALID,
-
VIEW: APPS.WMS_LICENSE_PLATE_NUMBERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_LICENSE_PLATE_NUMBERS_V, object_name:WMS_LICENSE_PLATE_NUMBERS_V, status:VALID,
-
APPS.WMS_CONTAINER_PUB SQL Statements
12.2.2
-
APPS.WMS_CONTAINER_PUB SQL Statements
12.1.1
-
View: WMS_LPN_CONTENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_LPN_CONTENTS_V, object_name:WMS_LPN_CONTENTS_V, status:VALID, product: WMS - Warehouse Management , description: Summary view of container contents ( includes summary of lot and serialized controlled items ) , implementation_dba_data: APPS.WMS_LPN_CONTENTS_V ,
-
View: WMS_LPN_CONTENTS_DETAIL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_LPN_CONTENTS_DETAIL_V, object_name:WMS_LPN_CONTENTS_DETAIL_V, status:VALID, product: WMS - Warehouse Management , description: View of container contents ( includes detail lot and serial controlled items) , implementation_dba_data: APPS.WMS_LPN_CONTENTS_DETAIL_V ,
-
View: WMS_LPN_CONTENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_LPN_CONTENTS_V, object_name:WMS_LPN_CONTENTS_V, status:VALID, product: WMS - Warehouse Management , description: Summary view of container contents ( includes summary of lot and serialized controlled items ) , implementation_dba_data: APPS.WMS_LPN_CONTENTS_V ,
-
View: WMS_LPN_CONTENTS_DETAIL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_LPN_CONTENTS_DETAIL_V, object_name:WMS_LPN_CONTENTS_DETAIL_V, status:VALID, product: WMS - Warehouse Management , description: View of container contents ( includes detail lot and serial controlled items) , implementation_dba_data: APPS.WMS_LPN_CONTENTS_DETAIL_V ,
-
APPS.WMS_CONTAINER_PUB dependencies on WMS_LPN_HISTORIES_S
12.2.2
-
APPS.WMS_CONTAINER_PUB dependencies on WMS_LPN_HISTORIES_S
12.1.1
-
APPS.WMS_CONTAINER_PUB dependencies on WMS_LPN_HISTORIES
12.1.1
-
APPS.WMS_CONTAINER_PUB dependencies on WMS_LPN_HISTORIES
12.2.2
-
APPS.WMS_CONTAINER_PUB dependencies on WMS_LPN_CONTENTS
12.1.1
-
APPS.WMS_CONTAINER_PUB dependencies on WMS_LPN_CONTENTS
12.2.2
-
APPS.WMS_CONTAINER_PUB dependencies on WMS_LICENSE_PLATE_NUMBERS
12.2.2
-
APPS.WMS_CONTAINER_PUB dependencies on WMS_LICENSE_PLATE_NUMBERS
12.1.1
-
PACKAGE BODY: APPS.WMS_CONTAINER_PUB
12.1.1
-
PACKAGE BODY: APPS.WMS_CONTAINER_PUB
12.2.2
-
eTRM - WMS Tables and Views
12.2.2
-
eTRM - WMS Tables and Views
12.1.1