Search Results iscbv_bookings_fcv
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
owner:APPS, object_type:VIEW, fnd_design_data:ISC.ISCBV_BOOKINGS_BASE_FCV, object_name:ISCBV_BOOKINGS_BASE_FCV, status:VALID,
-
SYNONYM: APPS.ISC_TMP_PK
12.1.1
owner:APPS, object_type:SYNONYM, object_name:ISC_TMP_PK, status:VALID,
-
VIEW: APPS.ISC_EDW_BOOKINGS_F_FCV
12.1.1
-
PACKAGE: APPS.EDW_UTIL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:EDW_UTIL, status:VALID,
-
PACKAGE: APPS.EDW_ORGANIZATION_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:EDW_ORGANIZATION_PKG, status:VALID,
-
PACKAGE: APPS.EDW_GEOGRAPHY_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:EDW_GEOGRAPHY_PKG, status:VALID,
-
SYNONYM: APPS.EDW_LOCAL_SYSTEM_PARAMETERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:EDW_LOCAL_SYSTEM_PARAMETERS, status:VALID,
-
SYNONYM: APPS.OE_ORDER_LINES_HISTORY
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OE_ORDER_LINES_HISTORY, status:VALID,
-
PACKAGE: APPS.EDW_CURRENCY
12.1.1
owner:APPS, object_type:PACKAGE, object_name:EDW_CURRENCY, status:VALID,
-
SYNONYM: APPS.OE_AGREEMENTS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OE_AGREEMENTS_B, status:VALID,
-
SYNONYM: APPS.OE_ORDER_SOURCES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OE_ORDER_SOURCES, status:VALID,
-
View: ISC_EDW_BOOKINGS_F_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ISC.ISC_EDW_BOOKINGS_F_FCV ONT.ISC_EDW_BOOKINGS_F_FCV, object_name:ISC_EDW_BOOKINGS_F_FCV, status:VALID, product: ISC - Supply Chain Intelligence , description: This is the collection view for the Bookings fact table , implementation_dba_data: APPS.ISC_EDW_BOOKINGS_F_FCV ,
-
View: ISC_EDW_BOOKINGS_F_FCV
12.2.2
product: ISC - Supply Chain Intelligence (Obsolete) , description: This is the collection view for the Bookings fact table , implementation_dba_data: Not implemented in this database ,
-
SYNONYM: APPS.MTL_RESERVATIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_RESERVATIONS, status:VALID,
-
SYNONYM: APPS.OE_TRANSACTION_TYPES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OE_TRANSACTION_TYPES_TL, status:VALID,
-
SYNONYM: APPS.EDW_LOCAL_INSTANCE
12.1.1
owner:APPS, object_type:SYNONYM, object_name:EDW_LOCAL_INSTANCE, status:VALID,
-
SYNONYM: APPS.FINANCIALS_SYSTEM_PARAMS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FINANCIALS_SYSTEM_PARAMS_ALL, status:VALID,
-
PACKAGE: APPS.GL_CURRENCY_API
12.1.1
owner:APPS, object_type:PACKAGE, object_name:GL_CURRENCY_API, status:VALID,
-
VIEW: APPS.ISCBV_BOOKINGS_FCV
12.1.1
owner:APPS, object_type:VIEW, object_name:ISCBV_BOOKINGS_FCV, status:VALID,
-
VIEW: APPS.ISC_EDW_BOOKINGS_F_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ISC.ISC_EDW_BOOKINGS_F_FCV ONT.ISC_EDW_BOOKINGS_F_FCV, object_name:ISC_EDW_BOOKINGS_F_FCV, status:VALID,
-
eTRM - ISC Tables and Views
12.1.1
description: This is a temporary table used by the Bookings collection program ,
-
SYNONYM: APPS.OE_ORDER_HEADERS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OE_ORDER_HEADERS_ALL, status:VALID,
-
SYNONYM: APPS.MTL_SYSTEM_ITEMS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_SYSTEM_ITEMS_B, status:VALID,
-
SYNONYM: APPS.OE_ORDER_LINES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OE_ORDER_LINES_ALL, status:VALID,
-
SYNONYM: APPS.HR_ORGANIZATION_INFORMATION
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HR_ORGANIZATION_INFORMATION, status:VALID,
-
VIEW: APPS.GL_SETS_OF_BOOKS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_SETS_OF_BOOKS, object_name:GL_SETS_OF_BOOKS, status:VALID,
-
eTRM - ISC Tables and Views
12.1.1
description: This is a temporary table used by the Bookings collection program ,
-
eTRM - ONT Tables and Views
12.1.1
description: OM WorkFlow Activity Skip Log. ,
-
12.1.1 DBA Data
12.1.1
-
eTRM - SQLGL Tables and Views
12.1.1
description: USSGL transaction codes ,
-
eTRM - SQLGL Tables and Views
12.1.1
description: USSGL transaction codes ,
-
eTRM - ONT Tables and Views
12.1.1
description: OM WorkFlow Activity Skip Log. ,