Search Results iscbv_edw_book_sum1_base_fcv
Overview
ISCBV_EDW_BOOK_SUM1_BASE_FCV is a database view owned by the APPS schema within the Oracle E-Business Suite Supply Chain Intelligence (ISC) product family. It belongs to the ETRM (Enterprise Territory and Reporting Model) layer, which supplies the extract-transform-load foundation for Oracle Supply Chain and Order Management analytics. In EBS 12.1.1 and 12.2.2, this view functions as a materialization stage — the "_BASE_FCV" suffix denotes a "fact collection view" — that flattens transactional booking data from Order Management into a denormalized, analytics-ready row set.
The principal role of the view is to reconcile Order Management header and line activity (bookings) against General Ledger currency and calendar dimensions, so that downstream EDW (Enterprise Data Warehouse) fact tables can aggregate booked revenue by customer, operating unit, set of books, currency, and accounting period. It is a read-only reporting object and is not used by Online Transaction Processing (OLTP) flows; it is queried by concurrent programs and BI Publisher or OBIEE-style reporting against the ISC star schemas.
Underlying Base Objects
Although the ETRM metadata does not enumerate documented base objects for this view, the embedded view text shows it is defined over Order Management booking tables and EBS lookup dimensions. The column prefixes reveal the following traces:
- H — OE_ORDER_HEADERS_ALL, supplying HEADER_ID, INVOICE_TO_ORG_ID, BOOKED_DATE, ORG_ID, TRANSACTIONAL_CURR_CODE, CONVERSION_TYPE_CODE, and CONVERSION_RATE.
- L — OE_ORDER_LINES_ALL, supplying ORDERED_QUANTITY, UNIT_SELLING_PRICE, UNIT_LIST_PRICE, LINE_CATEGORY_CODE, and ITEM_TYPE_CODE.
- FSPA — Financials set-of-books assignment (FND_SET_OF_BOOKS / GL period assignment), contributing SET_OF_BOOKS_ID.
- GL — GL_DAILY_CONVERSION_TYPES / GL currency and period information, contributing CURRENCY_CODE, PERIOD_SET_NAME, and ACCOUNTED_PERIOD_TYPE.
- INST — an instance/installation descriptor supplying INSTANCE_CODE (typically the EBS instance identifier).
- ISC — a sequence source (ISC.SEQ_ID) providing a surrogate key.
Two packaged functions are invoked for derived values: EDW_ORGANIZATION_PKG.OPERATING_UNIT_FK for the operating unit foreign key, and EDW_CURRENCY.GET_RATE along with GL_CURRENCY_API.GET_RATE_SQL for currency conversion.
Key Columns
The view exposes a mix of surrogate primary keys, smart foreign keys, and financial measures:
- SEQ_ID — Surrogate sequence value used as the fact row identifier.
- BOOKINGS_PK — Composite key of HEADER_ID concatenated with INSTANCE_CODE.
- BILL_TO_CUST_FK — Foreign key to the bill-to customer site, derived from INVOICE_TO_ORG_ID.
- CURRENCY_BASE_FK — Currency of record for the transaction.
- DATE_BOOKED_FK — Composite date key using BOOKED_DATE, PERIOD_SET_NAME, and ACCOUNTED_PERIOD_TYPE.
- INSTANCE_FK, OPERATING_UNIT_FK, SET_OF_BOOKS_FK — Multi-org and ledger dimensions.
- BOOKED_AMT_B — Booked amount in the transactional currency, with quantity multiplied by unit selling price and adjusted for returns, configuration, and "included" item types.
- BOOKED_AMT_G — The same amount converted to the ledger currency using EDW_CURRENCY.GET_RATE.
- Additional list-price and conversion-adjusted measures follow the same DECODE-weighted pattern.
Missing values are consistently substituted with the sentinel 'NA_EDW', enabling reliable star-schema joins without NULL handling.
Common Use Cases and Queries
Typical use cases include booking-revenue trending, order-line profitability analysis, currency exposure reporting, and feeding the ISC EDW booking fact tables. A representative query selecting booked revenue by operating unit and period is:
- SELECT OPERATING_UNIT_FK, DATE_BOOKED_FK, CURRENCY_BASE_FK, SUM(BOOKED_AMT_G) BOOKED_REVENUE FROM APPS.ISCBV_EDW_BOOK_SUM1_BASE_FCV GROUP BY OPERATING_UNIT_FK, DATE_BOOKED_FK, CURRENCY_BASE_FK ORDER BY DATE_BOOKED_FK DESC;
- A drill-down identifying order headers and currencies: SELECT BOOKINGS_PK, BILL_TO_CUST_FK, CURRENCY_BASE_FK, BOOKED_AMT_B FROM APPS.ISCBV_EDW_BOOK_SUM1_BASE_FCV WHERE DATE_BOOKED_FK LIKE '%-%CD';
- A reconciliation between transactional and ledger currency: SELECT BOOKINGS_PK, BOOKED_AMT_B, BOOKED_AMT_G, (BOOKED_AMT_G - BOOKED_AMT_B) FX_DIFF FROM APPS.ISCBV_EDW_BOOK_SUM1_BASE_FCV WHERE CURRENCY_BASE_FK <> 'NA_EDW';
Because the view performs function-based currency conversion at query time, performance tuning typically targets the underlying OE_ORDER_HEADERS_ALL and OE_ORDER_LINES_ALL indexes on HEADER_ID and BOOKED_DATE. For high-volume extracts, DBAs should consider materializing the view within the EDW staging schema rather than querying it ad hoc.
-
View: ISCBV_EDW_BOOK_SUM1_BASE_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ISC.ISCBV_EDW_BOOK_SUM1_BASE_FCV, object_name:ISCBV_EDW_BOOK_SUM1_BASE_FCV, status:VALID, product: ISC - Supply Chain Intelligence , implementation_dba_data: APPS.ISCBV_EDW_BOOK_SUM1_BASE_FCV ,
-
View: ISCBV_EDW_BOOK_SUM1_BASE_FCV
12.2.2
product: ISC - Supply Chain Intelligence (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.ISCBV_EDW_BOOK_SUM1_FCV
12.1.1
-
SYNONYM: APPS.ISC_TMP_BOOK_SUM1
12.1.1
owner:APPS, object_type:SYNONYM, object_name:ISC_TMP_BOOK_SUM1, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE: APPS.EDW_ORGANIZATION_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:EDW_ORGANIZATION_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,
-
PACKAGE: APPS.EDW_CURRENCY
12.1.1
owner:APPS, object_type:PACKAGE, object_name:EDW_CURRENCY, status:VALID,
-
View: ISCBV_EDW_BOOK_SUM1_FCV
12.2.2
product: ISC - Supply Chain Intelligence (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: ISCBV_EDW_BOOK_SUM1_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ISC.ISCBV_EDW_BOOK_SUM1_FCV, object_name:ISCBV_EDW_BOOK_SUM1_FCV, status:VALID, product: ISC - Supply Chain Intelligence , implementation_dba_data: APPS.ISCBV_EDW_BOOK_SUM1_FCV ,
-
VIEW: APPS.ISCBV_EDW_BOOK_SUM1_BASE_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ISC.ISCBV_EDW_BOOK_SUM1_BASE_FCV, object_name:ISCBV_EDW_BOOK_SUM1_BASE_FCV, status:VALID,
-
VIEW: APPS.ISCBV_EDW_BOOK_SUM1_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ISC.ISCBV_EDW_BOOK_SUM1_FCV, object_name:ISCBV_EDW_BOOK_SUM1_FCV, 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,
-
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.OE_ORDER_LINES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OE_ORDER_LINES_ALL, 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 - SQLGL Tables and Views
12.1.1
description: USSGL transaction codes ,
-
12.1.1 DBA Data
12.1.1
-
eTRM - SQLGL Tables and Views
12.1.1
description: USSGL transaction codes ,