Search Results top_model_item_fk
Overview
APPS.ISCBV_BACKLOGS_FCV is a reporting view in the Oracle E-Business Suite (EBS) 12.1.1 / 12.2.2 environment that presents an aggregated, fact-style ("_FCV" denoting a fact collection view) picture of order backlog information. The view consolidates backlog metrics across multiple summary grains — bill backlog, ship backlog, and delivery/quote (DLQT) backlog — by grouping on a common set of foreign keys and reference identifiers. Each row returned by the view represents a unique combination of those grouping keys, with monetary and quantity measures aggregated through SUM() and the latest update timestamp captured through MAX().
This object is principally used for analytical and reporting purposes, feeding business intelligence extracts, Discoverer worksheets, OBIEE/DAC-based ETL, or custom concurrent programs that need a denormalized, pre-aggregated backlog dataset rather than querying transactional On-Hand/Shipping/Order Management tables directly. Because the view exposes both transactional and reporting-side identifiers (SEQ_ID, BACKLOGS_PK, INSTance), it serves as a bridge between the raw backlog data model and reporting layers.
Underlying Base Objects
The ETRM metadata for this object does not enumerate any explicitly documented base tables or referenced objects ("Referenced base objects: none documented"). The SELECT list, however, strongly indicates that the view is defined over one or more backlog fact tables (likely partitioned or aggregated tables containing columns such as BILL_BKLG_MRG_T, SHIP_BKLG_COST_G, QTY_UNBILL_SHIP_B, and similar measures). These are joined or grouped together with reference/master data representing customers, locations, items, currencies, operating units, and other dimensions exposed through the various _FK columns.
The presence of a SURROGATE key such as BACKLOGS_PK alongside SEQ_ID, INSTANCE, and USER_ATTRIBUTE1 through USER_ATTRIBUTE23 (a truncated list at USER_ATTRIB) suggests the underlying storage follows a multi-instance, user-extensible fact pattern common in Oracle Business Intelligence Applications (OBIA) and EBS CRM/Order Management analytical schemas. Because the metadata does not document the base objects, technical users should query USER_DEPENDENCIES or ALL_VIEWS to confirm the exact underlying tables in their specific release.
Key Columns
The view's columns fall into three broad categories.
- Grouping / key columns: SEQ_ID, BACKLOGS_PK, INSTANCE, and the extensive set of foreign keys — BASE_UOM_FK (the user's search term), BILL_TO_CUST_FK, BILL_TO_LOCATION_FK, CUSTOMER_FK, DATE_BALANCE_FK, DEMAND_CLASS_FK, GL_BOOK_FK, INV_ORG_FK, ITEM_ORG_FK, OPERATING_UNIT_FK, ORDER_CATEGORY_FK, ORDER_SOURCE_FK, ORDER_TYPE_FK, SALES_CHANNEL_FK, SALES_PERSON_FK, SHIP_TO_CUST_FK, SHIP_TO_LOCATION_FK, TASK_FK, TOP_MODEL_ITEM_FK, and TRX_CURRENCY_FK. These establish the grain of each aggregated row.
- Measure columns: Margin, revenue, and cost amounts expressed in both transactional (suffix _T) and group/functional (suffix _G) currencies — BILL_BKLG_MRG_T/G, SHIP_BKLG_MRG_T/G, DLQT_BKLG_MRG_T/G, BILL_BKLG_REV_T/G, SHIP_BKLG_REV_T/G, DLQT_BKLG_REV_T/G, BILL_BKLG_COST_T/G, SHIP_BKLG_COST_T/G, DLQT_BKLG_COST_T/G, plus unbilled shipping equivalents (UNBILL_SHIP_REV_T/G, UNBILL_SHIP_COST_T/G, UNBILL_SHIP_MRG_T/G).
- Quantity measures: QTY_BILL_BKLG_B, QTY_SHIP_BKLG_B, QTY_DLQT_BKLG_B, and QTY_UNBILL_SHIP_B, expressed in the base unit of measure identified by BASE_UOM_FK.
- Flexfield attributes: USER_ATTRIBUTE1 through USER_ATTRIBUTE23 (list truncated in the source metadata), providing an extensibility mechanism for client-specific reporting attributes.
BASE_UOM_FK, the column matching the user's search, is the foreign key to the base unit of measure dimension. It determines the UOM context for the quantity measures and is a critical grouping key when comparing backlog quantities across items with differing primary units.
Common Use Cases and Queries
Typical scenarios include backlog analysis by customer, operating unit, or sales channel; order-book reporting comparing billed versus shipped versus unbilled backlog; and feeds into OBIA/ETL pipelines. A representative query filtered by base UOM might be:
SELECT BASE_UOM_FK, OPERATING_UNIT_FK, SUM(BILL_BKLG_REV_G) bill_rev_g, SUM(SHIP_BKLG_REV_G) ship_rev_g, SUM(QTY_BILL_BKLG_B) qty_bill FROM APPS.ISCBV_BACKLOGS_FCV GROUP BY BASE_UOM_FK, OPERATING_UNIT_FK ORDER BY bill_rev_g DESC;SELECT CUSTOMER_FK, TRX_CURRENCY_FK, SUM(BILL_BKLG_MRG_T) mrg_t, SUM(UNBILL_SHIP_MRG_T) unbill_mrg_t FROM APPS.ISCBV_BACKLOGS_FCV GROUP BY CUSTOMER_FK, TRX_CURRENCY_FK;SELECT BASe_UOM_FK, MAX(LAST_UPDATE_DATE) last_upd FROM APPS.ISCBV_BACKLOGS_FCV GROUP BY BASE_UOM_FK;
When performance is a concern, filter on indexed dimensions (OPERATING_UNIT_FK, INV_ORG_FK, ITEM_ORG_FK) and constrain LAST_UPDATE_DATE. Because BASE_UOM_FK participates in the GROUP BY, queries that directly reference it should expect one row per UOM per remaining key combination.
-
VIEW: APPS.ISCBV_BACKLOGS_FCV
12.1.1
-
View: ISCBV_BACKLOGS_FCV
12.2.2
product: ISC - Supply Chain Intelligence (Obsolete) , description: This is a wrapper view around the base view for the Backlog Snapshot fact table , implementation_dba_data: Not implemented in this database ,
-
View: ISCBV_BACKLOGS_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ISC.ISCBV_BACKLOGS_FCV, object_name:ISCBV_BACKLOGS_FCV, status:VALID, product: ISC - Supply Chain Intelligence , description: This is a wrapper view around the base view for the Backlog Snapshot fact table , implementation_dba_data: APPS.ISCBV_BACKLOGS_FCV ,
-
VIEW: APPS.ISC_EDW_BACKLOGS_F_FCV
12.1.1
-
View: ISC_EDW_BACKLOGS_F_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ISC.ISC_EDW_BACKLOGS_F_FCV, object_name:ISC_EDW_BACKLOGS_F_FCV, status:VALID, product: ISC - Supply Chain Intelligence , description: This is the collection view for the Backlog Snapshot fact table , implementation_dba_data: APPS.ISC_EDW_BACKLOGS_F_FCV ,
-
View: ISC_EDW_BACKLOGS_F_FCV
12.2.2
product: ISC - Supply Chain Intelligence (Obsolete) , description: This is the collection view for the Backlog Snapshot fact table , implementation_dba_data: Not implemented in this database ,
-
View: OPI_EDW_OPMCOGS_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OPI.OPI_EDW_OPMCOGS_FCV, object_name:OPI_EDW_OPMCOGS_FCV, status:VALID, product: OPI - Operations Intelligence , description: This is the source view for extracting Cost of gods sold and shipment data from the Process Manufacturing source tables. , implementation_dba_data: APPS.OPI_EDW_OPMCOGS_FCV ,
-
View: CST_EDW_COGS_V
12.1.1
product: BOM - Bills of Material , implementation_dba_data: Not implemented in this database ,
-
View: CST_EDW_COGS_V
12.2.2
product: BOM - Bills of Material , implementation_dba_data: Not implemented in this database ,
-
APPS.ISC_EDW_BACKLOGS_F_P SQL Statements
12.1.1
-
View: OPI_EDW_OPMCOGS_FCV
12.2.2
product: OPI - Operations Intelligence (Obsolete) , description: This is the source view for extracting Cost of gods sold and shipment data from the Process Manufacturing source tables. , implementation_dba_data: Not implemented in this database ,
-
APPS.OPI_EDW_OPMCOGS_F_C SQL Statements
12.1.1
-
VIEW: APPS.OPI_EDW_OPMCOGS_FCV
12.1.1
-
APPS.ISC_EDW_BACKLOGS_F_C SQL Statements
12.1.1
-
VIEW: APPS.ISCBV_BACKLOGS_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ISC.ISCBV_BACKLOGS_FCV, object_name:ISCBV_BACKLOGS_FCV, status:VALID,
-
VIEW: APPS.ISCBV_BACKLOGS_BASE_FCV
12.1.1
owner:APPS, object_type:VIEW, object_name:ISCBV_BACKLOGS_BASE_FCV, status:VALID,
-
VIEW: APPS.ISC_EDW_BACKLOGS_F_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ISC.ISC_EDW_BACKLOGS_F_FCV, object_name:ISC_EDW_BACKLOGS_F_FCV, status:VALID,
-
APPS.OPI_EDW_COGS_F_C SQL Statements
12.1.1
-
VIEW: APPS.OPI_EDW_COGS_FCV
12.1.1
owner:APPS, object_type:VIEW, object_name:OPI_EDW_COGS_FCV, status:VALID,
-
TABLE: ISC.ISC_EDW_BACKLOGS_FSTG
12.1.1
owner:ISC, object_type:TABLE, fnd_design_data:ISC.ISC_EDW_BACKLOGS_FSTG, object_name:ISC_EDW_BACKLOGS_FSTG, status:VALID,
-
VIEW: APPS.OPI_EDW_OPMCOGS_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OPI.OPI_EDW_OPMCOGS_FCV, object_name:OPI_EDW_OPMCOGS_FCV, status:VALID,
-
VIEW: APPS.OPI_EDW_COGS_FCV
12.1.1
-
PACKAGE BODY: APPS.OPI_EDW_COGS_FOPM_SZ
12.1.1
-
PACKAGE BODY: APPS.ISC_EDW_BACKLOGS_F_P
12.1.1
-
TABLE: OPI.OPI_EDW_COGS_FSTG
12.1.1
owner:OPI, object_type:TABLE, fnd_design_data:OPI.OPI_EDW_COGS_FSTG, object_name:OPI_EDW_COGS_FSTG, status:VALID,
-
View: CST_EDW_BACKLOG_V
12.2.2
product: BOM - Bills of Material , implementation_dba_data: Not implemented in this database ,
-
View: CST_EDW_BACKLOG_V
12.1.1
product: BOM - Bills of Material , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.OPI_EDW_OPMCOGS_F_C
12.1.1
-
PACKAGE BODY: APPS.OPI_EDW_COGS_F_C
12.1.1
-
PACKAGE BODY: APPS.ISC_EDW_BACKLOGS_F_C
12.1.1
-
PACKAGE BODY: APPS.OPI_EDW_COGS_F_SZ
12.1.1
-
eTRM - ISC Tables and Views
12.1.1
description: This is a temporary table used by the Bookings collection program ,
-
eTRM - OPI Tables and Views
12.1.1