Search Results ja_cn_system_parameters_u1




Overview

The JA.JA_CN_SYSTEM_PARAMETERS_ALL table is a China localization (JA schema) configuration object within Oracle E-Business Suite 12.1.1 and 12.2.2. It stores the parameters captured through the "System Options" form and serves as the primary source of data consumed by the "Electronic Accounting Book Export" program. Each legal entity is permitted exactly one record in this table, making it the authoritative configuration store for electronic accounting book generation in the Chinese statutory reporting process.

The table resides in the APPS_TS_TX_DATA tablespace with a PCT Free of 10, and its unique index JA_CN_SYSTEM_PARAMETERS_U1 is stored in APPS_TS_TX_IDX. From a Data Vault modeling perspective, the metadata classifies this object heuristically as standalone. In practice, because it carries descriptive, mutable configuration attributes keyed to a business entity rather than consolidating shared entity identifiers, it behaves functionally like a satellite attached to a legal entity hub; the standalone classification reflects that no downstream foreign keys were mined from it. This is a modeling suggestion only, not a physical constraint designation.

Key Information Stored

The table defines 22 documented columns. The most operationally significant include:

Common Use Cases and Queries

Typical scenarios include retrieving the accounting book configuration for a given legal entity, driving the Electronic Accounting Book Export, and validating rounding behavior and account structure setup before statutory submission.

  • Fetch a single entity's configuration:
    SELECT * FROM JA.JA_CN_SYSTEM_PARAMETERS_ALL WHERE LEGAL_ENTITY_ID = :p_legal_entity_id;
  • Reporting on rounding and book metadata across entities:
    SELECT LEGAL_ENTITY_ID, BOOK_NAME, BOOK_NUM, ROUNDING_RULE FROM JA.JA_CN_SYSTEM_PARAMETERS_ALL ORDER BY LEGAL_ENTITY_ID;
  • Auditing recent configuration changes via WHO columns:
    SELECT LEGAL_ENTITY_ID, LAST_UPDATED_BY, LAST_UPDATE_DATE FROM JA.JA_CN_SYSTEM_PARAMETERS_ALL WHERE LAST_UPDATE_DATE > :p_since;
  • Joining to the legal entity master to resolve names (see Related Objects).

Related Objects

The documented foreign key relationship links LEGAL_ENTITY_ID to FV_LEGAL_ENTITIES, establishing the primary parent reference:

  • FV_LEGAL_ENTITIES — join on JA_CN_SYSTEM_PARAMETERS_ALL.LEGAL_ENTITY_ID = FV_LEGAL_ENTITIES.LEGAL_ENTITY_ID.
  • JA_CN_SYSTEM_PARAMETERS_U1 — unique index enforcing one record per legal entity.
  • Electronic Accounting Book Export concurrent program — primary consumer of this table's data.
  • System Options form — the maintenance UI that populates these columns.
  • Set of Books / GL configuration — referenced through SET_OF_BOOKS_ID for ledger association.

Because the table is classified as standalone with a single documented outgoing foreign key, dependent objects are primarily configuration-driven consumers rather than relational children, reinforcing its role as a per-entity localization satellite.