Search Results fa_categories_b




Overview

The FA_CATEGORIES_B table is a core master data table within the Oracle E-Business Suite Fixed Assets (OFA) module. It serves as the base table for storing default financial information for asset categories. As a Multi-Language Support (MLS) base table, it holds the language-independent data, while its corresponding translation table (FA_CATEGORIES_TL) stores the language-specific descriptions. Asset categories are a fundamental classification mechanism in Fixed Assets, grouping assets with similar characteristics, such as computers, vehicles, or machinery, to streamline accounting rules, depreciation methods, and reporting. This table is the primary source for defining these categories and their default accounting behavior.

Key Information Stored

The primary identifier for a category is the CATEGORY_ID, which is the table's primary key. While the provided metadata does not list all columns, based on its role as the category definition table, it typically stores critical default financial and control attributes. These commonly include the segment-separated category key, the associated asset cost account, depreciation expense account, accumulated depreciation account, and the category type (e.g., CAPITALIZED, EXPENSED). The table also defines default rules for prorate conventions, depreciation methods, and life calculations that can be inherited by assets assigned to the category, ensuring consistent accounting treatment.

Common Use Cases and Queries

This table is central to asset setup, transaction processing, and reporting. Common operational and reporting queries involve joining FA_CATEGORIES_B to asset transaction tables to analyze assets by category. For instance, to report all capitalized assets with their category details, a typical query would join to FA_ADDITIONS_B. Sample SQL patterns include retrieving a list of all active categories or analyzing default account flexfields by category for reconciliation purposes. The table is also critical for mass transaction processes, such as mass additions, mass changes, and mass reclassifications, where the category ID is used to identify groups of assets for bulk processing, as evidenced by the numerous foreign key relationships from transaction interface and processing tables.

Related Objects

FA_CATEGORIES_B is a highly referenced master table. Its primary key, CATEGORY_ID, is a foreign key in numerous critical transaction and setup tables. Key related objects include:

  • FA_ADDITIONS_B: Links an asset to its category via ASSET_CATEGORY_ID.
  • FA_CATEGORY_BOOKS: Stores category-specific depreciation rules for each asset book.
  • FA_MASS_ADDITIONS & FA_MASS_CHANGES: Reference the category for processing batched transactions.
  • FA_ASSET_HISTORY: Tracks historical changes to an asset's category.
  • MTL_SYSTEM_ITEMS_B: Links inventory items to an asset category for automatic asset creation.
  • Translation Table: FA_CATEGORIES_TL, which stores the translated category name and description.
These relationships underscore the table's integral role in ensuring data integrity and enforcing business rules across the Fixed Assets lifecycle.