Search Results bic_dimv_geography
Overview
BIC_DIMV_GEOGRAPHY is a read-only dimensional view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the BIC – Customer Intelligence product family. BIC (Customer Intelligence) is an obsolete module in both EBS 12.1.1 and 12.2.2, so this object survives primarily for backward compatibility with historical reports, OBIEE/BI Publisher data models, and data-warehouse extraction routines that were originally built against the Customer Intelligence star schema. The object is catalogued as a VIEW with VALID status and is documented in the ETRM repository under the obsolete BIC product node.
The view presents a conformed geography (location) dimension. It exposes country, state, and city attributes at a single grain, allowing transactional facts such as customers, orders, and sales to be sliced and filtered geographically. As a dimension view it is typically joined on a surrogate key (GEOGRAPHY_ID) to fact views or tables within the BIC analytics layer.
Underlying Base Objects
The documented view text defines BIC_DIMV_GEOGRAPHY as the UNION ALL of two source sets:
- BIM_GEOGRAPHY — the primary BIC geography table. Distinct combinations of COUNTRY, STATE, and CITY are selected, each assigned a literal GEOGRAPHY_ID of 1.
- FND_LOOKUPS — the standard EBS flex/validation lookup table. A single "unknown" or "not applicable" row is manufactured from lookup type
BIC_VALUE_TYPEwith lookup code-999, assigning GEOGRAPHY_ID -999 and using the lookup MEANING to populate all three name columns.
The statement is declared WITH READ ONLY, confirming no DML is permitted. The header for the view references no base objects when the metadata was extracted, but the documented SQL clearly identifies BIM_GEOGRAPHY and FND_LOOKUPS as the operative sources.
Key Columns
- GEOGRAPHY_ID — surrogate key for the dimension member; 1 for real geography rows and -999 for the seeded unknown member used in outer joins.
- COUNTRY / COUNTRY_NAME — the country code and its presentation label (aliased identically in the query).
- STATE / STATE_NAME — state or province code and label.
- CITY / CITY_NAME — city code and label.
Because GEOGRAPHY_ID is a constant (1) for all genuine members, the true uniqueness of a row is the COUNTRY / STATE / CITY combination rather than the ID column. Join logic must account for this; the -999 member is intended to satisfy referential integrity when a fact has no matching geography.
Common Use Cases and Queries
Typical uses include geography drill-down in BIC dashboards, country/state roll-ups for customer segmentation, and supply of the "unknown" member to outer-joined fact queries. A representative query listing all members is:
SELECT geography_id, country_name, state_name, city_name FROM apps.bic_dimv_geography ORDER BY country_name, state_name, city_name;
Reporting against a fact joined to the dimension could filter using the deterministic key:
SELECT g.country_name, g.state_name, f.sales_amount FROM apps.bic_dimv_geography g, apps.bic_fact_sales f WHERE g.geography_id = f.geography_id AND g.geography_id <> -999;
Given the obsolete status of BIC, implementations on 12.1.1 and 12.2.2 should treat this view as a legacy compatibility artifact and validate it before reuse in new reporting solutions.
-
View: BIC_DIMV_GEOGRAPHY
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIC.BIC_DIMV_GEOGRAPHY, object_name:BIC_DIMV_GEOGRAPHY, status:VALID, product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: APPS.BIC_DIMV_GEOGRAPHY ,
-
View: BIC_DIMV_GEOGRAPHY
12.2.2
product: BIC - Customer Intelligence(Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.BIC_STATES_V
12.1.1
-
View: BIC_CITIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIC.BIC_CITIES_V, object_name:BIC_CITIES_V, status:VALID, product: BIC - Customer Intelligence (obsolete) , description: This view fetches city names from bic_dimv_geography. , implementation_dba_data: APPS.BIC_CITIES_V ,
-
View: BIC_CITIES_V
12.2.2
product: BIC - Customer Intelligence(Obsolete) , description: This view fetches city names from bic_dimv_geography. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.BIC_CITIES_V
12.1.1
-
View: BIC_STATES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIC.BIC_STATES_V, object_name:BIC_STATES_V, status:VALID, product: BIC - Customer Intelligence (obsolete) , description: This view fetches state names from bic_dimv_geography. , implementation_dba_data: APPS.BIC_STATES_V ,
-
View: BIC_STATES_V
12.2.2
product: BIC - Customer Intelligence(Obsolete) , description: This view fetches state names from bic_dimv_geography. , implementation_dba_data: Not implemented in this database ,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
SYNONYM: APPS.BIM_GEOGRAPHY
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BIM_GEOGRAPHY, status:VALID,
-
VIEW: APPS.BIC_STATES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIC.BIC_STATES_V, object_name:BIC_STATES_V, status:VALID,
-
VIEW: APPS.BIC_DIMV_GEOGRAPHY
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIC.BIC_DIMV_GEOGRAPHY, object_name:BIC_DIMV_GEOGRAPHY, status:VALID,
-
VIEW: APPS.BIC_CITIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIC.BIC_CITIES_V, object_name:BIC_CITIES_V, status:VALID,
-
eTRM - BIC Tables and Views
12.1.1
description: This table stores industry standard values for satisfaction ,
-
eTRM - BIC Tables and Views
12.1.1
description: This table stores industry standard values for satisfaction ,
-
VIEW: APPS.FND_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_LOOKUPS, object_name:FND_LOOKUPS, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE: APPS.FND_GLOBAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,