Search Results carrier_flag
Overview
APPS.WSHBV_PICK_LINE_GROUPING_RULE is a reporting and integration view in Oracle E-Business Suite Release 12.1.1 and 12.2.2 that exposes the pick-slip grouping rules defined for Warehouse Management. A grouping rule determines how pick lines are consolidated onto a single pick slip during the pick-release process, controlling the level at which the system batches demand into picking documents. The view is owned by the APPS schema and functions as a read-oriented presentation layer over the underlying pick-slip rules table, presenting both the rule's attributes and its grouping flags with renamed column aliases that align to Oracle Warehouse Management (WSH) conventions. Because it is a view rather than a table, no data is physically stored in it; every query traverses to the base object at run time. This makes it suitable for reports, Discoverer workbooks, BI Publisher data models, custom concurrent programs, and inbound/outbound integrations that need to read grouping-rule configuration without touching the base table directly.
Underlying Base Objects
The view is defined over a single documented base object: WSH_PICK_SLIP_RULES (referenced through a synonym). The SELECT list projects the pick slip rule identifier, its name, description, the individual grouping flags, the active date range, and the standard Oracle EBS audit and concurrent-program columns (WHO columns and the request identifiers). Several columns are exposed with aliases that differ from their base names; for example, ORDER_NUMBER_FLAG is aliased as GROUPB_BY_ORDER_NUMBER_FLAG, SUBINVENTORY_FLAG as GROUP_BY_SUBINVENTORY_FLAG, CUSTOMER_FLAG as GROUP_BY_CUSTOMER_FLAG, CARRIER_FLAG as GROUP_BY_CARRIER_FLAG, SHIPMENT_PRIORITY_FLAG as GROUP_BY_SHIP_PRIORITY_FLAG, DEPARTURE_FLAG as GROUP_DEPARTURE_FLAG, and DELIVERY_FLAG as GROUP_BY_DELIVERY_FLAG. Note the documented alias typo "GROUPB_BY_ORDER_NUMBER_FLAG," which must be quoted or reproduced verbatim if referenced in code.
Key Columns
- PICK_SLIP_RULE_ID — Primary identifier of the grouping rule; joins to the base table and to other WSH objects such as WSH_PICK_SLIP_RULE_ASSIGN.
- NAME / DESCRIPTION — User-facing rule name and narrative description.
- GROUP_BY_CARRIER_FLAG (from CARRIER_FLAG) — Flag indicating whether pick lines are grouped by carrier. This is the column users search for under the term "carrier_flag."
- GROUP_BY_ORDER_NUMBER_FLAG, GROUP_BY_SUBINVENTORY_FLAG, GROUP_BY_CUSTOMER_FLAG, GROUP_BY_SHIP_PRIORITY_FLAG, GROUP_DEPARTURE_FLAG, GROUP_BY_DELIVERY_FLAG — The remaining grouping dimensions controlling how lines are batched.
- SHIP_TO_FLAG — Flag for grouping by ship-to location.
- START_DATE_ACTIVE / END_DATE_ACTIVE — Effective date window governing when the rule is active.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE, REQUEST_ID — Standard audit and concurrent-request tracking columns.
Common Use Cases and Queries
Typical usage includes reporting on active grouping rules, validating configuration before go-live, and integrating carrier-driven grouping logic into external systems.
- Retrieve all active rules:
SELECT pick_slip_rule_id, name, group_by_carrier_flag FROM apps.wshbv_pick_line_grouping_rule WHERE SYSDATE BETWEEN start_date_active AND NVL(end_date_active, SYSDATE+1); - Filter rules that group by carrier:
SELECT pick_slip_rule_id, name FROM apps.wshbv_pick_line_grouping_rule WHERE group_by_carrier_flag = 'Y'; - Join to assignments to identify which rules apply to a warehouse or organization.
Because the view is a thin projection over WSH_PICK_SLIP_RULES, performance is governed by the base table's indexes; queries should filter on PICK_SLIP_RULE_ID or active-date predicates wherever possible.
-
VIEW: APPS.WSHBV_PICK_LINE_GROUPING_RULE
12.1.1
-
VIEW: WSH.WSH_CONSOL_GROUPING_RULES#
12.2.2
-
VIEW: WSH.WSH_PICK_GROUPING_RULES#
12.2.2
-
VIEW: OE.WSH_PICK_SLIP_RULES#
12.2.2
-
VIEW: APPS.WSHFV_PICK_LINE_GROUPING_RULE
12.2.2
-
VIEW: APPS.WSHFV_PICK_LINE_GROUPING_RULE
12.1.1
-
VIEW: APPS.WSHBV_PICK_LINE_GROUPING_RULE
12.2.2
-
VIEW: WSH.WSH_CONSOL_GROUPING_RULES#
12.2.2
owner:WSH, object_type:VIEW, object_name:WSH_CONSOL_GROUPING_RULES#, status:VALID,
-
View: WSHBV_PICK_LINE_GROUPING_RULE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHBV_PICK_LINE_GROUPING_RULE, object_name:WSHBV_PICK_LINE_GROUPING_RULE, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.WSHBV_PICK_LINE_GROUPING_RULE ,
-
VIEW: OE.WSH_PICK_SLIP_RULES#
12.2.2
owner:OE, object_type:VIEW, object_name:WSH_PICK_SLIP_RULES#, status:VALID,
-
VIEW: WSH.WSH_PICK_GROUPING_RULES#
12.2.2
owner:WSH, object_type:VIEW, object_name:WSH_PICK_GROUPING_RULES#, status:VALID,
-
View: WSHFV_PICK_LINE_GROUPING_RULE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHFV_PICK_LINE_GROUPING_RULE, object_name:WSHFV_PICK_LINE_GROUPING_RULE, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.WSHFV_PICK_LINE_GROUPING_RULE ,
-
View: WSHBV_PICK_LINE_GROUPING_RULE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHBV_PICK_LINE_GROUPING_RULE, object_name:WSHBV_PICK_LINE_GROUPING_RULE, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.WSHBV_PICK_LINE_GROUPING_RULE ,
-
View: WSHFV_PICK_LINE_GROUPING_RULE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHFV_PICK_LINE_GROUPING_RULE, object_name:WSHFV_PICK_LINE_GROUPING_RULE, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.WSHFV_PICK_LINE_GROUPING_RULE ,
-
TABLE: OE.WSH_PICK_SLIP_RULES
12.2.2
owner:OE, object_type:TABLE, fnd_design_data:OE.WSH_PICK_SLIP_RULES, object_name:WSH_PICK_SLIP_RULES, status:VALID,
-
TABLE: WSH.WSH_CONSOL_GROUPING_RULES
12.2.2
owner:WSH, object_type:TABLE, object_name:WSH_CONSOL_GROUPING_RULES, status:VALID,
-
TABLE: OE.WSH_PICK_SLIP_RULES
12.1.1
owner:OE, object_type:TABLE, fnd_design_data:OE.WSH_PICK_SLIP_RULES, object_name:WSH_PICK_SLIP_RULES, status:VALID,
-
TABLE: WSH.WSH_CONSOL_GROUPING_RULES
12.1.1
owner:WSH, object_type:TABLE, object_name:WSH_CONSOL_GROUPING_RULES, status:VALID,
-
TABLE: WSH.WSH_PICK_GROUPING_RULES
12.1.1
owner:WSH, object_type:TABLE, fnd_design_data:WSH.WSH_PICK_GROUPING_RULES, object_name:WSH_PICK_GROUPING_RULES, status:VALID,
-
TABLE: WSH.WSH_PICK_GROUPING_RULES
12.2.2
owner:WSH, object_type:TABLE, fnd_design_data:WSH.WSH_PICK_GROUPING_RULES, object_name:WSH_PICK_GROUPING_RULES, status:VALID,
-
APPS.GMI_PR_PICK_SLIP_NUMBER SQL Statements
12.1.1
-
APPS.INV_PR_PICK_SLIP_NUMBER SQL Statements
12.2.2
-
APPS.INV_PR_PICK_SLIP_NUMBER SQL Statements
12.1.1
-
APPS.GMI_PR_PICK_SLIP_NUMBER SQL Statements
12.2.2
-
APPS.WSH_PR_PICK_SLIP_NUMBER SQL Statements
12.2.2
-
APPS.WSH_PR_PICK_SLIP_NUMBER SQL Statements
12.1.1
-
APPS.WSH_MDC_SRS SQL Statements
12.1.1
-
APPS.WSH_MDC_SRS SQL Statements
12.2.2
-
PACKAGE: APPS.WSH_WSHRDPIK_XMLP_PKG
12.1.1
-
PACKAGE: APPS.WSH_WSHRDPIK_XMLP_PKG
12.2.2
-
APPS.WSH_PR_PICKING_OBJECTS SQL Statements
12.2.2
-
PACKAGE BODY: APPS.WSH_WSHRDPIK_XMLP_PKG
12.1.1
-
PACKAGE BODY: APPS.WSH_WSHRDPIK_XMLP_PKG
12.2.2
-
APPS.WSH_PR_PICKING_OBJECTS SQL Statements
12.1.1
-
PACKAGE BODY: APPS.GMI_PR_PICK_SLIP_NUMBER
12.1.1
-
APPS.WSH_PR_PICKING_OBJECTS dependencies on WSH_PICK_SLIP_RULES
12.1.1
-
PACKAGE BODY: APPS.GMI_PR_PICK_SLIP_NUMBER
12.2.2
-
PACKAGE BODY: APPS.INV_PR_PICK_SLIP_NUMBER
12.1.1
-
APPS.WSH_PR_PICKING_OBJECTS dependencies on WSH_PICK_SLIP_RULES
12.2.2
-
APPS.WSH_WSHRDPIK_XMLP_PKG dependencies on FND_LOOKUP_VALUES_VL
12.1.1
-
APPS.WSH_WSHRDPIK_XMLP_PKG dependencies on FND_LOOKUP_VALUES_VL
12.2.2
-
PACKAGE BODY: APPS.INV_PR_PICK_SLIP_NUMBER
12.2.2
-
PACKAGE BODY: APPS.WSH_PR_PICK_SLIP_NUMBER
12.1.1
-
PACKAGE BODY: APPS.WSH_PR_PICK_SLIP_NUMBER
12.2.2
-
PACKAGE BODY: APPS.WSH_PR_PICKING_OBJECTS
12.1.1
-
APPS.WMS_POSTALLOC_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.WSH_PR_PICKING_OBJECTS
12.2.2
-
PACKAGE BODY: APPS.WSH_MDC_SRS
12.2.2
-
PACKAGE BODY: APPS.WSH_MDC_SRS
12.1.1
-
PACKAGE BODY: APPS.WMS_POSTALLOC_PVT
12.2.2