Search Results region_fk
Overview
EDW_GEOG_STATE_LCV is a read-only view owned by the APPS schema within the Oracle E-Business Suite (EBS) Enterprise Data Warehouse (EDW) layer. Its purpose is to consolidate geographic state, province, and region data drawn from multiple transactional source tables into a single, normalized list of values (LCV). The suffix "LCV" denotes List of Values, indicating the view is designed for reference and lookup consumption in reporting, extraction, and integration contexts rather than transactional DML. The view presents a derived concatenated key (STATE_PK) and an aggregated region foreign key (REGION_FK) that standardizes how state and country combinations are identified across heterogeneous EBS modules. In the configuration described for EBS 12.1.1 and 12.2.2, this object is typically consumed by data warehouse extractions, BI Publisher reports, and ETL processes requiring a unified geographic dimension. The view is instantiated through the EDW_LOCAL_INSTANCE table's INSTANCE_CODE column, which stamps each row with the originating EBS instance identifier, supporting multi-instance or multi-organization consolidation.
Underlying Base Objects
The view is defined as a UNION ALL across three distinct source extracts, each joined to EDW_LOCAL_INSTANCE to attach the instance code. The documented base objects are:
- PO_VENDOR_SITES_ALL (alias PVS): Supplies supplier site address geography. The view extracts STATE and PROVINCE for key derivation.
- HR_LOCATIONS_ALL (alias HRL): Supplies HR location geography, using REGION_2 to populate the state key and description columns.
- HZ_LOCATIONS (alias HZL): Supplies customer and address geography via RA_ADDRESSES and TCA party site data, using STATE and PROVINCE.
- EDW_LOCAL_INSTANCE (alias ELI): Contributes INSTANCE_CODE, identifying the source EBS instance for each unioned row.
Although the documented referenced base object list is empty, the view text explicitly names the four tables above, and each branch is labeled with an embedded comment identifying its extract family: "Supplier Site," "HR_LOCATIONS EXTRACT," and "RA_ADDRESSES (customers, HZ_LOCATIONS) EXTRACT."
Key Columns
- STATE_PK: A concatenated primary key composed of the decoded state (falling back to province when state is null) joined with the country by a hyphen. This provides a unique surrogate identifier for the geography.
- REGION_FK: A derived foreign key built as COUNTRY concatenated with '-CUTY' (country-unitity), providing a coarse geographic grouping. This is the column most relevant to the user's "region_fk" search, as it links state records upward to a country-level region dimension.
- STATE_DP: The display value, formatted as state(province) concatenated with the country in parentheses.
- NAME: Mirrors STATE_DP, used as the human-readable label in list-of-values pickers.
- INSTANCE: The source instance code from EDW_LOCAL_INSTANCE.
- CREATION_DATE / LAST_UPDATE_DATE: Timestamps carried from the respective source table for each union branch.
- USER_ATTRIBUTE1 through USER_ATTRIBUTE5: Null placeholders reserved for extensibility.
Common Use Cases and Queries
Typical uses include populating geography list-of-values, building state-to-region mappings for dashboards, and reconciling address geography across supplier, HR, and customer domains. A representative query retrieving distinct country-level regions is:
SELECT DISTINCT region_fk, name FROM apps.edw_geog_state_lcv ORDER BY region_fk;
A query returning state keys grouped by region:
SELECT region_fk, state_pk, name FROM apps.edw_geog_state_lcv WHERE region_fk = 'US-CUTY' ORDER BY state_pk;
Filtering by instance for multi-instance consolidation:
SELECT instance, state_pk, region_fk FROM apps.edw_geog_state_lcv WHERE instance = :instance_code;
These patterns support ETL population of geographic dimensions and cross-module geography validation.
-
VIEW: APPS.EDW_GEOG_STATE_LCV
12.1.1
-
View: EDW_GEOG_STATE_LCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.EDW_GEOG_STATE_LCV, object_name:EDW_GEOG_STATE_LCV, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.EDW_GEOG_STATE_LCV ,
-
View: EDW_GEOG_STATE_LTC_IV
12.1.1
product: BIS - Applications BIS , implementation_dba_data: Not implemented in this database ,
-
View: EDW_GEOG_STATE_LTC_IV
12.2.2
product: BIS - Applications BIS , implementation_dba_data: Not implemented in this database ,
-
View: EDW_GEOG_STATE_LCV
12.2.2
product: PO - Purchasing , implementation_dba_data: Not implemented in this database ,
-
View: ISC_EDW_RECEIVE_PAY_CYCLE_S
12.2.2
product: ISC - Supply Chain Intelligence (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: ISC_EDW_ORD_RECV_PAY_CYCLE_S
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ISC.ISC_EDW_ORD_RECV_PAY_CYCLE_S, object_name:ISC_EDW_ORD_RECV_PAY_CYCLE_S, status:VALID, product: ISC - Supply Chain Intelligence , description: This view is used by the Procure to Pay Cycle Time reports , implementation_dba_data: APPS.ISC_EDW_ORD_RECV_PAY_CYCLE_S ,
-
View: ISC_EDW_ORD_RECV_PAY_CYCLE_S
12.2.2
product: ISC - Supply Chain Intelligence (Obsolete) , description: This view is used by the Procure to Pay Cycle Time reports , implementation_dba_data: Not implemented in this database ,
-
View: ISC_EDW_ORDER_ENTRY_S
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ISC.ISC_EDW_ORDER_ENTRY_S, object_name:ISC_EDW_ORDER_ENTRY_S, status:VALID, product: ISC - Supply Chain Intelligence , description: This view is used by the Order Entry Cycle Time report , implementation_dba_data: APPS.ISC_EDW_ORDER_ENTRY_S ,
-
View: ISC_EDW_BOOK_TO_SHIP_CYCLE_S
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ISC.ISC_EDW_BOOK_TO_SHIP_CYCLE_S, object_name:ISC_EDW_BOOK_TO_SHIP_CYCLE_S, status:VALID, product: ISC - Supply Chain Intelligence , description: This view is used by the Book to Ship and Book to Pick Cycle Time reports , implementation_dba_data: APPS.ISC_EDW_BOOK_TO_SHIP_CYCLE_S ,
-
View: ISC_EDW_BOOK_FULFILL_CYCLE_S
12.2.2
product: ISC - Supply Chain Intelligence (Obsolete) , description: This view is used by the Book to Fulfill Cycle Time report , implementation_dba_data: Not implemented in this database ,
-
View: ISC_EDW_ORDER_ENTRY_S
12.2.2
product: ISC - Supply Chain Intelligence (Obsolete) , description: This view is used by the Order Entry Cycle Time report , implementation_dba_data: Not implemented in this database ,
-
View: ISC_EDW_ORDER_FULFILL_VOLUME_S
12.2.2
product: ISC - Supply Chain Intelligence (Obsolete) , description: This view is used by the Order Fulfill Volume report , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.ISC_EDW_BACKLOG_S
12.1.1
-
VIEW: APPS.ISC_EDW_ORD_RECV_PAY_CYCLE_S
12.1.1
-
View: ISC_EDW_BACKLOG_S
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ISC.ISC_EDW_BACKLOG_S, object_name:ISC_EDW_BACKLOG_S, status:VALID, product: ISC - Supply Chain Intelligence , description: This view is used by the Backlog reports , implementation_dba_data: APPS.ISC_EDW_BACKLOG_S ,
-
View: ISC_EDW_BACKLOG_S
12.2.2
product: ISC - Supply Chain Intelligence (Obsolete) , description: This view is used by the Backlog reports , implementation_dba_data: Not implemented in this database ,
-
View: ISC_EDW_RECEIVE_PAY_CYCLE_S
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ISC.ISC_EDW_RECEIVE_PAY_CYCLE_S, object_name:ISC_EDW_RECEIVE_PAY_CYCLE_S, status:VALID, product: ISC - Supply Chain Intelligence , implementation_dba_data: APPS.ISC_EDW_RECEIVE_PAY_CYCLE_S ,
-
VIEW: APPS.ISC_EDW_PICK_TO_SHIP_CYCLE_S
12.1.1
-
View: ISC_EDW_ORDER_SHIP_VOLUME_S
12.2.2
product: ISC - Supply Chain Intelligence (Obsolete) , description: This view is used by the Order Ship Volume report , implementation_dba_data: Not implemented in this database ,
-
View: ISC_EDW_ORDER_FULFILL_VOLUME_S
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ISC.ISC_EDW_ORDER_FULFILL_VOLUME_S, object_name:ISC_EDW_ORDER_FULFILL_VOLUME_S, status:VALID, product: ISC - Supply Chain Intelligence , description: This view is used by the Order Fulfill Volume report , implementation_dba_data: APPS.ISC_EDW_ORDER_FULFILL_VOLUME_S ,
-
View: ISC_EDW_PICK_TO_SHIP_CYCLE_S
12.2.2
product: ISC - Supply Chain Intelligence (Obsolete) , description: This view is used by the Pick to Ship Cycle Time report , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.ISC_EDW_ORDER_SHIP_VOLUME_S
12.1.1
-
VIEW: APPS.EDW_GEOG_STATE_LCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.EDW_GEOG_STATE_LCV, object_name:EDW_GEOG_STATE_LCV, status:VALID,
-
View: ISC_EDW_BOOK_TO_SHIP_CYCLE_S
12.2.2
product: ISC - Supply Chain Intelligence (Obsolete) , description: This view is used by the Book to Ship and Book to Pick Cycle Time reports , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.ISC_EDW_BOOK_TO_SHIP_CYCLE_S
12.1.1
-
VIEW: APPS.ISC_EDW_RECEIVE_PAY_CYCLE_S
12.1.1
-
VIEW: APPS.ISC_EDW_ORDER_ENTRY_S
12.1.1
-
View: ISC_EDW_BOOKINGS_BILLINGS_S
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ISC.ISC_EDW_BOOKINGS_BILLINGS_S, object_name:ISC_EDW_BOOKINGS_BILLINGS_S, status:VALID, product: ISC - Supply Chain Intelligence , description: This view is used by the Bookings reports , implementation_dba_data: APPS.ISC_EDW_BOOKINGS_BILLINGS_S ,
-
View: ISC_EDW_PICK_TO_SHIP_CYCLE_S
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ISC.ISC_EDW_PICK_TO_SHIP_CYCLE_S, object_name:ISC_EDW_PICK_TO_SHIP_CYCLE_S, status:VALID, product: ISC - Supply Chain Intelligence , description: This view is used by the Pick to Ship Cycle Time report , implementation_dba_data: APPS.ISC_EDW_PICK_TO_SHIP_CYCLE_S ,
-
View: ISC_EDW_BOOK_FULFILL_CYCLE_S
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ISC.ISC_EDW_BOOK_FULFILL_CYCLE_S, object_name:ISC_EDW_BOOK_FULFILL_CYCLE_S, status:VALID, product: ISC - Supply Chain Intelligence , description: This view is used by the Book to Fulfill Cycle Time report , implementation_dba_data: APPS.ISC_EDW_BOOK_FULFILL_CYCLE_S ,
-
View: ISC_EDW_ORDER_SHIP_VOLUME_S
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ISC.ISC_EDW_ORDER_SHIP_VOLUME_S, object_name:ISC_EDW_ORDER_SHIP_VOLUME_S, status:VALID, product: ISC - Supply Chain Intelligence , description: This view is used by the Order Ship Volume report , implementation_dba_data: APPS.ISC_EDW_ORDER_SHIP_VOLUME_S ,
-
View: ISC_EDW_ORDER_FULFILL_SHIP_S
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ISC.ISC_EDW_ORDER_FULFILL_SHIP_S, object_name:ISC_EDW_ORDER_FULFILL_SHIP_S, status:VALID, product: ISC - Supply Chain Intelligence , description: This view is used by the One-Day Book to Ship reports , implementation_dba_data: APPS.ISC_EDW_ORDER_FULFILL_SHIP_S ,
-
VIEW: APPS.ISC_EDW_BOOK_FULFILL_CYCLE_S
12.1.1
-
View: ISC_EDW_ORDER_FULFILL_SHIP_S
12.2.2
product: ISC - Supply Chain Intelligence (Obsolete) , description: This view is used by the One-Day Book to Ship reports , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.ISC_EDW_ORDER_FULFILL_VOLUME_S
12.1.1
-
VIEW: APPS.ISC_EDW_ORDER_ENTRY_S
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ISC.ISC_EDW_ORDER_ENTRY_S, object_name:ISC_EDW_ORDER_ENTRY_S, status:VALID,
-
VIEW: APPS.ISC_EDW_ORDER_FULFILL_VOLUME_S
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ISC.ISC_EDW_ORDER_FULFILL_VOLUME_S, object_name:ISC_EDW_ORDER_FULFILL_VOLUME_S, status:VALID,
-
VIEW: APPS.ISC_EDW_ORDER_SHIP_VOLUME_S
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ISC.ISC_EDW_ORDER_SHIP_VOLUME_S, object_name:ISC_EDW_ORDER_SHIP_VOLUME_S, status:VALID,
-
View: ISC_EDW_BOOKINGS_BILLINGS_S
12.2.2
product: ISC - Supply Chain Intelligence (Obsolete) , description: This view is used by the Bookings reports , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.ISC_EDW_BOOKINGS_BILLINGS_S
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ISC.ISC_EDW_BOOKINGS_BILLINGS_S, object_name:ISC_EDW_BOOKINGS_BILLINGS_S, status:VALID,
-
TABLE: POA.EDW_GEOG_STATE_LTC
12.1.1
owner:POA, object_type:TABLE, fnd_design_data:BIS.EDW_GEOG_STATE_LTC POA.EDW_GEOG_STATE_LTC, object_name:EDW_GEOG_STATE_LTC, status:VALID,
-
VIEW: APPS.ISC_EDW_PICK_TO_SHIP_CYCLE_S
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ISC.ISC_EDW_PICK_TO_SHIP_CYCLE_S, object_name:ISC_EDW_PICK_TO_SHIP_CYCLE_S, status:VALID,
-
VIEW: APPS.ISC_EDW_BOOK_FULFILL_CYCLE_S
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ISC.ISC_EDW_BOOK_FULFILL_CYCLE_S, object_name:ISC_EDW_BOOK_FULFILL_CYCLE_S, status:VALID,
-
VIEW: APPS.ISC_EDW_BOOK_TO_SHIP_CYCLE_S
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ISC.ISC_EDW_BOOK_TO_SHIP_CYCLE_S, object_name:ISC_EDW_BOOK_TO_SHIP_CYCLE_S, status:VALID,
-
VIEW: APPS.ISC_EDW_RECEIVE_PAY_CYCLE_S
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ISC.ISC_EDW_RECEIVE_PAY_CYCLE_S, object_name:ISC_EDW_RECEIVE_PAY_CYCLE_S, status:VALID,
-
VIEW: APPS.ISC_EDW_ORDER_FULFILL_SHIP_S
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ISC.ISC_EDW_ORDER_FULFILL_SHIP_S, object_name:ISC_EDW_ORDER_FULFILL_SHIP_S, status:VALID,
-
VIEW: APPS.ISC_EDW_ORD_RECV_PAY_CYCLE_S
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ISC.ISC_EDW_ORD_RECV_PAY_CYCLE_S, object_name:ISC_EDW_ORD_RECV_PAY_CYCLE_S, status:VALID,
-
TABLE: POA.EDW_GEOG_STATE_LSTG
12.1.1
owner:POA, object_type:TABLE, fnd_design_data:BIS.EDW_GEOG_STATE_LSTG POA.EDW_GEOG_STATE_LSTG, object_name:EDW_GEOG_STATE_LSTG, status:VALID,
-
VIEW: APPS.ISC_EDW_BACKLOG_S
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ISC.ISC_EDW_BACKLOG_S, object_name:ISC_EDW_BACKLOG_S, status:VALID,