Search Results txn_source_line_id
Overview
APPS.ISCBV_BOOKINGS_BASE_FCV is a public Oracle E-Business Suite view owned by the Applications schema. It presents aggregated move-order picking information, exposing the latest pick-slip date associated with each transaction source line. The suffix "FCV" denotes a "flexfield conversion view" style naming convention used extensively in the Oracle Inventory and Order Management family, where such views flatten and pre-aggregate transactional data to simplify downstream reporting and integration queries. In EBS 12.1.1 and 12.2.2 the object remains an unstored, runtime-evaluated view; it holds no data of its own and returns rows derived entirely from the inventory move-order transaction tables.
The view is consumed by booking-related functionality and by custom operational reports that require, for a given source document line, the most recent pick activity executed against it. Because it aggregates with MAX() and GROUP BY, it typically returns one row per source line rather than one row per transaction.
Underlying Base Objects
The view is defined over a single base table, MTL_TXN_REQUEST_LINES, the move-order lines table in Oracle Inventory. No other referenced base objects are documented in the ETRM metadata. The defining SQL restricts the underlying rows with two filter predicates: TRANSACTION_TYPE_ID must be 52 or 53, and TRANSACTION_SOURCE_TYPE_ID must be 2 or 8. These code combinations select the pick-related move-order transaction categories, ensuring that the aggregate reflects picking activity only. The result set is grouped by TXN_SOURCE_LINE_ID, which is the foreign key back to the originating source document line.
Because the view performs no joins, its performance characteristics mirror those of MTL_TXN_REQUEST_LINES. Index availability on TRANSACTION_TYPE_ID, TRANSACTION_SOURCE_TYPE_ID, TRANSACTION_SOURCE_TYPE_ID, PICK_SLIP_DATE, and TXN_SOURCE_LINE_ID materially affects the cost of querying it. In 12.2.2 the underlying table structure is unchanged from 12.1.1 with respect to these columns, so the view behaves consistently across both releases.
Key Columns
- LINE_ID — the alias assigned to TXN_SOURCE_LINE_ID. This is the transaction source line identifier, the key referenced by the search term "txn_source_line_id." It identifies the source document line from which the move-order request originated and is the grouping key of the view.
- DATE_LATEST_PICK — the alias assigned to MAX(PICK_SLIP_DATE). It represents the most recent pick-slip date recorded across all qualifying move-order lines for that source line. A NULL value indicates that no qualifying pick transaction exists for the line.
No other columns are projected. Consumers joining this view to order or delivery data do so on LINE_ID.
Common Use Cases and Queries
The principal use case is determining when a given source line was last picked, supporting booking logic, shipment confirmation, and reconciliation reporting. A representative query joining the view to a source document follows:
SELECT b.line_id, b.date_latest_pick FROM apps.iscbv_bookings_base_fcv b WHERE b.line_id = :txn_source_line_id;— retrieves the latest pick date for a single source line.SELECT line_id, date_latest_pick FROM apps.iscbv_bookings_base_fcv WHERE date_latest_pick >= :from_date;— identifies lines picked since a given date.SELECT l.line_id, l.date_latest_pick FROM apps.iscbv_bookings_base_fcv l JOIN oe_order_lines_all o ON o.line_id = l.line_id;— correlates the latest pick date with order lines for booking validation.
Because the view is a grouping construct, queries filtering on txn_source_line_id benefit from an index on that column in MTL_TXN_REQUEST_LINES. Reports should anticipate NULL results for lines that have no qualifying pick transactions.
-
VIEW: APPS.ISCBV_BOOKINGS_BASE_FCV
12.1.1
-
View: ISCBV_BOOKINGS_BASE_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ISC.ISCBV_BOOKINGS_BASE_FCV, object_name:ISCBV_BOOKINGS_BASE_FCV, status:VALID, product: ISC - Supply Chain Intelligence , description: This view is used by the Bookings fact base view to retrieve the latest pick release date of a sales order line , implementation_dba_data: APPS.ISCBV_BOOKINGS_BASE_FCV ,
-
View: ISCBV_BOOKINGS_BASE_FCV
12.2.2
product: ISC - Supply Chain Intelligence (Obsolete) , description: This view is used by the Bookings fact base view to retrieve the latest pick release date of a sales order line , implementation_dba_data: Not implemented in this database ,
-
VIEW: GMI.IC_TXN_REQUEST_LINES#
12.2.2
-
VIEW: INV.MTL_TXN_REQUEST_LINES#
12.2.2
-
View: IC_MOVE_ORDER_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMI.IC_MOVE_ORDER_LINES_V, object_name:IC_MOVE_ORDER_LINES_V, status:VALID, product: GMI - Process Manufacturing Inventory , description: This view is used in the OPM Pick Lots form (ICPCKLOT.fmb), and gives the Move Order Lines information for the form. , implementation_dba_data: APPS.IC_MOVE_ORDER_LINES_V ,
-
View: IC_MOVE_ORDER_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMI.IC_MOVE_ORDER_LINES_V, object_name:IC_MOVE_ORDER_LINES_V, status:VALID, product: GMI - Process Manufacturing Inventory , description: This view is used in the OPM Pick Lots form (ICPCKLOT.fmb), and gives the Move Order Lines information for the form. , implementation_dba_data: APPS.IC_MOVE_ORDER_LINES_V ,
-
TABLE: WMS.WMS_TXN_CONTEXT_TEMP
12.1.1
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_TXN_CONTEXT_TEMP, object_name:WMS_TXN_CONTEXT_TEMP, status:VALID,
-
TABLE: WMS.WMS_TXN_CONTEXT_TEMP
12.2.2
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_TXN_CONTEXT_TEMP, object_name:WMS_TXN_CONTEXT_TEMP, status:VALID,
-
VIEW: APPS.IC_MOVE_ORDER_LINES_V
12.1.1
-
VIEW: APPS.IC_MOVE_ORDER_LINES_V
12.2.2
-
VIEW: APPS.IC_MOVE_ORDER_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMI.IC_MOVE_ORDER_LINES_V, object_name:IC_MOVE_ORDER_LINES_V, status:VALID,
-
VIEW: APPS.IC_MOVE_ORDER_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMI.IC_MOVE_ORDER_LINES_V, object_name:IC_MOVE_ORDER_LINES_V, status:VALID,
-
VIEW: APPS.MTL_TXN_BACKORDERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TXN_BACKORDERS_V, object_name:MTL_TXN_BACKORDERS_V, status:VALID,
-
VIEW: APPS.MTL_TXN_BACKORDERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TXN_BACKORDERS_V, object_name:MTL_TXN_BACKORDERS_V, status:VALID,
-
VIEW: GMI.IC_TXN_REQUEST_LINES#
12.2.2
owner:GMI, object_type:VIEW, object_name:IC_TXN_REQUEST_LINES#, status:VALID,
-
View: IC_TXN_REQUEST_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMI.IC_TXN_REQUEST_LINES_V, object_name:IC_TXN_REQUEST_LINES_V, status:VALID, product: GMI - Process Manufacturing Inventory , description: This view is used in the OPM Transact Process Move Orders form (ICTOTRX.fmb) to get the Move Order Lines data based on the entered criteria. , implementation_dba_data: APPS.IC_TXN_REQUEST_LINES_V ,
-
TABLE: GMI.IC_TXN_REQUEST_LINES
12.2.2
owner:GMI, object_type:TABLE, fnd_design_data:GMI.IC_TXN_REQUEST_LINES, object_name:IC_TXN_REQUEST_LINES, status:VALID,
-
TABLE: GMI.IC_TXN_REQUEST_LINES
12.1.1
owner:GMI, object_type:TABLE, fnd_design_data:GMI.IC_TXN_REQUEST_LINES, object_name:IC_TXN_REQUEST_LINES, status:VALID,
-
View: IC_TXN_REQUEST_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMI.IC_TXN_REQUEST_LINES_V, object_name:IC_TXN_REQUEST_LINES_V, status:VALID, product: GMI - Process Manufacturing Inventory , description: This view is used in the OPM Transact Process Move Orders form (ICTOTRX.fmb) to get the Move Order Lines data based on the entered criteria. , implementation_dba_data: APPS.IC_TXN_REQUEST_LINES_V ,
-
TABLE: APPS.MTL_MTRL_BACKUP
12.1.1
owner:APPS, object_type:TABLE, object_name:MTL_MTRL_BACKUP, status:VALID,
-
View: WMS_TXN_REQUEST_LINES_TRACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_TXN_REQUEST_LINES_TRACE_V, object_name:WMS_TXN_REQUEST_LINES_TRACE_V, status:VALID, product: WMS - Warehouse Management , description: WMS TXN Request Lines Trace View , implementation_dba_data: APPS.WMS_TXN_REQUEST_LINES_TRACE_V ,
-
View: MTL_TXN_REQUEST_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TXN_REQUEST_LINES_V, object_name:MTL_TXN_REQUEST_LINES_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_TXN_REQUEST_LINES_V ,
-
VIEW: INV.MTL_TXN_REQUEST_LINES#
12.2.2
owner:INV, object_type:VIEW, object_name:MTL_TXN_REQUEST_LINES#, status:VALID,
-
View: WMS_TXN_REQUEST_LINES_TRACE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_TXN_REQUEST_LINES_TRACE_V, object_name:WMS_TXN_REQUEST_LINES_TRACE_V, status:VALID, product: WMS - Warehouse Management , description: WMS TXN Request Lines Trace View , implementation_dba_data: APPS.WMS_TXN_REQUEST_LINES_TRACE_V ,
-
View: MTL_TXN_REQUEST_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TXN_REQUEST_LINES_V, object_name:MTL_TXN_REQUEST_LINES_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_TXN_REQUEST_LINES_V ,
-
VIEW: APPS.IC_TXN_REQUEST_LINES_V
12.2.2
-
VIEW: APPS.IC_TXN_REQUEST_LINES_V
12.1.1
-
VIEW: APPS.WMS_STRATEGY_MAT_TXN_TMP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_STRATEGY_MAT_TXN_TMP_V, object_name:WMS_STRATEGY_MAT_TXN_TMP_V, status:VALID,
-
VIEW: APPS.IC_TXN_REQUEST_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMI.IC_TXN_REQUEST_LINES_V, object_name:IC_TXN_REQUEST_LINES_V, status:VALID,
-
VIEW: APPS.IC_TXN_REQUEST_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMI.IC_TXN_REQUEST_LINES_V, object_name:IC_TXN_REQUEST_LINES_V, status:VALID,
-
VIEW: APPS.WMS_STRATEGY_MAT_TXN_TMP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_STRATEGY_MAT_TXN_TMP_V, object_name:WMS_STRATEGY_MAT_TXN_TMP_V, status:VALID,
-
VIEW: APPS.WMS_TXN_REQUEST_LINES_TRACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_TXN_REQUEST_LINES_TRACE_V, object_name:WMS_TXN_REQUEST_LINES_TRACE_V, status:VALID,
-
VIEW: APPS.WMS_TXN_REQUEST_LINES_TRACE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_TXN_REQUEST_LINES_TRACE_V, object_name:WMS_TXN_REQUEST_LINES_TRACE_V, status:VALID,
-
VIEW: APPS.WMS_TRX_DETAILS_TMP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_TRX_DETAILS_TMP_V, object_name:WMS_TRX_DETAILS_TMP_V, status:VALID,
-
VIEW: APPS.WMS_TRX_DETAILS_TMP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_TRX_DETAILS_TMP_V, object_name:WMS_TRX_DETAILS_TMP_V, status:VALID,
-
View: MTL_TXN_BACKORDERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TXN_BACKORDERS_V, object_name:MTL_TXN_BACKORDERS_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_TXN_BACKORDERS_V ,
-
PACKAGE: APPS.INV_MO_PURGE
12.1.1
-
View: WMS_TRX_DETAILS_TMP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_TRX_DETAILS_TMP_V, object_name:WMS_TRX_DETAILS_TMP_V, status:VALID, product: WMS - Warehouse Management , description: WMS rules execution input baes view , implementation_dba_data: APPS.WMS_TRX_DETAILS_TMP_V ,
-
View: MTL_TXN_BACKORDERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TXN_BACKORDERS_V, object_name:MTL_TXN_BACKORDERS_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_TXN_BACKORDERS_V ,
-
View: WMS_TRX_DETAILS_TMP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_TRX_DETAILS_TMP_V, object_name:WMS_TRX_DETAILS_TMP_V, status:VALID, product: WMS - Warehouse Management , description: WMS rules execution input baes view , implementation_dba_data: APPS.WMS_TRX_DETAILS_TMP_V ,
-
PACKAGE: APPS.INV_MO_PURGE
12.2.2
-
VIEW: APPS.MTL_TXN_REQUEST_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TXN_REQUEST_LINES_V, object_name:MTL_TXN_REQUEST_LINES_V, status:VALID,
-
VIEW: APPS.MTL_TXN_REQUEST_LINES_V
12.1.1
-
VIEW: APPS.MTL_TXN_REQUEST_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TXN_REQUEST_LINES_V, object_name:MTL_TXN_REQUEST_LINES_V, status:VALID,
-
VIEW: APPS.WMS_TXN_REQUEST_LINES_TRACE_V
12.2.2
-
VIEW: APPS.WMS_TXN_REQUEST_LINES_TRACE_V
12.1.1
-
VIEW: APPS.MTL_TXN_REQUEST_LINES_V
12.2.2
-
APPS.INV_TROLIN_UTIL SQL Statements
12.1.1
-
View: CSP_MO_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_MO_LINES_V, object_name:CSP_MO_LINES_V, status:VALID, product: CSP - Spares Management , description: Move order lines including extra information of Spares Management , implementation_dba_data: APPS.CSP_MO_LINES_V ,