Search Results iby_paymentcard




Overview

FND_TERRITORIES is a reference (lookup) table owned by the APPLSYS schema and delivered as part of the FND – Application Object Library product in Oracle E-Business Suite 12.1.1 and 12.2.2. It stores the master list of territories, which in EBS terminology correspond to countries and nationally recognized geographic/political entities. Nearly every EBS module that records an address, a bank, a tax registration, a multicurrency transaction, or a party record ultimately resolves a country reference against this table. Because it holds the authoritative single-row-per-territory definition, it is a foundational master data object rather than a transactional one.

From a modeling perspective, the mined relationship structure classifies FND_TERRITORIES as a hub-leaning object — a centrally referenced dimension whose primary key is consumed by many downstream fact and detail tables. In Data Vault terms it behaves like a hub (business key = territory) with descriptive satellite attributes carried in the same table and in its translated counterpart.

Key Information Stored

The documented physical schema contains 17 columns. The most consequential are:

Common Use Cases and Queries

Typical usage includes populating country LOVs, resolving codes to names (via FND_TERRITORIES_TL), and validating address and bank reference data. A frequent reporting pattern joins the translated view:

  • SELECT t.territory_code, t.iso_territory_code, t.obsolete_flag FROM fnd_territories t WHERE t.obsolete_flag = 'N';
  • SELECT t.territory_code, tl.territory_short_name FROM fnd_territories_tl tl WHERE tl.language = USERENV('LANG');
  • Joining to party/location data: SELECT l.location_id, t.territory_code FROM hz_locations l, fnd_territories t WHERE l.country = t.territory_code;

Queries also support tax regime lookups (ZX_REGIMES_B.COUNTRY_CODE), bank instruction country resolution (IBY_*), and inventory country assignments (MTL_COUNTRY_ASSIGNMENTS).

Related Objects

FND_TERRITORIES is referenced by an extensive set of downstream tables. The most significant relationships include:

These dependencies confirm FND_TERRITORIES as a shared hub whose integrity directly affects address, tax, payment, and party processing across the EBS data model.