Search Results fa_system_controls




Overview

FA.FA_SYSTEM_CONTROLS is a standalone configuration table in the Oracle Assets (OFA) module of Oracle E-Business Suite, holding system-wide control values that govern asset processing for an entire Oracle Assets installation. Unlike operational tables that store transactions or asset records, this table functions as a singleton control record — the metadata documents a single-row primary key composed of COMPANY_NAME, which effectively anchors the control values to one company (and therefore one ledger/book context via the associated GL_APPLICATION_ID and FA_APPLICATION_ID). Every depreciation run, mass addition, and asset numbering event consults these controls as defaults, making the table a foundational reference point rather than a transactional one.

From a Data Vault modeling perspective, the heuristic classification mined from the foreign-key structure is standalone — the table neither participates as a hub nor as a link, and its COMPANY_NAME primary key behaves more like a natural business key than a surrogate identifier. In a Data Vault design this would typically suggest a small reference or satellite-style entity capturing configuration state rather than an associative structure.

Key Information Stored

The most operationally significant columns include the following. The primary key is COMPANY_NAME (documented as FA_SYSTEM_CONTROLS_PK), serving as both the surrogate and business identifier for the control row.

Common Use Cases and Queries

Typical reporting and troubleshooting scenarios include verifying the default in-service date, confirming flexfield structure assignments, or auditing the last mass addition posting. A representative query to inspect controls is:

SELECT COMPANY_NAME, DATE_PLACED_IN_SERVICE, INITIAL_ASSET_ID, USE_CUSTOM_ASSET_NUMBERS_FLAG, LAST_MASS_ADDITIONS_POST FROM FA.FA_SYSTEM_CONTROLS;

Because of the singleton design, applications and reports frequently join this row to asset data to supply defaults or to validate that flexfield structures align with the structures assigned on asset records. Auditors often query LAST_MASS_ADDITIONS and LAST_MASS_ADDITIONS_POST to confirm that period-end mass additions were posted before depreciation close.

Related Objects

The metadata classifies this table as standalone with no foreign keys, so dependents are inferred from function rather than documented FK columns. Significant related objects include:

  • FA_ADDITIONS — asset records that inherit default in-service dates and numbering rules.
  • FA_BOOK_CONTROLS — book-level controls that complement system-wide controls and share flexfield structure references.
  • FA_MASS_ADDITIONS — mass addition transactions validated against the last-post timestamps.
  • FA_CATEGORIES — categories referenced by CATEGORY_FLEX_STRUCTURE.
  • FA_LOCATIONS — locations governed by LOCATION_FLEX_STRUCTURE.
  • The Assets setup forms and concurrent programs (e.g., mass additions, depreciation) that read these controls at runtime.