Search Results ship_to_contact
Overview
APPS.WMS_WP_LINES_GTMP_V is a reporting and integration view in the Oracle Warehouse Management (WMS) module of Oracle E-Business Suite, available in releases 12.1.1 and 12.2.2. The view presents warehouse planning line detail — the row-level information associated with wave planning, pick release, and shipment execution — in a denormalized, consumer-friendly format. Rather than requiring callers to join the global temporary table WMS_WP_LINES_GTMP against order, item, customer, and shipment masters, the view exposes a broad, pre-flattened column set suitable for direct consumption by reports, concurrent programs, interfaces, and diagnostic queries. Its naming convention (the _GTMP suffix and _V extension) indicates that it is a view layered over a global temporary table whose contents are session-scoped and typically populated by WMS planning or wave-processing logic during a given run.
Underlying Base Objects
The view is defined over a single documented base object: the synonym WMS_WP_LINES_GTMP. The view text is a straight projection — SELECT with an explicit column list and no joins, filters, or transformation logic — so the view adds no business logic of its own. It functions purely as a stable, readable interface over the temporary table. Because the base object is a global temporary table, the data returned is visible only within the session or transaction context that populated it; the view is therefore most meaningful while a WMS wave-planning or pick/ship process is active, or within a program that has already seeded the temporary table. Any column list changes to the temporary table will propagate to the view and should be validated when applying patches or upgrades.
Key Columns
The column list is extensive and covers the full lifecycle of a warehouse line. Notable groups include:
- Shipment quantity columns: SHIPPED_QTY, DELIVERED_QTY, REQUESTED_QTY, SOURCE_REQUESTED_QTY, and the secondary-UOM counterparts SECONDARY_SHIPPED_QTY, SECONDARY_DELIVERED_QTY, SECONDARY_REQUESTED_QTY, and SECONDARY_SRC_REQ_QTY. These are the fields most commonly referenced when users search for shipped_qty, since they carry the actual quantity shipped versus planned or requested.
- Fill-rate metrics: PLANNED_FILL_RATE, RELEASE_FILL_RATE, and PICK_FILL_RATE provide planning-versus-execution efficiency indicators.
- Line status and progress: LINE_STATUS, LINE_PROGRESS, and EXCEPTION_ID identify where the line stands and whether an exception was raised.
- Order and delivery identifiers: ORDER_NUMBER, SOURCE_LINE_NUMBER, DELIVERY, DELIVER_TO, SHIP_TO, WAVE_FIRMED_FLAG, REMOVE_FROM_WAVE_FLAG, TRIP, and LOADING_SEQUENCE.
- Item and logistics attributes: ITEM, ITEM_DESCRIPTION, REVISION, LOT, LOCATOR, BATCH, GROSS_WEIGHT, NET_WEIGHT, TARE_WEIGHT, VOLUME, and their UOM columns.
- Dates and parties: DATE_REQUESTED, DATE_SCHEDULED, EARLIEST_SHIP_DATE, EARLIEST_DELIVERY_DATE, LATEST_DELIVERY_DATE, CARRIER, SHIP_METHOD, and CUSTOMER.
- Diagnostics: MESSAGE carries a status or error message for the line.
Common Use Cases and Queries
Typical scenarios include reconciling shipped quantities against requested quantities during wave release, investigating short-ships or pick exceptions, and feeding downstream shipment-confirmation interfaces. A representative query retrieving shipped quantity per order line is:
SELECT order_number, source_line_number, item, requested_qty, shipped_qty, delivered_qty, line_status FROM apps.wms_wp_lines_gtmp_v WHERE shipped_qty > 0;SELECT order_number, item, (shipped_qty / NULLIF(requested_qty,0)) AS ship_ratio FROM apps.wms_wp_lines_gtmp_v WHERE exception_id IS NOT NULL;— useful for exception analysis and fill-rate review.
Because the underlying object is a session-scoped global temporary table, these queries return rows only when executed in the session that populated the table or within the WMS process that owns the data.
-
VIEW: APPS.WMS_WP_LINES_GTMP_V
12.2.2
-
VIEW: APPS.OE_CUSTOMER_SITE_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUSTOMER_SITE_CONTACTS_V, object_name:OE_CUSTOMER_SITE_CONTACTS_V, status:VALID,
-
VIEW: APPS.OE_CUSTOMER_SITE_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUSTOMER_SITE_CONTACTS_V, object_name:OE_CUSTOMER_SITE_CONTACTS_V, status:VALID,
-
VIEW: APPS.OE_CUST_SITE_PHONE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUST_SITE_PHONE_V, object_name:OE_CUST_SITE_PHONE_V, status:VALID,
-
VIEW: APPS.OE_CUST_SITE_PHONE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUST_SITE_PHONE_V, object_name:OE_CUST_SITE_PHONE_V, status:VALID,
-
View: OE_CUST_SITE_PHONE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUST_SITE_PHONE_V, object_name:OE_CUST_SITE_PHONE_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_CUST_SITE_PHONE_V ,
-
View: OE_CUST_SITE_PHONE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUST_SITE_PHONE_V, object_name:OE_CUST_SITE_PHONE_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_CUST_SITE_PHONE_V ,
-
VIEW: APPS.WMS_WP_LINES_GTMP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_WP_LINES_GTMP_V, object_name:WMS_WP_LINES_GTMP_V, status:VALID,
-
View: WMS_WP_LINES_GTMP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_WP_LINES_GTMP_V, object_name:WMS_WP_LINES_GTMP_V, status:VALID, product: WMS - Warehouse Management , implementation_dba_data: APPS.WMS_WP_LINES_GTMP_V ,
-
VIEW: APPS.OE_CUST_SITE_PHONE_V
12.1.1
-
VIEW: APPS.OE_CUST_SITE_PHONE_V
12.2.2
-
VIEW: APPS.WMS_WP_WWB_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_WP_WWB_LINES_V, object_name:WMS_WP_WWB_LINES_V, status:VALID,
-
TABLE: WMS.WMS_WP_LINES_GTMP
12.2.2
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_WP_LINES_GTMP, object_name:WMS_WP_LINES_GTMP, status:VALID,
-
View: OE_CUSTOMER_SITE_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUSTOMER_SITE_CONTACTS_V, object_name:OE_CUSTOMER_SITE_CONTACTS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_CUSTOMER_SITE_CONTACTS_V ,
-
View: OE_CUSTOMER_SITE_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUSTOMER_SITE_CONTACTS_V, object_name:OE_CUSTOMER_SITE_CONTACTS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_CUSTOMER_SITE_CONTACTS_V ,
-
Lookup Type: OM_HEADER_TO_LINE_CASCADE
12.1.1
product: ONT - Order Management , meaning: OM: Header To Line Cascade Attributes , description: To decide whether the cascading feature for a attribute is turned on or not ,
-
Lookup Type: OM_HEADER_TO_LINE_CASCADE
12.2.2
product: ONT - Order Management , meaning: OM: Header To Line Cascade Attributes , description: To decide whether the cascading feature for a attribute is turned on or not ,
-
VIEW: APPS.CS_SYSTEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SYSTEMS_V, object_name:CS_SYSTEMS_V, status:VALID,
-
VIEW: APPS.CS_SYSTEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SYSTEMS_V, object_name:CS_SYSTEMS_V, status:VALID,
-
VIEW: CS.CS_INCIDENTS_ALL_B#
12.2.2
-
VIEW: APPS.OEFV_ORDER_HEADERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEFV_ORDER_HEADERS, object_name:OEFV_ORDER_HEADERS, status:VALID,
-
View: CSI_SYSTEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_SYSTEMS_V, object_name:CSI_SYSTEMS_V, status:VALID, product: CSI - Install Base , description: System Details with foreign key resolutions. , implementation_dba_data: APPS.CSI_SYSTEMS_V ,
-
VIEW: APPS.CSI_SYSTEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_SYSTEMS_V, object_name:CSI_SYSTEMS_V, status:VALID,
-
VIEW: APPS.OEFV_ORDER_HEADERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEFV_ORDER_HEADERS, object_name:OEFV_ORDER_HEADERS, status:VALID,
-
View: CS_SYSTEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SYSTEMS_V, object_name:CS_SYSTEMS_V, status:VALID, product: CS - Service , implementation_dba_data: APPS.CS_SYSTEMS_V ,
-
View: CSI_SYSTEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_SYSTEMS_V, object_name:CSI_SYSTEMS_V, status:VALID, product: CSI - Install Base , description: System Details with foreign key resolutions. , implementation_dba_data: APPS.CSI_SYSTEMS_V ,
-
View: CS_SYSTEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SYSTEMS_V, object_name:CS_SYSTEMS_V, status:VALID, product: CS - Service , implementation_dba_data: APPS.CS_SYSTEMS_V ,
-
VIEW: APPS.CSI_SYSTEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_SYSTEMS_V, object_name:CSI_SYSTEMS_V, status:VALID,
-
VIEW: ONT.OE_HEADER_ACKS#
12.2.2
-
VIEW: APPS.OE_CUSTOMER_SITE_CONTACTS_V
12.2.2
-
VIEW: APPS.OE_CUSTOMER_SITE_CONTACTS_V
12.1.1
-
VIEW: ONT.OE_HEADERS_IFACE_ALL#
12.2.2
-
View: OEFV_SALES_ORDERS
12.1.1
product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: OEFV_SALES_ORDERS
12.2.2
product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: OEFV_ORDER_HEADERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEFV_ORDER_HEADERS, object_name:OEFV_ORDER_HEADERS, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OEFV_ORDER_HEADERS ,
-
VIEW: APPS.CSI_SYSTEMS_V
12.1.1
-
VIEW: APPS.CSI_SYSTEMS_V
12.2.2
-
View: OE_ORDER_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_HEADERS_V, object_name:OE_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , description: View for Order header used in sales order form. , implementation_dba_data: APPS.OE_ORDER_HEADERS_V ,
-
View: OEFV_ORDER_HEADERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEFV_ORDER_HEADERS, object_name:OEFV_ORDER_HEADERS, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OEFV_ORDER_HEADERS ,
-
View: OE_ORDER_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_HEADERS_V, object_name:OE_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , description: View for Order header used in sales order form. , implementation_dba_data: APPS.OE_ORDER_HEADERS_V ,
-
VIEW: ONT.OE_LINES_IFACE_ALL#
12.2.2
-
VIEW: APPS.CS_SYSTEMS_V
12.2.2
-
View: OE_ORDER_HEADERS_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_HEADERS_HIST_V, object_name:OE_ORDER_HEADERS_HIST_V, status:VALID, product: ONT - Order Management , description: This view is used to retrieve the Order History. This is used by the history form. , implementation_dba_data: APPS.OE_ORDER_HEADERS_HIST_V ,
-
View: OE_ORDER_HEADERS_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_HEADERS_HIST_V, object_name:OE_ORDER_HEADERS_HIST_V, status:VALID, product: ONT - Order Management , description: This view is used to retrieve the Order History. This is used by the history form. , implementation_dba_data: APPS.OE_ORDER_HEADERS_HIST_V ,
-
VIEW: APPS.CS_SYSTEMS_V
12.1.1
-
View: OE_SCH_ORDER_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_SCH_ORDER_LINES_V, object_name:OE_SCH_ORDER_LINES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_SCH_ORDER_LINES_V ,
-
View: OE_SCH_ORDER_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_SCH_ORDER_LINES_V, object_name:OE_SCH_ORDER_LINES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_SCH_ORDER_LINES_V ,
-
VIEW: APPS.OE_LINE_ACKS_V
12.1.1
-
View: OE_SCH_RSV_SET_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_SCH_RSV_SET_LINES_V, object_name:OE_SCH_RSV_SET_LINES_V, status:VALID, product: ONT - Order Management , description: View used by the new form for scheduling across orders with Reservation set information , implementation_dba_data: APPS.OE_SCH_RSV_SET_LINES_V ,
-
VIEW: APPS.IBE_ORDER_LINE_DTL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_ORDER_LINE_DTL_V, object_name:IBE_ORDER_LINE_DTL_V, status:VALID,