Search Results jl_co_fa_adjustments




Overview

JL_CO_FA_ADJUSTMENTS is a Latin America Localizations (JL) table that stores accounting information pertaining to Colombian Oracle Assets. It resides in the JL schema and is classified as VALID within Oracle EBS 12.1.1 and 12.2.2. The table captures the adjustment and journal-entry detail generated when fixed asset transactions in Colombian asset books are revalued, adjusted for inflation, or otherwise reconciled to local statutory accounting requirements. Each row represents a discrete accounting adjustment line tied to a specific asset, asset book, and general ledger code combination.

Under the heuristic Data Vault classification mined from its foreign-key structure, this object behaves as a link table rather than a hub or satellite. It does not introduce a natural business key of its own; instead it associates existing hubs — assets, books, distributions, and GL accounts — through foreign keys, and layers descriptive measures (adjustment amounts, adjustment type, posting flags) onto those associations. This makes it a suitable candidate for modeling as a link construct with an associated satellite for the transactional attributes.

Key Information Stored

The table contains 27 documented columns. The following are the most significant:

Common Use Cases and Queries

Typical uses include Colombian statutory reporting, reconciliation of asset book balances to GL, and audit of inflation or revaluation adjustments. A common query joins the table to its parent entities:

  • Listing all adjustments for an asset and book: SELECT * FROM JL_CO_FA_ADJUSTMENTS WHERE asset_id = :asset_id AND book_type_code = :book;
  • Posting status review: filter on POSTING_FLAG and PERIOD_COUNTER_CREATED to find unposted adjustments pending GL transfer.
  • Account analysis: aggregate ADJUSTMENT_AMOUNT by CODE_COMBINATION_ID to reconcile Colombian asset accounts.
  • Tracing back to source distributions via DISTRIBUTION_ID for drill-down from reporting to asset transaction detail.

Related Objects

  • FA_ADDITIONS_B — joined on ASSET_ID; supplies asset identity.
  • FA_BOOK_CONTROLS — joined on BOOK_TYPE_CODE; supplies book definition and calendar.
  • GL_CODE_COMBINATIONS — joined on CODE_COMBINATION_ID; supplies account description.
  • FA_DISTRIBUTION_HISTORY — joined on DISTRIBUTION_ID; supplies source distribution detail.
  • FA_JOURNAL_HEADERS / GL_JE_HEADERS — referenced through JE_HEADER_REFERENCE_ID for journal traceability.