Search Results fa_deprn_detail




Overview

The FA_DEPRN_DETAIL table is a core transactional table within the Oracle E-Business Suite Fixed Assets module (OFA). It stores the detailed, line-level depreciation, amortization, and revaluation accounting entries generated for each asset distribution. Its primary role is to record the precise amounts charged to specific general ledger expense and reserve accounts for every accounting period, enabling granular tracking of depreciation expense by asset, location, and cost center. This table is fundamental to the period-end depreciation process and serves as the detailed source for creating journal entries posted to the General Ledger (GL). The integrity of its data is critical for accurate financial reporting and asset subledger reconciliation.

Key Information Stored

The table's structure captures the intersection of asset, book, distribution, and period. Its primary key comprises BOOK_TYPE_CODE, ASSET_ID, DISTRIBUTION_ID, and PERIOD_COUNTER, ensuring a unique record for each distribution line per period. Key transactional columns include DEPRN_AMOUNT, BONUS_DEPRN_AMOUNT, REVAL_AMORTIZATION, and their corresponding reserve amounts. Critical accounting columns are the Code Combination IDs (CCIDs) such as DEPRN_EXPENSE_CCID and DEPRN_RESERVE_CCID, which link the entry to the GL chart of accounts. Furthermore, it holds references to the resulting General Ledger journals via JE_HEADER_ID and specific JE_LINE_NUM columns for each transaction type, creating a clear audit trail from the asset subledger to the general ledger.

Common Use Cases and Queries

This table is central to depreciation reporting, reconciliation, and troubleshooting. Common operational and reporting scenarios include generating detailed depreciation reports by cost center or location, reconciling the Fixed Assets subledger to the General Ledger, and investigating discrepancies in depreciation expense. A typical query joins to FA_ADDITIONS_B for asset details and FA_DISTRIBUTION_HISTORY for location information.

  • Sample Query for Period Depreciation Detail:
    SELECT fdd.asset_id, fdh.location_id, fdd.deprn_amount, fdd.deprn_expense_ccid
    FROM fa_deprn_detail fdd,
    fa_distribution_history fdh
    WHERE fdd.book_type_code = 'CORPORATE'
    AND fdd.period_counter = 202401
    AND fdd.distribution_id = fdh.distribution_id
    AND fdd.asset_id = fdh.asset_id;
  • Reconciliation to GL: The JE_HEADER_ID and JE_LINE_NUM columns are used to directly trace entries from FA_DEPRN_DETAIL to specific lines in GL_JE_LINES.
  • Data Fixes: Corrections to depreciation runs often involve updating or inserting records in this table, followed by regeneration of journal entries.

Related Objects

FA_DEPRN_DETAIL has extensive relationships with other key Fixed Assets and General Ledger tables, as documented by its foreign keys. Key related objects include:

  • FA_DEPRN_SUMMARY: Joined via BOOK_TYPE_CODE, ASSET_ID, and PERIOD_COUNTER. The summary table holds period totals per asset, while the detail table provides the distribution breakdown.
  • FA_DISTRIBUTION_HISTORY: Joined via DISTRIBUTION_ID and ASSET_ID. This provides the assignment details (e.g., cost center, location) for the depreciation line.
  • FA_DEPRN_PERIODS / FA_BOOK_CONTROLS: Joined via BOOK_TYPE_CODE and PERIOD_COUNTER to validate the accounting period and book.
  • FA_ADDITIONS_B: Joined via ASSET_ID for core asset information.
  • GL_JE_HEADERS & GL_JE_LINES: Multiple foreign keys (e.g., JE_HEADER_ID with DEPRN_EXPENSE_JE_LINE_NUM) link each type of accounting entry to its corresponding General Ledger journal line.
  • GL_CODE_COMBINATIONS: Multiple foreign keys (e.g., DEPRN_EXPENSE_CCID) link the accounting entries to the chart of accounts.
  • Table: FA_DEPRN_DETAIL 12.1.1

    owner:FA,  object_type:TABLE,  fnd_design_data:OFA.FA_DEPRN_DETAIL,  object_name:FA_DEPRN_DETAIL,  status:VALID,  product: OFA - Assetsdescription: Depreciation amounts charged to the depreciation expense account in each distribution line ,  implementation_dba_data: FA.FA_DEPRN_DETAIL

  • Table: FA_DEPRN_DETAIL 12.2.2

    owner:FA,  object_type:TABLE,  fnd_design_data:OFA.FA_DEPRN_DETAIL,  object_name:FA_DEPRN_DETAIL,  status:VALID,  product: OFA - Assetsdescription: Depreciation amounts charged to the depreciation expense account in each distribution line ,  implementation_dba_data: FA.FA_DEPRN_DETAIL

  • Table: FA_DEPRN_DETAIL_H 12.1.1

    owner:FA,  object_type:TABLE,  fnd_design_data:OFA.FA_DEPRN_DETAIL_H,  object_name:FA_DEPRN_DETAIL_H,  status:VALID,  product: OFA - Assetsdescription: Stores the depreciation information originally stored in FA_DEPRN_DETAIL for audit purposes. ,  implementation_dba_data: FA.FA_DEPRN_DETAIL_H

  • Table: FA_DEPRN_DETAIL_H 12.2.2

    owner:FA,  object_type:TABLE,  fnd_design_data:OFA.FA_DEPRN_DETAIL_H,  object_name:FA_DEPRN_DETAIL_H,  status:VALID,  product: OFA - Assetsdescription: Stores the depreciation information originally stored in FA_DEPRN_DETAIL for audit purposes. ,  implementation_dba_data: FA.FA_DEPRN_DETAIL_H

  • Table: FA_DEPRN_SUMMARY 12.2.2

    owner:FA,  object_type:TABLE,  fnd_design_data:OFA.FA_DEPRN_SUMMARY,  object_name:FA_DEPRN_SUMMARY,  status:VALID,  product: OFA - Assetsdescription: Depreciation information at the asset level ,  implementation_dba_data: FA.FA_DEPRN_SUMMARY

  • Table: FA_DEPRN_SUMMARY 12.1.1

    owner:FA,  object_type:TABLE,  fnd_design_data:OFA.FA_DEPRN_SUMMARY,  object_name:FA_DEPRN_SUMMARY,  status:VALID,  product: OFA - Assetsdescription: Depreciation information at the asset level ,  implementation_dba_data: FA.FA_DEPRN_SUMMARY

  • Table: FA_GROUP_DEPRN_DETAIL 12.2.2

    owner:FA,  object_type:TABLE,  fnd_design_data:OFA.FA_GROUP_DEPRN_DETAIL,  object_name:FA_GROUP_DEPRN_DETAIL,  status:VALID,  product: OFA - Assetsdescription: Redundant - mirrors FA_DEPRN_DETAIL and exists purely to store information returned by the depreciation process. Would usually store depreciation charged to expense accounts identified in the distribution list of an asset - since group ass ,  implementation_dba_data: FA.FA_GROUP_DEPRN_DETAIL

  • View: FABV_DEPRECIATIONS 12.1.1

    owner:APPS,  object_type:VIEW,  fnd_design_data:OFA.FABV_DEPRECIATIONS,  object_name:FABV_DEPRECIATIONS,  status:VALID,  product: OFA - Assetsdescription: - Retrofitted ,  implementation_dba_data: APPS.FABV_DEPRECIATIONS

  • View: FABV_DEPRECIATIONS 12.2.2

    owner:APPS,  object_type:VIEW,  fnd_design_data:OFA.FABV_DEPRECIATIONS,  object_name:FABV_DEPRECIATIONS,  status:VALID,  product: OFA - Assetsdescription: - Retrofitted ,  implementation_dba_data: APPS.FABV_DEPRECIATIONS

  • Table: FA_GROUP_DEPRN_DETAIL 12.1.1

    owner:FA,  object_type:TABLE,  fnd_design_data:OFA.FA_GROUP_DEPRN_DETAIL,  object_name:FA_GROUP_DEPRN_DETAIL,  status:VALID,  product: OFA - Assetsdescription: Redundant - mirrors FA_DEPRN_DETAIL and exists purely to store information returned by the depreciation process. Would usually store depreciation charged to expense accounts identified in the distribution list of an asset - since group ass ,  implementation_dba_data: FA.FA_GROUP_DEPRN_DETAIL

  • Table: FA_DISTRIBUTION_HISTORY 12.1.1

    owner:FA,  object_type:TABLE,  fnd_design_data:OFA.FA_DISTRIBUTION_HISTORY,  object_name:FA_DISTRIBUTION_HISTORY,  status:VALID,  product: OFA - Assetsdescription: Employee, location, and Accounting Flexfield values assigned to each asset ,  implementation_dba_data: FA.FA_DISTRIBUTION_HISTORY

  • View: FAFV_DEPRECIATIONS 12.1.1

    owner:APPS,  object_type:VIEW,  fnd_design_data:OFA.FAFV_DEPRECIATIONS,  object_name:FAFV_DEPRECIATIONS,  status:VALID,  product: OFA - Assetsdescription: - Retrofitted ,  implementation_dba_data: APPS.FAFV_DEPRECIATIONS

  • View: FAFV_DEPRECIATIONS 12.2.2

    owner:APPS,  object_type:VIEW,  fnd_design_data:OFA.FAFV_DEPRECIATIONS,  object_name:FAFV_DEPRECIATIONS,  status:VALID,  product: OFA - Assetsdescription: - Retrofitted ,  implementation_dba_data: APPS.FAFV_DEPRECIATIONS

  • Table: FA_DISTRIBUTION_HISTORY 12.2.2

    owner:FA,  object_type:TABLE,  fnd_design_data:OFA.FA_DISTRIBUTION_HISTORY,  object_name:FA_DISTRIBUTION_HISTORY,  status:VALID,  product: OFA - Assetsdescription: Employee, location, and Accounting Flexfield values assigned to each asset ,  implementation_dba_data: FA.FA_DISTRIBUTION_HISTORY

  • Table: FA_DEPRN_PERIODS 12.1.1

    owner:FA,  object_type:TABLE,  fnd_design_data:OFA.FA_DEPRN_PERIODS,  object_name:FA_DEPRN_PERIODS,  status:VALID,  product: OFA - Assetsdescription: Information about each depreciation period ,  implementation_dba_data: FA.FA_DEPRN_PERIODS

  • Table: FA_DEPRN_PERIODS 12.2.2

    owner:FA,  object_type:TABLE,  fnd_design_data:OFA.FA_DEPRN_PERIODS,  object_name:FA_DEPRN_PERIODS,  status:VALID,  product: OFA - Assetsdescription: Information about each depreciation period ,  implementation_dba_data: FA.FA_DEPRN_PERIODS

  • View: FA_DEPRN_WEB_V 12.1.1

    owner:APPS,  object_type:VIEW,  fnd_design_data:OFA.FA_DEPRN_WEB_V,  object_name:FA_DEPRN_WEB_V,  status:VALID,  product: OFA - Assetsdescription: Depreciation information for an asset in a given depreciation book ,  implementation_dba_data: APPS.FA_DEPRN_WEB_V

  • View: FA_DEPRN_WEB_V 12.2.2

    owner:APPS,  object_type:VIEW,  fnd_design_data:OFA.FA_DEPRN_WEB_V,  object_name:FA_DEPRN_WEB_V,  status:VALID,  product: OFA - Assetsdescription: Depreciation information for an asset in a given depreciation book ,  implementation_dba_data: APPS.FA_DEPRN_WEB_V

  • Table: FA_ADDITIONS_B 12.1.1

    owner:FA,  object_type:TABLE,  fnd_design_data:OFA.FA_ADDITIONS_B,  object_name:FA_ADDITIONS_B,  status:VALID,  product: OFA - Assetsdescription: Descriptive information about assets (base MLS table) ,  implementation_dba_data: FA.FA_ADDITIONS_B

  • Table: FA_BOOK_CONTROLS 12.1.1

    owner:FA,  object_type:TABLE,  fnd_design_data:OFA.FA_BOOK_CONTROLS,  object_name:FA_BOOK_CONTROLS,  status:VALID,  product: OFA - Assetsdescription: Control information that affects all assets in a depreciation book ,  implementation_dba_data: FA.FA_BOOK_CONTROLS

  • Table: FA_BOOK_CONTROLS 12.2.2

    owner:FA,  object_type:TABLE,  fnd_design_data:OFA.FA_BOOK_CONTROLS,  object_name:FA_BOOK_CONTROLS,  status:VALID,  product: OFA - Assetsdescription: Control information that affects all assets in a depreciation book ,  implementation_dba_data: FA.FA_BOOK_CONTROLS

  • Table: FA_ADDITIONS_B 12.2.2

    owner:FA,  object_type:TABLE,  fnd_design_data:OFA.FA_ADDITIONS_B,  object_name:FA_ADDITIONS_B,  status:VALID,  product: OFA - Assetsdescription: Descriptive information about assets (base MLS table) ,  implementation_dba_data: FA.FA_ADDITIONS_B

  • View: FA_FIN_INQRY_DEPRN_WEB_V 12.2.2

    owner:APPS,  object_type:VIEW,  fnd_design_data:OFA.FA_FIN_INQRY_DEPRN_WEB_V,  object_name:FA_FIN_INQRY_DEPRN_WEB_V,  status:VALID,  product: OFA - Assetsdescription: Depreciation history information ,  implementation_dba_data: APPS.FA_FIN_INQRY_DEPRN_WEB_V

  • View: FA_FIN_INQRY_DEPRN_WEB_V 12.1.1

    owner:APPS,  object_type:VIEW,  fnd_design_data:OFA.FA_FIN_INQRY_DEPRN_WEB_V,  object_name:FA_FIN_INQRY_DEPRN_WEB_V,  status:VALID,  product: OFA - Assetsdescription: Depreciation history information ,  implementation_dba_data: APPS.FA_FIN_INQRY_DEPRN_WEB_V