Search Results warehouse_id
Overview
WSH_BIS_SHIPPED_BY_DAY_V is a Business Intelligence (BIS) reporting view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It belongs to the Order Entry (OE) product family, though its name and underlying objects indicate it draws from Oracle Shipping Execution (WSH) data structures. The view aggregates shipping fill-rate metrics by warehouse and by day, providing a pre-summarized result set that supports operational reporting on order fulfillment performance.
Its defined purpose is to answer two related questions per warehouse-day bucket: how many scheduled shipments were due, and how many of those were actually filled. Because the aggregation is performed inside the view, consumers avoid the cost of scanning the granular fill-rate detail and can query a compact, ready-to-use result set. The view is read-only and is typically consumed by BIS reports, custom dashboards, Discoverer workbooks, or ad hoc SQL run against the APPS schema.
Underlying Base Objects
The only documented base object referenced by this view is another view: WSH_BIS_FILL_RATE_V. WSH_BIS_SHIPPED_BY_DAY_V is therefore a two-layer construct — a summarization layer built directly on top of the fill-rate detail view. The definition groups the detail rows by the truncated schedule date and by warehouse, then derives the aggregate counts. Because both layers are views rather than tables, no data is physically stored; every query executes the full definition at runtime, meaning performance depends on the base tables that ultimately feed WSH_BIS_FILL_RATE_V.
Key Columns
- WAREHOUSE_ID — The warehouse (organization) identifier. This is the primary grouping dimension and the column most frequently used in filters, since reporting is almost always scoped to one or more specific warehouses. This is the column referenced in the user's search term.
- DAY — The truncated SCHEDULE_DATE value, representing the day on which shipments were scheduled. It is the second grouping dimension.
- NUMBER_DUE — The total count of rows in the underlying detail view for that warehouse-day combination, i.e., the number of shipments scheduled.
- NUMBER_FILLED — The count of records where the truncated schedule date equals the truncated date closed, indicating shipments that were completed on their scheduled day.
Common Use Cases and Queries
Typical scenarios include measuring daily fill-rate performance per warehouse, trend analysis of shipped-versus-due volume, and exception reporting for warehouses with low fill rates. A fill-rate percentage is easily derived as NUMBER_FILLED divided by NUMBER_DUE. Sample query:
SELECT warehouse_id, day, number_filled, number_due, ROUND(number_filled / NULLIF(number_due,0) * 100, 2) fill_pct FROM apps.wsh_bis_shipped_by_day_v WHERE warehouse_id = :p_warehouse ORDER BY day DESC;SELECT warehouse_id, SUM(number_filled) total_filled, SUM(number_due) total_due FROM apps.wsh_bis_shipped_by_day_v WHERE day BETWEEN :from_date AND :to_date GROUP BY warehouse_id;
-
View: WSH_BIS_SHIPPED_BY_DAY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSH_BIS_SHIPPED_BY_DAY_V, object_name:WSH_BIS_SHIPPED_BY_DAY_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.WSH_BIS_SHIPPED_BY_DAY_V ,
-
View: WSH_BIS_FILL_BY_DAY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSH_BIS_FILL_BY_DAY_V, object_name:WSH_BIS_FILL_BY_DAY_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.WSH_BIS_FILL_BY_DAY_V ,
-
View: WSH_BIS_SHIPPED_BY_DAY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSH_BIS_SHIPPED_BY_DAY_V, object_name:WSH_BIS_SHIPPED_BY_DAY_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.WSH_BIS_SHIPPED_BY_DAY_V ,
-
View: WSH_BIS_FILL_BY_DAY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSH_BIS_FILL_BY_DAY_V, object_name:WSH_BIS_FILL_BY_DAY_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.WSH_BIS_FILL_BY_DAY_V ,
-
View: WSH_BIS_BACKORDERED_SUM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSH_BIS_BACKORDERED_SUM_V, object_name:WSH_BIS_BACKORDERED_SUM_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.WSH_BIS_BACKORDERED_SUM_V ,
-
View: WSH_BIS_BACKORDERED_SUM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSH_BIS_BACKORDERED_SUM_V, object_name:WSH_BIS_BACKORDERED_SUM_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.WSH_BIS_BACKORDERED_SUM_V ,
-
View: OEBV_SALES_ORDER_TYPES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.OEBV_SALES_ORDER_TYPES ONT.OEBV_SALES_ORDER_TYPES, object_name:OEBV_SALES_ORDER_TYPES, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.OEBV_SALES_ORDER_TYPES ,
-
View: OEBV_SALES_ORDER_TYPES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.OEBV_SALES_ORDER_TYPES ONT.OEBV_SALES_ORDER_TYPES, object_name:OEBV_SALES_ORDER_TYPES, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.OEBV_SALES_ORDER_TYPES ,
-
View: WSH_BIS_FILL_RATE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSH_BIS_FILL_RATE_V WSH.WSH_BIS_FILL_RATE_V, object_name:WSH_BIS_FILL_RATE_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.WSH_BIS_FILL_RATE_V ,
-
View: WSH_BIS_WAREHOUSE_DOCS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSH_BIS_WAREHOUSE_DOCS_V, object_name:WSH_BIS_WAREHOUSE_DOCS_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.WSH_BIS_WAREHOUSE_DOCS_V ,
-
View: WSH_BIS_WAREHOUSE_DOCS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSH_BIS_WAREHOUSE_DOCS_V, object_name:WSH_BIS_WAREHOUSE_DOCS_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.WSH_BIS_WAREHOUSE_DOCS_V ,
-
View: WSH_BIS_FILL_RATE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSH_BIS_FILL_RATE_V WSH.WSH_BIS_FILL_RATE_V, object_name:WSH_BIS_FILL_RATE_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.WSH_BIS_FILL_RATE_V ,
-
View: SO_PICKING_HEADERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_PICKING_HEADERS, object_name:SO_PICKING_HEADERS, status:VALID, product: OE - Order Entry , description: 10SC ONLY , implementation_dba_data: APPS.SO_PICKING_HEADERS ,
-
View: SO_PICKING_HEADERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_PICKING_HEADERS, object_name:SO_PICKING_HEADERS, status:VALID, product: OE - Order Entry , description: 10SC ONLY , implementation_dba_data: APPS.SO_PICKING_HEADERS ,
-
View: SO_PICKING_BATCHES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_PICKING_BATCHES, object_name:SO_PICKING_BATCHES, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_PICKING_BATCHES ,
-
View: SO_PICKING_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_PICKING_LINES, object_name:SO_PICKING_LINES, status:VALID, product: OE - Order Entry , description: 10SC ONLY , implementation_dba_data: APPS.SO_PICKING_LINES ,
-
View: SO_PICKING_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_PICKING_LINES, object_name:SO_PICKING_LINES, status:VALID, product: OE - Order Entry , description: 10SC ONLY , implementation_dba_data: APPS.SO_PICKING_LINES ,
-
View: SO_ORDER_TYPES_115
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_ORDER_TYPES_115, object_name:SO_ORDER_TYPES_115, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_ORDER_TYPES_115 ,
-
View: SO_ORDER_TYPES_115
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_ORDER_TYPES_115, object_name:SO_ORDER_TYPES_115, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_ORDER_TYPES_115 ,
-
View: SO_PICKING_BATCHES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_PICKING_BATCHES, object_name:SO_PICKING_BATCHES, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_PICKING_BATCHES ,
-
View: SO_DELIVERIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_DELIVERIES_V, object_name:SO_DELIVERIES_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_DELIVERIES_V ,
-
View: SO_DELIVERIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_DELIVERIES_V, object_name:SO_DELIVERIES_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_DELIVERIES_V ,
-
View: WSH_PICKING_DETAILS_INTERFACE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSH_PICKING_DETAILS_INTERFACE, object_name:WSH_PICKING_DETAILS_INTERFACE, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.WSH_PICKING_DETAILS_INTERFACE ,
-
View: WSH_PICKING_DETAILS_INTERFACE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSH_PICKING_DETAILS_INTERFACE, object_name:WSH_PICKING_DETAILS_INTERFACE, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.WSH_PICKING_DETAILS_INTERFACE ,
-
View: OE_BIS_BOOKINGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.OE_BIS_BOOKINGS_V, object_name:OE_BIS_BOOKINGS_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.OE_BIS_BOOKINGS_V ,
-
View: OE_BIS_BOOKINGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.OE_BIS_BOOKINGS_V, object_name:OE_BIS_BOOKINGS_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.OE_BIS_BOOKINGS_V ,
-
View: OE_BIS_BILLINGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.OE_BIS_BILLINGS_V, object_name:OE_BIS_BILLINGS_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.OE_BIS_BILLINGS_V ,
-
View: OE_BIS_BILLINGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.OE_BIS_BILLINGS_V, object_name:OE_BIS_BILLINGS_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.OE_BIS_BILLINGS_V ,
-
View: WSH_SHIPPING_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSH_SHIPPING_DETAILS_V WSH.WSH_SHIPPING_DETAILS_V, object_name:WSH_SHIPPING_DETAILS_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.WSH_SHIPPING_DETAILS_V ,
-
View: WSH_SHIPPING_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSH_SHIPPING_DETAILS_V WSH.WSH_SHIPPING_DETAILS_V, object_name:WSH_SHIPPING_DETAILS_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.WSH_SHIPPING_DETAILS_V ,
-
View: OE_BIS_BACKLOG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.OE_BIS_BACKLOG_V, object_name:OE_BIS_BACKLOG_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.OE_BIS_BACKLOG_V ,
-
View: WSHBV_PICK_HEADER
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHBV_PICK_HEADER, object_name:WSHBV_PICK_HEADER, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.WSHBV_PICK_HEADER ,
-
View: WSHBV_PICK_HEADER
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHBV_PICK_HEADER, object_name:WSHBV_PICK_HEADER, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.WSHBV_PICK_HEADER ,
-
View: OE_BIS_BACKLOG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.OE_BIS_BACKLOG_V, object_name:OE_BIS_BACKLOG_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.OE_BIS_BACKLOG_V ,
-
View: WSHBV_PICK_RELEASE_RULE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHBV_PICK_RELEASE_RULE, object_name:WSHBV_PICK_RELEASE_RULE, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.WSHBV_PICK_RELEASE_RULE ,
-
View: WSHBV_PICKING_BATCH
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHBV_PICKING_BATCH, object_name:WSHBV_PICKING_BATCH, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.WSHBV_PICKING_BATCH ,
-
View: WSHBV_PICK_RELEASE_RULE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHBV_PICK_RELEASE_RULE, object_name:WSHBV_PICK_RELEASE_RULE, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.WSHBV_PICK_RELEASE_RULE ,
-
View: OEBV_SHIPMENT_LINES
12.1.1
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: WSHBV_PICK_LINE_DETAIL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHBV_PICK_LINE_DETAIL, object_name:WSHBV_PICK_LINE_DETAIL, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.WSHBV_PICK_LINE_DETAIL ,
-
View: WSHBV_PICKING_BATCH
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHBV_PICKING_BATCH, object_name:WSHBV_PICKING_BATCH, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.WSHBV_PICKING_BATCH ,
-
View: OEBV_SHIPMENT_LINES
12.2.2
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: WSHBV_PICK_LINE_DETAIL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHBV_PICK_LINE_DETAIL, object_name:WSHBV_PICK_LINE_DETAIL, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.WSHBV_PICK_LINE_DETAIL ,
-
View: WSHBV_PICK_LINE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHBV_PICK_LINE, object_name:WSHBV_PICK_LINE, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.WSHBV_PICK_LINE ,
-
View: SO_MODEL_LINE_COGS_ACCOUNT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_MODEL_LINE_COGS_ACCOUNT, object_name:SO_MODEL_LINE_COGS_ACCOUNT, status:VALID, product: OE - Order Entry , description: Derive the COGS account from the model line details for option lines , implementation_dba_data: APPS.SO_MODEL_LINE_COGS_ACCOUNT ,
-
View: SO_MODEL_LINE_COGS_ACCOUNT
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_MODEL_LINE_COGS_ACCOUNT, object_name:SO_MODEL_LINE_COGS_ACCOUNT, status:VALID, product: OE - Order Entry , description: Derive the COGS account from the model line details for option lines , implementation_dba_data: APPS.SO_MODEL_LINE_COGS_ACCOUNT ,
-
View: SO_HEADERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_HEADERS, object_name:SO_HEADERS, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_HEADERS ,
-
View: WSHBV_PICK_LINE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHBV_PICK_LINE, object_name:WSHBV_PICK_LINE, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.WSHBV_PICK_LINE ,
-
View: OEBV_SALES_ORDERS
12.2.2
product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: SO_HEADERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_HEADERS, object_name:SO_HEADERS, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_HEADERS ,
-
View: SO_HEADERS_OEXORRSO_V
12.1.1
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,