Search Results so_transactions_flag
Overview
The SO_PICKING_LINE_DET_OEXORRSO_V view is an Oracle E-Business Suite (EBS) 12.1.1 / 12.2.2 database object owned by the APPS schema and registered under the Order Entry (OE) product family. It is a denormalized, reporting-oriented view built over the picking line detail entity within Oracle Order Management and Shipping Execution. Its principal purpose is to expose picking line attribute data alongside material and warehouse denormalizations, enabling downstream reports, concurrent programs, and integration interfaces to retrieve order fulfillment details without directly joining the underlying transactional tables.
The suffix convention "OEXORRSO" indicates the object is used by an Oracle Shipping Execution (WSH) report or integration, where picking line detail information must be presented with human-readable item and warehouse context. The view is particularly relevant to users searching the so_transactions_flag element, since the picking line lifecycle flags (such as RELEASED_FLAG, TRANSACTABLE_FLAG, RESERVABLE_FLAG, and UPDATE_FLAG) are surfaced directly by this object and are frequently used to qualify transaction-eligible records.
Underlying Base Objects
Per the documented ETRM metadata for 12.2.2, the view is defined over the following objects:
SO_PICKING_LINE_DETAILS(synonym) — the primary transactional source, aliased asSOPLD, providing all picking line detail columns.MTL_PARAMETERS(synonym) — supplies warehouse/organization context, includingORGANIZATION_CODE.MTL_SYSTEM_ITEMS(synonym) — provides item control attributes such as revision, lot, and inventory asset flags.MTL_SYSTEM_ITEMS_KFV(synonym) — the key flexfield concatenated view of items, used to present descriptive item identifiers.SO_LOOKUPS(synonym) — resolves lookup codes such asDETAIL_TYPE_CODEandSCHEDULE_STATUS_CODEinto meaningful values.FND_GLOBAL(package) — provides session context, notably the organization and user identifiers used for multi-org security.FND_PROFILE(package) — supplies profile option values that may drive conditional display or filtering logic.OE_QUERY(package) — an Order Entry query utility invoked within the view definition to enforce organizational and functional security predicates.
The view therefore acts as a join envelope, combining picking line detail granularity with item master and warehouse attributes.
Key Columns
The view exposes the full column list of SO_PICKING_LINE_DETAILS, plus derived columns. Notable transactional columns include:
PICKING_LINE_DETAIL_IDandPICKING_LINE_ID— primary and foreign keys linking to the picking line header.REQUESTED_QUANTITY,SHIPPED_QUANTITY,WIP_RESERVED_QUANTITY,WIP_COMPLETED_QUANTITY— quantity metrics supporting fulfillment tracking.RELEASED_FLAG,TRANSACTABLE_FLAG,RESERVABLE_FLAG,UPDATE_FLAG,AUTOSCHEDULED_FLAG— status flags central to transaction processing; these are the fields commonly referenced when queryingso_transactions_flaglogic.DEMAND_ID,DEMAND_CLASS_CODE,SUPPLY_SOURCE_TYPE,SUPPLY_SOURCE_HEADER_ID— demand and supply linkage for the picking detail.LOT_NUMBER,SERIAL_NUMBER,REVISION— lot, serial, and revision control values captured at picking.INVENTORY_LOCATION_ID,SUBINVENTORY,WAREHOUSE_ID— physical location of the picked material.SCHEDULE_DATE,LATEST_ACCEPTABLE_DATE,SCHEDULE_STATUS_CODE,SCHEDULE_LEVEL— scheduling and date constraint information.SEGMENT1throughSEGMENT20— item key flexfield segments.- Derived columns:
WAREHOUSE(organization code fromMTL_PARAMETERS),REVISION_CONTROL_FLAG,LOT_CONTROL_FLAG, and an inventory asset flag — all decoded fromMTL_SYSTEM_ITEMScontrol codes. - Standard audit columns:
CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE,LAST_UPDATE_LOGIN, and theROW_IDpseudocolumn.
Common Use Cases and Queries
Typical usages include shipping report generation, pick confirmation reconciliation, and integration extraction for warehouse management systems. A frequent pattern is filtering picking lines by transaction readiness flags:
- Identify released, transaction-eligible picking lines for a given warehouse.
- Reconcile requested versus shipped quantities per picking line for fill-rate reporting.
- Extract lot and serial controlled items requiring special handling at pick confirmation.
- Feed external shipping systems with denormalized item and warehouse descriptions.
Sample query:
SELECT v.picking_line_detail_id,
v.picking_line_id,
v.warehouse,
v.segment1 AS item,
v.requested_quantity,
v.shipped_quantity,
v.released_flag,
v.transactable_flag
FROM apps.so_picking_line_det_oexorrso_v v
WHERE v.released_flag = 'Y'
AND v.transactable_flag = 'Y'
AND v.warehouse_id = :p_organization_id;
Because the view incorporates FND_GLOBAL and OE_QUERY calls, queries automatically respect the session's organization and functional security context, which is essential when the view is consumed from concurrent programs or custom integrations in an EBS 12.1.1 or 12.2.2 environment.
-
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_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: SO_INCLUDED_ITEMS_OEXORRSO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_INCLUDED_ITEMS_OEXORRSO_V, object_name:SO_INCLUDED_ITEMS_OEXORRSO_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_INCLUDED_ITEMS_OEXORRSO_V ,
-
View: SO_INCLUDED_ITEMS_OEXORRSO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_INCLUDED_ITEMS_OEXORRSO_V, object_name:SO_INCLUDED_ITEMS_OEXORRSO_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_INCLUDED_ITEMS_OEXORRSO_V ,
-
View: SO_CONFIG_COMPONENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_CONFIG_COMPONENTS_V, object_name:SO_CONFIG_COMPONENTS_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_CONFIG_COMPONENTS_V ,
-
View: SO_CONFIG_COMPONENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_CONFIG_COMPONENTS_V, object_name:SO_CONFIG_COMPONENTS_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_CONFIG_COMPONENTS_V ,
-
View: SO_PICKING_LINES_OEXORRSO_V
12.2.2
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: SO_PICKING_LINES_OEXORRSO_V
12.1.1
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: SO_LINES_OEXORRSO_V
12.2.2
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: SO_LINES_OEXORRSO_V
12.1.1
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,