Search Results item_org_fk
Overview
The view EDW_ITEM_ITEMREV_LCV is a reporting and integration construct within the Oracle E-Business Suite (EBS) Engineering (ENG) module. Its documented purpose is to expose item revision level information — that is, the revision definitions associated with items, including the date from which each revision is effective. The "_LCV" suffix denotes a "Lightweight Collection View," a naming convention used by Oracle's Enterprise Data Warehouse (EDW) and ETRM reporting layers to denote a simplified, denormalized projection of base operational data intended for extraction, downstream loading, and analytical reporting rather than for transactional use.
The view is not implemented in the source database, which indicates it is a metadata-defined object delivered as part of the ETRM/EDW reference model. In practice it serves as a stable contract for ETL processes that need item revision data without navigating the full normalized Engineering schema.
Underlying Base Objects
The view text reveals that EDW_ITEM_ITEMREV_LCV is defined entirely over a single object: EDWBV_ITEM_ITEMREV_LCV. The prefix "EDWBV" identifies it as an EDW base view, i.e., a lower-level collection view that this public view wraps and extends. The ETRM metadata records no referenced base tables for this object, which is consistent with a layered view design: the adapter view supplies the column list and positional placeholders, while the underlying EDWBV view resolves to the actual Engineering item revision tables at runtime.
The exposed column list contains five trailing NULL placeholders (USER_ATTRIBUTE1 through USER_ATTRIBUTE5), a standard EDW technique for conforming heterogeneous sources to a fixed column footprint across products.
Key Columns
- ITEM_REVISION_PK — Primary key of the item revision record. Used as the unique identifier for joins and incremental loads.
- INSTANCE — Identifies the source EBS instance, enabling multi-instance consolidation in the warehouse.
- ITEM_ORG_FK — Foreign key to the item/organization combination. This is the column surfaced by the user's
item_org_fksearch and is the principal join path to item master and organization data. - ITEM_REVISION_DP — Descriptive flexfield (DFF) context or descriptor associated with the revision.
- NAME — Name of the item to which the revision belongs.
- ITEM_REVISION — The revision label or code (for example, A, B, or 1.0).
- EFFECTIVE_DATE — Date on which the revision becomes effective.
- CREATION_DATE / LAST_UPDATE_DATE — Standard audit columns supporting delta extraction.
- OPERATION_CODE — Change indicator (INSERT/UPDATE/DELETE) used by the EDW incremental load process.
- USER_ATTRIBUTE1–5 — Reserved placeholders, returned as NULL in this view.
Common Use Cases and Queries
The most frequent scenario is joining revisions back to items through ITEM_ORG_FK, as in the following example:
SELECT r.ITEM_REVISION_PK,
r.ITEM_ORG_FK,
r.NAME,
r.ITEM_REVISION,
r.EFFECTIVE_DATE
FROM EDW_ITEM_ITEMREV_LCV r
WHERE r.EFFECTIVE_DATE >= :p_from_date
ORDER BY r.ITEM_ORG_FK, r.EFFECTIVE_DATE;
Because ITEM_ORG_FK links revisions to a specific item-organization pair, analysts typically resolve it against the item-org dimension view to obtain organization codes and item numbers. Revision history and effectivity analysis queries filter on EFFECTIVE_DATE and order by ITEM_REVISION to reconstruct the revision sequence. Incremental ETL loads use LAST_UPDATE_DATE and OPERATION_CODE to identify changed rows. All queries should treat the object as read-only and rely on the documented column set, since the view is delivered as EDW metadata rather than a locally implemented database object.
-
View: EDW_ITEM_ITEMREV_LCV
12.2.2
product: ENG - Engineering , description: This view holds item revision level information , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.EDW_ITEM_ITEMREV_LCV
12.1.1
-
View: EDW_ITEM_ITEMREV_LCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.EDW_ITEM_ITEMREV_LCV, object_name:EDW_ITEM_ITEMREV_LCV, status:VALID, product: ENG - Engineering , description: This view holds item revision level information , implementation_dba_data: APPS.EDW_ITEM_ITEMREV_LCV ,
-
PACKAGE: APPS.EDW_ITEMS_PKG
12.1.1
-
VIEW: APPS.EDW_ITEMS_ITEM_ORG_FKV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.EDW_ITEMS_ITEM_ORG_FKV, object_name:EDW_ITEMS_ITEM_ORG_FKV, status:VALID,
-
VIEW: APPS.ISCBV_BACKLOGS_FCV
12.1.1
-
VIEW: APPS.EDWBV_ITEM_ITEMREV_LCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.EDWBV_ITEM_ITEMREV_LCV, object_name:EDWBV_ITEM_ITEMREV_LCV, status:VALID,
-
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.EDW_ITEM_ITEMREV_LCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.EDW_ITEM_ITEMREV_LCV, object_name:EDW_ITEM_ITEMREV_LCV, status:VALID,
-
TABLE: ENI.EDW_ITEM_ITEMREV_LSTG
12.1.1
owner:ENI, object_type:TABLE, object_name:EDW_ITEM_ITEMREV_LSTG, status:VALID,
-
View: EDW_ITEMS_ITEM_ORG_FKV
12.2.2
product: ENG - Engineering , description: This view holds item - organization information , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.ISC_EDW_BACKLOGS_F_FCV
12.1.1
-
VIEW: APPS.ISC_EDW_BOOKINGS_F_FCV
12.1.1
-
TABLE: ENI.EDW_ITEM_ITEMREV_LTC
12.1.1
owner:ENI, object_type:TABLE, object_name:EDW_ITEM_ITEMREV_LTC, status:VALID,
-
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: EDW_ITEMS_ITEM_ORG_FKV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.EDW_ITEMS_ITEM_ORG_FKV, object_name:EDW_ITEMS_ITEM_ORG_FKV, status:VALID, product: ENG - Engineering , description: This view holds item - organization information , implementation_dba_data: APPS.EDW_ITEMS_ITEM_ORG_FKV ,
-
View: EDWBV_ITEM_ITEMREV_LCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.EDWBV_ITEM_ITEMREV_LCV, object_name:EDWBV_ITEM_ITEMREV_LCV, status:VALID, product: ENG - Engineering , description: This view contains item revisions. , implementation_dba_data: APPS.EDWBV_ITEM_ITEMREV_LCV ,
-
View: EDWBV_ITEM_ITEMREV_LCV
12.2.2
product: ENG - Engineering , description: This view contains item revisions. , implementation_dba_data: Not implemented in this database ,
-
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 ,
-
APPS.OPI_EDW_INV_DAILY_STAT_F_C SQL Statements
12.1.1
-
View: OPI_EDW_OPIINV_DAILY_STAT_FCV
12.2.2
product: OPI - Operations Intelligence (Obsolete) , description: This is the source view for extracting Invetory Daily Transaction Summary data from the discrete Manufacturing source tables. , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.EDW_ITEMS_PKG
12.1.1
-
APPS.EDW_ITEMS_M_C SQL Statements
12.1.1
-
View: OPI_EDW_OPMINV_DAILY_STAT_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OPI.OPI_EDW_OPMINV_DAILY_STAT_FCV, object_name:OPI_EDW_OPMINV_DAILY_STAT_FCV, status:VALID, product: OPI - Operations Intelligence , description: This is the source view for extracting Invetory Daily Transaction Summary data from the Process Manufacturing source tables. , implementation_dba_data: APPS.OPI_EDW_OPMINV_DAILY_STAT_FCV ,
-
View: OPI_EDW_OPIINV_DAILY_STAT_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OPI.OPI_EDW_OPIINV_DAILY_STAT_FCV, object_name:OPI_EDW_OPIINV_DAILY_STAT_FCV, status:VALID, product: OPI - Operations Intelligence , description: This is the source view for extracting Invetory Daily Transaction Summary data from the discrete Manufacturing source tables. , implementation_dba_data: APPS.OPI_EDW_OPIINV_DAILY_STAT_FCV ,
-
View: OPI_EDW_OPMINV_DAILY_STAT_FCV
12.2.2
product: OPI - Operations Intelligence (Obsolete) , description: This is the source view for extracting Invetory Daily Transaction Summary data from the Process Manufacturing source tables. , implementation_dba_data: Not implemented in this database ,
-
View: ISC_EDW_BOOKINGS_F_FCV
12.2.2
product: ONT - Order Management , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.OPI_EDW_OPIINV_DAILY_STAT_FCV
12.1.1
-
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: 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: ONT - Order Management , implementation_dba_data: APPS.ISC_EDW_BOOKINGS_F_FCV ,
-
APPS.ISC_EDW_BACKLOGS_F_P SQL Statements
12.1.1
-
APPS.OPI_EDW_OPMINV_DAILY_STAT_F_C 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 ,
-
VIEW: APPS.OPI_EDW_OPMCOGS_FCV
12.1.1
-
APPS.OPI_EDW_OPMCOGS_F_C SQL Statements
12.1.1
-
VIEW: APPS.OPI_EDW_OPMINV_DAILY_STAT_FCV
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.ISC_EDW_BOOKINGS_F_C SQL Statements
12.1.1
-
APPS.ISC_EDW_BACKLOGS_F_C SQL Statements
12.1.1
-
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,
-
VIEW: APPS.ISCBV_BOOKINGS_FCV
12.1.1
owner:APPS, object_type:VIEW, object_name:ISCBV_BOOKINGS_FCV, 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,
-
TABLE: OPI.OPI_EDW_INV_DAILY_STAT_F_DLOG
12.1.1
owner:OPI, object_type:TABLE, fnd_design_data:OPI.OPI_EDW_INV_DAILY_STAT_F_DLOG, object_name:OPI_EDW_INV_DAILY_STAT_F_DLOG, status:VALID,
-
VIEW: APPS.OPI_EDW_COGS_FCV
12.1.1