Search Results cost_group_name
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_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: MTL_FISCAL_CAT_ACCOUNTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_FISCAL_CAT_ACCOUNTS_V, object_name:MTL_FISCAL_CAT_ACCOUNTS_V, status:VALID, product: INV - Inventory , description: PAC Category Accounts , implementation_dba_data: APPS.MTL_FISCAL_CAT_ACCOUNTS_V ,
-
View: CST_MGD_LIFO_PERIODS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_MGD_LIFO_PERIODS_V, object_name:CST_MGD_LIFO_PERIODS_V, status:VALID, product: BOM - Bills of Material , description: View to retrieve period information from pac period table restricted by mfg_lookups.lookup_type = CST_PAC_PERIOD_STATUS mfg_lookups.lookup_code = DECODE(pp.open_flag,'Y',2,'N',4,3) , implementation_dba_data: APPS.CST_MGD_LIFO_PERIODS_V ,
-
View: MTL_FISCAL_CAT_ACCOUNTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_FISCAL_CAT_ACCOUNTS_V, object_name:MTL_FISCAL_CAT_ACCOUNTS_V, status:VALID, product: INV - Inventory , description: PAC Category Accounts , implementation_dba_data: APPS.MTL_FISCAL_CAT_ACCOUNTS_V ,
-
View: CST_MGD_LIFO_PERIODS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_MGD_LIFO_PERIODS_V, object_name:CST_MGD_LIFO_PERIODS_V, status:VALID, product: BOM - Bills of Material , description: View to retrieve period information from pac period table restricted by mfg_lookups.lookup_type = CST_PAC_PERIOD_STATUS mfg_lookups.lookup_code = DECODE(pp.open_flag,'Y',2,'N',4,3) , implementation_dba_data: APPS.CST_MGD_LIFO_PERIODS_V ,
-
VIEW: APPS.CST_MGD_LIFO_PERIODS_V
12.1.1
-
VIEW: APPS.MTL_FISCAL_CAT_ACCOUNTS_V
12.1.1
-
View: MTL_PHYSICAL_ADJUSTMENTS_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_PHYSICAL_ADJUSTMENTS_VIEW, object_name:MTL_PHYSICAL_ADJUSTMENTS_VIEW, status:VALID, product: INV - Inventory , description: Physical inventory adjustments created by Item Counts. , implementation_dba_data: APPS.MTL_PHYSICAL_ADJUSTMENTS_VIEW ,
-
VIEW: APPS.CSTFV_COST_GROUP_ASSIGNMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_COST_GROUP_ASSIGNMENTS, object_name:CSTFV_COST_GROUP_ASSIGNMENTS, status:VALID,
-
VIEW: APPS.CSTFV_COST_GROUP_ASSIGNMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_COST_GROUP_ASSIGNMENTS, object_name:CSTFV_COST_GROUP_ASSIGNMENTS, status:VALID,
-
VIEW: APPS.WMS_LPN_CONTENTS_DETAIL_V
12.2.2
-
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: APPS.CSTBV_COST_GROUP_ASSIGNMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_COST_GROUP_ASSIGNMENTS, object_name:CSTBV_COST_GROUP_ASSIGNMENTS, status:VALID,
-
VIEW: APPS.WMS_LPN_CONTENTS_DETAIL_V
12.1.1
-
VIEW: APPS.CSTBV_COST_GROUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_COST_GROUPS, object_name:CSTBV_COST_GROUPS, status:VALID,
-
View: MTL_PHYSICAL_ADJUSTMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_PHYSICAL_ADJUSTMENTS_V, object_name:MTL_PHYSICAL_ADJUSTMENTS_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_PHYSICAL_ADJUSTMENTS_V ,
-
VIEW: APPS.CSTBV_PAC_ITEM_COST_DETAILS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_PAC_ITEM_COST_DETAILS, object_name:CSTBV_PAC_ITEM_COST_DETAILS, status:VALID,
-
VIEW: APPS.CSTBV_PAC_ITEM_COST_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_PAC_ITEM_COST_DETAILS, object_name:CSTBV_PAC_ITEM_COST_DETAILS, status:VALID,
-
VIEW: APPS.CSTBV_COST_GROUP_ASSIGNMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_COST_GROUP_ASSIGNMENTS, object_name:CSTBV_COST_GROUP_ASSIGNMENTS, status:VALID,
-
View: MTL_PHYSICAL_ADJUSTMENTS_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_PHYSICAL_ADJUSTMENTS_VIEW, object_name:MTL_PHYSICAL_ADJUSTMENTS_VIEW, status:VALID, product: INV - Inventory , description: Physical inventory adjustments created by Item Counts. , implementation_dba_data: APPS.MTL_PHYSICAL_ADJUSTMENTS_VIEW ,
-
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 ,
-
VIEW: APPS.CSTBV_RCV_ACQ_COSTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_RCV_ACQ_COSTS, object_name:CSTBV_RCV_ACQ_COSTS, status:VALID,
-
VIEW: APPS.CSTBV_RCV_ACQ_COSTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_RCV_ACQ_COSTS, object_name:CSTBV_RCV_ACQ_COSTS, status:VALID,
-
VIEW: APPS.CSTBV_PAC_QUANTITY_LAYERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_PAC_QUANTITY_LAYERS, object_name:CSTBV_PAC_QUANTITY_LAYERS, status:VALID,
-
VIEW: APPS.CSTBV_PRODUCT_LINE_ACCOUNT
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_PRODUCT_LINE_ACCOUNT, object_name:CSTBV_PRODUCT_LINE_ACCOUNT, status:VALID,
-
VIEW: APPS.CSTBV_PAC_ITEM_COSTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_PAC_ITEM_COSTS, object_name:CSTBV_PAC_ITEM_COSTS, status:VALID,
-
VIEW: INV.MTL_CC_ENTRIES_INTERFACE#
12.2.2
-
View: MTL_PHYSICAL_ADJUSTMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_PHYSICAL_ADJUSTMENTS_V, object_name:MTL_PHYSICAL_ADJUSTMENTS_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_PHYSICAL_ADJUSTMENTS_V ,
-
VIEW: APPS.CSTBV_COST_GROUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_COST_GROUPS, object_name:CSTBV_COST_GROUPS, status:VALID,
-
VIEW: APPS.MTL_FISCAL_CAT_ACCOUNTS_V
12.2.2
-
VIEW: APPS.CST_MGD_LIFO_PERIODS_V
12.2.2
-
VIEW: APPS.CSTFV_PAC_QUANTITY_LAYERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_PAC_QUANTITY_LAYERS, object_name:CSTFV_PAC_QUANTITY_LAYERS, status:VALID,
-
View: MTL_PHYSICAL_INVENTORY_TAGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_PHYSICAL_INVENTORY_TAGS_V, object_name:MTL_PHYSICAL_INVENTORY_TAGS_V, status:VALID, product: INV - Inventory , description: View based on table MTL_PHYSICAL_INVENTORY_TAGS. Has information for all the Physical Inventory tags. , implementation_dba_data: APPS.MTL_PHYSICAL_INVENTORY_TAGS_V ,
-
View: MTL_PHYSICAL_INVENTORY_TAGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_PHYSICAL_INVENTORY_TAGS_V, object_name:MTL_PHYSICAL_INVENTORY_TAGS_V, status:VALID, product: INV - Inventory , description: View based on table MTL_PHYSICAL_INVENTORY_TAGS. Has information for all the Physical Inventory tags. , implementation_dba_data: APPS.MTL_PHYSICAL_INVENTORY_TAGS_V ,
-
VIEW: APPS.CSTBV_RCV_ACQ_COST_DETAILS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_RCV_ACQ_COST_DETAILS, object_name:CSTBV_RCV_ACQ_COST_DETAILS, status:VALID,
-
VIEW: APPS.CSTFV_RCV_ACQ_COSTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_RCV_ACQ_COSTS, object_name:CSTFV_RCV_ACQ_COSTS, status:VALID,
-
VIEW: APPS.CSTBV_PAC_QUANTITY_LAYERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_PAC_QUANTITY_LAYERS, object_name:CSTBV_PAC_QUANTITY_LAYERS, status:VALID,
-
VIEW: APPS.CSTBV_PRODUCT_LINE_ACCOUNT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_PRODUCT_LINE_ACCOUNT, object_name:CSTBV_PRODUCT_LINE_ACCOUNT, status:VALID,
-
VIEW: APPS.CSTBV_PAC_ITEM_COSTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_PAC_ITEM_COSTS, object_name:CSTBV_PAC_ITEM_COSTS, status:VALID,
-
VIEW: APPS.CSTFV_RCV_ACQ_COSTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_RCV_ACQ_COSTS, object_name:CSTFV_RCV_ACQ_COSTS, status:VALID,
-
VIEW: APPS.CSTBV_PAC_PERIOD_BALANCES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_PAC_PERIOD_BALANCES, object_name:CSTBV_PAC_PERIOD_BALANCES, status:VALID,
-
VIEW: APPS.CSTFV_PAC_QUANTITY_LAYERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_PAC_QUANTITY_LAYERS, object_name:CSTFV_PAC_QUANTITY_LAYERS, status:VALID,
-
VIEW: APPS.CSTBV_RCV_ACQ_COST_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_RCV_ACQ_COST_DETAILS, object_name:CSTBV_RCV_ACQ_COST_DETAILS, status:VALID,
-
VIEW: APPS.MTL_PHYSICAL_ADJUSTMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_PHYSICAL_ADJUSTMENTS_V, object_name:MTL_PHYSICAL_ADJUSTMENTS_V, status:VALID,
-
VIEW: APPS.CSTFV_PAC_ITEM_COST_DETAILS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_PAC_ITEM_COST_DETAILS, object_name:CSTFV_PAC_ITEM_COST_DETAILS, status:VALID,
-
VIEW: APPS.MTL_PHYSICAL_ADJUSTMENTS_V
12.1.1
-
VIEW: APPS.MTL_PHYSICAL_ADJUSTMENTS_VIEW
12.1.1