Search Results province_code




Overview

The table JL.JL_AR_AP_PROVINCES is a reference data object within the JL – Latin America Localizations product family of Oracle E-Business Suite. As its description states, it stores Argentine province records, providing the canonical list of provinces and federal districts of Argentina that the Latin America localization modules require for address validation, tax jurisdiction determination, and statutory reporting. The table is owned by the JL schema and is present and valid in both EBS 12.1.1 and 12.2.2. It is a small, slowly changing lookup table that underpins country-specific processing for Argentina in the same manner that analogous localized lookup tables support other Latin American countries.

The ETRM relationship data classifies this object heuristically as standalone under a Data Vault lens. In modeling terms, this suggests the table behaves as a self-contained reference or hub-like structure keyed by a business code, with no documented foreign-key dependencies on other tables. Any satellite-style descriptive attributes (names, flags, audit columns) are carried directly on the same row rather than being separated into dependent child tables.

Key Information Stored

The physical schema documented for 12.2.2 contains 24 columns. The most significant are:

  • PROVINCE_CODE — the primary key, defined by the constraint JL_AR_AP_PROVINCES_PK, and simultaneously the business-key candidate enforced by the unique index JL_AR_AP_PROVINCES_U1. Because the surrogate and business keys coincide, the province code is the stable identifier used throughout the localization for joining and validation.
  • PROVINCE_NAME — the descriptive name of the Argentine province or federal district, used for display, address formatting, and reporting.
  • TERRITORIAL_FLAG — a classification indicator distinguishing provinces from other territorial entities within the Argentine administrative structure.
  • CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard Oracle EBS WHO columns providing audit lineage for each reference row, including the user and timestamp of creation and last modification.
  • ATTRIBUTE_CATEGORY and ATTRIBUTE1 through ATTRIBUTE15 — the standard Oracle EBS descriptive flexfield (DFF) columns, allowing customers to extend province records with additional site-specific attributes without schema changes.

These columns follow the conventional Oracle Application Object Library (AOOL) reference-table pattern, in which a short coded key, a descriptive name, a classification flag, and a generic attribute block together support both seeded and customer-extended data.

Common Use Cases and Queries

The principal use case is populating province-of-residence or province-of-tax-registration lists on Argentine supplier, customer, and employee addresses. Localization logic also references these codes when deriving withholding jurisdictions and when producing statutory reports such as the Argentine VAT book. A typical lookup joins the table to an address table by province code:

  • SELECT province_code, province_name FROM jl.jl_ar_ap_provinces ORDER BY province_name; — populating a list of values in a form or concurrent program parameter.
  • Joining to AP_SUPPLIERS or HZ_LOCATIONS-derived address data to resolve a province code to its display name for invoice and withholding reports.
  • Filtering by TERRITORIAL_FLAG to isolate a specific category of territorial entity for reporting subsets.
  • Extracting ATTRIBUTE1ATTRIBUTE15 where an implementation has configured DFF context via ATTRIBUTE_CATEGORY.

Because the table is seeded reference data, reporting queries should treat it as read-only and join on PROVINCE_CODE rather than on PROVINCE_NAME, which may be subject to translation or correction.

Related Objects

The ETRM metadata records this object as standalone, with no documented foreign keys. Based on its role as an Argentine province reference table in the JL localization, the following objects are the most significant functional dependents or peers:

  • Argentine address and location tables within the JL Latin America localization, which validate or resolve province codes through PROVINCE_CODE.
  • Oracle Payables supplier and invoice tables, where Argentine tax and withholding processing references province identifiers on party sites.
  • Receivables and party (HZ) address structures that store province values for customers and employees operating in Argentina.
  • Analogous country-level JL reference tables (for example, other JL_<COUNTRY>_AP_* province and jurisdiction tables), which share the same design pattern and are maintained in parallel.
  • Withholding and tax jurisdiction setup objects in the JL localization that consume province codes during calculation and reporting.

Because the table is standalone, integration is achieved through value-based joins on PROVINCE_CODE rather than through enforced relational constraints, so data quality depends on consistent use of the seeded codes across the dependent modules.