Search Results transactable_flag
Overview
The view WSH_DELIVERY_LINES_SC_V is a shipping execution schema object associated with the Oracle Order Entry (OE) module. It exposes picking line detail records from the Warehouse Management (WSH) subsystem in a denormalized form, joining picking line detail rows to inventory organization and container information so that consumers can report on delivery line contents without navigating the full normalized shipping data model. The "SC" suffix in Oracle EBS naming convention generally denotes a "Shipping/Container" or supply-chain-oriented variant, and the view is intended primarily for read-only reporting and integration rather than transactional processing.
The ETRM metadata for 12.2.2 records this object as "Not implemented in this database" in the source system from which the metadata was harvested. This is a significant caveat: the view text exists in the ETRM catalog, but the object was not deployed in the reference environment. The presence of the definition nonetheless confirms the object's intended structure and is useful for understanding how delivery line reporting is modeled across Oracle EBS 12.1.1 and 12.2.2.
Underlying Base Objects
The view text is dominated by references to PLD, which is the alias for WSH_PICKING_LINE_DETAILS, the primary transactional table storing individual picking line detail rows, including requested and shipped quantities, lot and serial attributes, subinventory and locator references, and scheduling information. Nearly every column in the view maps directly to a column on this table.
Two additional joins are visible in the excerpt. ORG resolves to ORG_ORGANIZATION_DEFINITIONS, supplying ORGANIZATION_CODE from the inventory organization. H_ORG provides the descriptive ORGANIZATION name. A further join to MSI2 on MTL_SYSTEM_ITEMS_B supplies CONTAINER_DESCRIPTION by CONTAINER_INVENTORY_ITEM_ID. The ETRM metadata lists no documented referenced base objects for this view, so the join relationships above are inferred from the SQL text. Note that PC, aliasing the container table that supplies CONTAINER_INVENTORY_ITEM_ID, is referenced in the select list but its underlying table is not named in the excerpt.
Key Columns
PICKING_LINE_DETAIL_ID,PICKING_LINE_ID,DELIVERY_ID,DEMAND_ID— Primary and foreign key identifiers linking the detail to its picking line, delivery, and originating demand.ORGANIZATION_ID,ORGANIZATION_CODE,ORGANIZATION— The warehouse identifier and its code and descriptive name.REQUESTED_QUANTITY,SHIPPED_QUANTITY— Ordered versus actually shipped amounts, the core quantities for fulfillment reporting.SCHEDULE_DATE,LATEST_ACCEPTABLE_DATE— Scheduling columns central to the "schedule_level" search context;SCHEDULE_DATEdrives scheduling andAUTOSCHEDULED_FLAGindicates automated scheduling.SERIAL_NUMBER,LOT_NUMBER,REVISION— Item instance and revision attributes for tracked inventory.SUBINVENTORY,INVENTORY_LOCATION_ID,INVENTORY_LOCATION_SEGMENTS— Sourcing and locator detail.RELEASED_FLAG,RESERVABLE_FLAG,TRANSACTABLE_FLAG— Status flags governing whether the line may be released, reserved, or transacted.CONTAINER_ID,CONTAINER_INVENTORY_ITEM_ID,CONTAINER_DESCRIPTION,MASTER_CONTAINER_ITEM_ID,DETAIL_CONTAINER_ITEM_ID— Container/packing hierarchy information.ATTRIBUTE1throughATTRIBUTE15— Descriptive flexfield segments.
Common Use Cases and Queries
Typical use is delivery-line-level reporting: reconciling requested versus shipped quantities, identifying unscheduled or unautoscheduled lines, and auditing container assignments. A representative query follows.
- Pending shipment by schedule date:
SELECT ORGANIZATION_CODE, DELIVERY_ID, PICKING_LINE_DETAIL_ID, REQUESTED_QUANTITY, SHIPPED_QUANTITY, SCHEDULE_DATE FROM WSH_DELIVERY_LINES_SC_V WHERE SHIPPED_QUANTITY < REQUESTED_QUANTITY ORDER BY SCHEDULE_DATE; - Scheduling control audit:
SELECT ORGANIZATION_CODE, DELIVERY_ID, SCHEDULE_DATE, AUTOSCHEDULED_FLAG FROM WSH_DELIVERY_LINES_SC_V WHERE AUTOSCHEDULED_FLAG = 'N'; - Container consumption:
SELECT DELIVERY_ID, CONTAINER_DESCRIPTION, SUM(SHIPPED_QUANTITY) FROM WSH_DELIVERY_LINES_SC_V GROUP BY DELIVERY_ID, CONTAINER_DESCRIPTION;
Consumers should confirm object existence and privileges in the target instance, since the ETRM metadata records the view as not implemented in the reference database, implying environment-dependent deployment.
-
View: WSH_DELIVERY_LINES_SC_V
12.2.2
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: WSH_DELIVERY_LINES_SC_V
12.1.1
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: SO_LINE_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_LINE_DETAILS_V, object_name:SO_LINE_DETAILS_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_LINE_DETAILS_V ,
-
View: SO_PICKING_LINE_DET_OEXORRSO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_PICKING_LINE_DET_OEXORRSO_V, object_name:SO_PICKING_LINE_DET_OEXORRSO_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_PICKING_LINE_DET_OEXORRSO_V ,
-
View: SO_PICKING_LINE_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_PICKING_LINE_DETAILS_V, object_name:SO_PICKING_LINE_DETAILS_V, status:VALID, product: OE - Order Entry , description: 10SC Only , implementation_dba_data: APPS.SO_PICKING_LINE_DETAILS_V ,
-
View: SO_PICKING_LINE_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_PICKING_LINE_DETAILS_V, object_name:SO_PICKING_LINE_DETAILS_V, status:VALID, product: OE - Order Entry , description: 10SC Only , implementation_dba_data: APPS.SO_PICKING_LINE_DETAILS_V ,
-
View: SO_LINE_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_LINE_DETAILS_V, object_name:SO_LINE_DETAILS_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_LINE_DETAILS_V ,
-
View: SO_PICKING_LINE_DET_OEXORRSO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_PICKING_LINE_DET_OEXORRSO_V, object_name:SO_PICKING_LINE_DET_OEXORRSO_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_PICKING_LINE_DET_OEXORRSO_V ,
-
View: WSHFV_PICK_LINE_DETAIL
12.2.2
product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: WSHFV_PICK_LINE_DETAIL
12.1.1
product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,