Search Results post_postcode_pk_key
Overview
POA.EDW_GEOGRAPHY_M is a summary-layer table in the Oracle EBS Enterprise Data Warehouse (EDW), owned by the POA schema and registered under FND Design Data as BIS.EDW_GEOGRAPHY_M. It stores the Geography dimension used by Oracle Business Intelligence and Daily Business Intelligence (DBI) reporting. Each row describes a fully denormalized geography hierarchy — from the "All" top level down through world areas, country, region, state, state-region, city, postcode-city, and postcode — anchored on a general location (GLOC). In Oracle EBS 12.1.1 and 12.2.2 the object resides in the APPS_TS_SUMMARY tablespace and is marked VALID, with the standard Oracle restriction that it is for internal use only and must be accessed from standard Oracle Applications programs rather than by direct custom SQL.
The documented metadata does not declare foreign keys, and the heuristic Data Vault classification is standalone. In modeling terms, this object behaves more like a flattened dimension/satellite than a hub or link; the suggested interpretation is a consolidated geography satellite, since it carries descriptive and user-attribute columns alongside its surrogate keys rather than relational join structure.
Key Information Stored
The table is documented with 109 columns spanning ten geography levels, each following a consistent pattern of a *_PK business identifier, a *_PK_KEY system-generated surrogate, a *_DP display name, an *_NAME, an *_INSTANCE, and five user-defined attributes. The most significant columns include:
GLOC_LOCATION_PK_KEY— the primary key (EDW_GEOGRAPHY_M_PK) and system-generated unique identifier for the general location, also the sole column of unique indexEDW_GEOGRAPHY_M_U2.GLOC_LOCATION_PK— the business-key candidate for the location; withGLOC_LOCATION_PK_KEYit forms unique indexEDW_GEOGRAPHY_M_U1.GLOC_NAME,GLOC_LOCATION_DP, and address linesGLOC_ADDRESS_LINE_1throughGLOC_ADDRESS_LINE_4— the location name, display value, and street address.CITY_CITY_PK_KEY— surrogate key for the city level (the column the user searched for), paired withCITY_CITY_PK(business key),CITY_CITY_DP,CITY_NAME, andCITY_INSTANCE.COUN_COUNTRY_PK_KEY/COUN_COUNTRY_PK/COUN_NAME— country-level surrogate, business key, and name.STAT_STATE_PK_KEY/STAT_STATE_PK/STAT_NAMEandREGN_REGION_PK_KEY/REGN_NAME— state and region levels.POST_POSTCODE_PK_KEY/POST_POSTCODE_PKandPCCY_POSTCODE_CITY_PK_KEY— postcode and postcode-city levels.CREATION_DATEandLAST_UPDATE_DATE— standard audit columns.
Common Use Cases and Queries
Because this is a dimensional summary object, its dominant use is geography-level reporting and filtering — grouping transactions or balances by country, region, state, or city. A representative pattern resolves a city key to its hierarchy parents:
SELECT CITY_NAME, STAT_NAME, COUN_NAME, REGN_NAME FROM POA.EDW_GEOGRAPHY_M WHERE CITY_CITY_PK_KEY = :p_city_key;- Aggregating a fact by country:
GROUP BY COUN_COUNTRY_PK_KEYafter joining on the location surrogate. - Postcode-level geography rollups for territory or sales analysis using
POST_POSTCODE_PK_KEY. - Validating that a location resolves to exactly one city/country pair via the unique index on
GLOC_LOCATION_PK_KEY.
Reporting use cases include DBI geography dashboards, multi-level sales-by-region analysis, and reconciling EBS location master data against the warehouse dimension. Access should be routed through supported Oracle reporting programs.
Related Objects
The documented metadata records no foreign keys (standalone classification), so related objects are identified conceptually rather than by enforced constraints:
EDW_GEOGRAPHY_M_PKand the unique indexesEDW_GEOGRAPHY_M_U1andEDW_GEOGRAPHY_M_U2— defined on this table itself, onGLOC_LOCATION_PK_KEYandGLOC_LOCATION_PK.- Warehouse fact tables in the
POAEDW that carryGLOC_LOCATION_PK_KEYas a geography dimension reference. - The EBS
HR_LOCATIONS_ALL/ location master tables, the operational source thatGLOC_*columns summarize. - Geography hierarchy source objects supplying the
ARE1,ARE2,COUN,REGN,STAT,SREG,CITY,PCCY, andPOSTlevels. - Oracle BI/DBI reporting views that join this dimension to fact summaries on
GLOC_LOCATION_PK_KEY.
No authoritative FK relationships are documented for this object, so all joins should be confirmed against the deployment's actual data model before use.
-
TABLE: POA.EDW_GEOGRAPHY_M
12.1.1
owner:POA, object_type:TABLE, fnd_design_data:BIS.EDW_GEOGRAPHY_M POA.EDW_GEOGRAPHY_M, object_name:EDW_GEOGRAPHY_M, status:VALID,
-
eTRM - POA Tables and Views
12.1.1
description: UNSPSC Item interface table ,
-
eTRM - BIS Tables and Views
12.1.1