Results for “wms_label_requests”

50+ results




AI-generated from documented ETRM metadata — verify critical details on the linked pages.

Overview

WMS_LABEL_REQUESTS is a Warehouse Management (WMS) transactional table in the Oracle E-Business Suite, owned by the WMS schema. It stores information about label printing requests generated during warehouse operations such as receiving, put-away, picking, packing, shipping, and inventory movements. Each row captures the context of a single label request — what item, lot, serial, LPN, or delivery it pertains to — along with the printer destination and the label format that should be applied.

A defining characteristic of this table is its role as the input to the WMS rules engine. Records in WMS_LABEL_REQUESTS are evaluated against label format rules, and the engine uses the request attributes combined with rule configuration to resolve which label format applies. This makes the table both a transactional audit trail of label activity and a driver of runtime decision logic.

Applying Data Vault modeling heuristics to the documented foreign-key structure, WMS_LABEL_REQUESTS behaves as a link entity. It connects multiple business keys — organization, inventory item, label format, delivery, customer item, and label history — around a request event, rather than acting as a pure hub or a descriptive satellite.

Key Information Stored

The table contains 55 documented columns. The most significant are summarized below.

Common Use Cases and Queries

Typical use cases include label audit reporting, troubleshooting misrouted or misformatted labels, and reconstructing which format rule fired for a given request. Analysts frequently join the table to WMS_LABEL_FORMATS to confirm the format applied and to MTL_PARAMETERS to filter by organization.

  • Label request by item and organization: SELECT label_request_id, inventory_item_id, label_format_id, printer_name FROM wms_label_requests WHERE organization_id = :org AND inventory_item_id = :item;
  • Recent activity window: filter on CREATION_DATE or LAST_UPDATE_DATE to isolate label volume in a shift or day.
  • Rule resolution trace: select RULE_ID, RULE_WEIGHT, STRATEGY_ID, LABEL_FORMAT_ID to explain why a given format was chosen.
  • Outbound shipment labels: join DELIVERY_ID and PACKAGE_ID to delivery and shipping tables.
  • Archive reconciliation: compare against WMS_LABEL_REQUESTS_HIST on LABEL_REQUEST_ID.

Related Objects

The documented relationships identify the following primary dependencies and dependents.

  • MTL_PARAMETERS — joined on ORGANIZATION_ID; supplies organization definition.
  • WMS_LABEL_FORMATS — joined on LABEL_FORMAT_ID; defines available label formats.
  • GMO_LABEL_HISTORY — joined on LABEL_ID; records label output history.
  • MTL_CUSTOMER_ITEMS — joined on CUSTOMER_ITEM_ID; customer item cross-reference.
  • WMS_LABEL_REQUESTS_HIST — historical/archival table referencing LABEL_REQUEST_ID.
  • MTL_SYSTEM_ITEMS_B, MTL_ITEM_LOCATIONS, WSH_DELIVERY_DETAILS, and WMS_LABEL_PRINT_REQUESTS — commonly joined via INVENTORY_ITEM_ID, LOCATOR_ID, DELIVERY_DETAIL_ID, and label printing APIs to complete end-to-end label reporting.