Search Results property_1245_1250_code
Overview
FA_ADDITIONS_B is the base table of the Oracle Assets (OFA) module that stores descriptive, non-financial information about every asset defined in the Fixed Assets application. The "_B" suffix denotes that this is the base table of an MLS (Multi-Lingual Support) pair; translatable columns such as asset descriptions and descriptive flexfield context values are held in the corresponding FA_ADDITIONS_TL table. One row exists per asset, identified by ASSET_ID, making FA_ADDITIONS_B the central descriptive registry for the asset master.
Based on the foreign key structure mined from the ETRM metadata, the heuristic Data Vault classification for this object is a hub. It anchors a natural business key (ASSET_NUMBER) and a surrogate key (ASSET_ID), and is referenced by a large number of satellite and transactional tables. Note that FA_ADDITIONS_B also carries a self-referencing foreign key on PARENT_ASSET_ID, which introduces a hierarchical edge within the hub and supports parent/child (group) asset relationships.
Key Information Stored
The table is documented with 80 columns. The most significant are:
- ASSET_ID — The surrogate primary key (FA_ADDITIONS_B_PK). It is the internal, system-generated identifier used throughout the Fixed Assets schema as the foreign key from transactional tables.
- ASSET_NUMBER — The user-facing asset number and the primary business key (documented as unique index FA_ADDITIONS_B_U2 and primary key FA_ADDITIONS_B_UK1).
- TAG_NUMBER — The physical asset tag, uniquely enforced by FA_ADDITIONS_B_U3.
- ASSET_KEY_CCID — Foreign key to FA_ASSET_KEYWORDS, supporting the key-flexfield identity of the asset.
- ASSET_CATEGORY_ID — Foreign key to FA_CATEGORIES_B, controlling default depreciation rules and accounts.
- PARENT_ASSET_ID — Self-referencing foreign key establishing group or parent asset hierarchy.
- LEASE_ID — Foreign key to FA_LEASES, linking a leased asset to its lease agreement.
- CURRENT_UNITS — Unit of measure / quantity of the asset.
- ASSET_TYPE — Indicates whether the asset is capitalized or expensed.
- MANUFACTURER_NAME, SERIAL_NUMBER, MODEL_NUMBER — Physical identification attributes.
- IN_USE_FLAG, OWNED_LEASED, NEW_USED — Core status and classification flags.
- PROPERTY_TYPE_CODE, PROPERTY_1245_1250_CODE — Tax classification attributes.
- ATTRIBUTE_CATEGORY_CODE, ATTRIBUTE1–30, CONTEXT — Descriptive flexfield storage.
- GLOBAL_ATTRIBUTE_CATEGORY, GLOBAL_ATTRIBUTE1–20 — Global descriptive flexfield storage used by country-specific localization.
- LAST_UPDATE_DATE, CREATED_BY, CREATION_DATE — Standard WHO audit columns.
Common Use Cases and Queries
Because ASSET_ID is the hub key, most reporting joins FA_ADDITIONS_B to financial satellites such as FA_BOOKS and FA_DEPRN_SUMMARY. Typical scenarios include asset master extraction, tag verification, category roll-ups, and hierarchy reconciliation.
- Asset master listing for a given category:
SELECT a.asset_number, a.tag_number, a.serial_number, c.category_name FROM fa_additions_b a, fa_categories_b c WHERE a.asset_category_id = c.category_id AND a.asset_number = :asset_number; - Joining the hub to cost and depreciation satellites:
SELECT a.asset_number, b.book_type_code, b.date_placed_in_service, d.cost, d.ytd_deprn FROM fa_additions_b a, fa_books b, fa_deprn_summary d WHERE a.asset_id = b.asset_id AND b.book_type_code = d.book_type_code AND b.asset_id = d.asset_id; - Resolving parent/child hierarchy via the self-join on PARENT_ASSET_ID for group asset roll-ups.
- Validating descriptive flexfield values through ATTRIBUTE_CATEGORY_CODE and CONTEXT.
- Reconciling asset numbers against interface staging tables such as FA_MASSADD_REP_ITF and FA_TAX_INTERFACE using GROUP_ASSET_NUMBER / ASSET_NUMBER.
Related Objects
FA_ADDITIONS_B is referenced by a broad set of Fixed Assets tables. The most significant dependencies are:
- FA_BOOKS — Reference by ASSET_ID; stores book-specific cost and depreciation attributes.
- FA_DEPRN_SUMMARY — Reference by ASSET_ID; periodic depreciation balances.
- FA_BOOKS_SUMMARY — Reference by ASSET_ID and GROUP_ASSET_ID.
- FA_CATEGORIES_B — Referenced via ASSET_CATEGORY_ID (asset default rules).
- FA_LEASES — Referenced via LEASE_ID.
- FA_ASSET_KEYWORDS — Referenced via ASSET_KEY_CCID.
- FA_ASSET_HISTORY — Reference by ASSET_ID; audit trail of asset changes.
- FA_ADJUSTMENTS — Reference by ASSET_ID; cost and unit adjustments.
- FA_TRANSACTION_HEADERS — Reference by ASSET_ID; source of posted transactions.
- PA_PROJECT_ASSETS_ALL — Reference by FA_ASSET_ID, PARENT_ASSET_ID, and RET_TARGET_ASSET_ID, linking project assets to Fixed Assets.
These relationships confirm FA_ADDITIONS_B as the hub from which the majority of Fixed Assets transactional and reporting objects derive their key lineage.
-
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 - Assets , description: Descriptive information about assets (base MLS table) , implementation_dba_data: FA.FA_ADDITIONS_B ,
-
Table: FA_CATEGORIES_B
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_CATEGORIES_B, object_name:FA_CATEGORIES_B, status:VALID, product: OFA - Assets , description: Default financial information for asset categories (base MLS table) , implementation_dba_data: FA.FA_CATEGORIES_B ,
-
Table: FA_CATEGORIES_B
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_CATEGORIES_B, object_name:FA_CATEGORIES_B, status:VALID, product: OFA - Assets , description: Default financial information for asset categories (base MLS table) , implementation_dba_data: FA.FA_CATEGORIES_B ,
-
Table: FA_MASS_ADDITIONS_GT
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MASS_ADDITIONS_GT, object_name:FA_MASS_ADDITIONS_GT, status:VALID, product: OFA - Assets , implementation_dba_data: FA.FA_MASS_ADDITIONS_GT ,
-
Table: FA_MASS_ADDITIONS
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MASS_ADDITIONS, object_name:FA_MASS_ADDITIONS, status:VALID, product: OFA - Assets , description: Information about assets that you want to automatically add to Oracle Assets from another system , implementation_dba_data: FA.FA_MASS_ADDITIONS ,
-
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 - Assets , description: Descriptive information about assets (base MLS table) , implementation_dba_data: FA.FA_ADDITIONS_B ,
-
Table: FA_MASS_ADDITIONS_GT
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MASS_ADDITIONS_GT, object_name:FA_MASS_ADDITIONS_GT, status:VALID, product: OFA - Assets , implementation_dba_data: FA.FA_MASS_ADDITIONS_GT ,
-
Table: FA_MASS_ADDITIONS
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MASS_ADDITIONS, object_name:FA_MASS_ADDITIONS, status:VALID, product: OFA - Assets , description: Information about assets that you want to automatically add to Oracle Assets from another system , implementation_dba_data: FA.FA_MASS_ADDITIONS ,
-
View: FA_ADDITIONS_NON_SEC_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_ADDITIONS_NON_SEC_VL, object_name:FA_ADDITIONS_NON_SEC_VL, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_ADDITIONS_NON_SEC_VL ,
-
View: FABV_ASSETS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FABV_ASSETS, object_name:FABV_ASSETS, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FABV_ASSETS ,
-
View: FA_ADDITIONS_NON_SEC_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_ADDITIONS_NON_SEC_VL, object_name:FA_ADDITIONS_NON_SEC_VL, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_ADDITIONS_NON_SEC_VL ,
-
View: FAFV_ASSETS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FAFV_ASSETS, object_name:FAFV_ASSETS, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FAFV_ASSETS ,
-
View: FAFV_ASSETS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FAFV_ASSETS, object_name:FAFV_ASSETS, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FAFV_ASSETS ,
-
View: FA_ASSET_MAINT_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_ASSET_MAINT_VIEW, object_name:FA_ASSET_MAINT_VIEW, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_ASSET_MAINT_VIEW ,
-
View: FABV_ASSETS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FABV_ASSETS, object_name:FABV_ASSETS, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FABV_ASSETS ,
-
View: FA_FUTURE_MASS_ADDITIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_FUTURE_MASS_ADDITIONS_V, object_name:FA_FUTURE_MASS_ADDITIONS_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_FUTURE_MASS_ADDITIONS_V ,
-
View: FA_CATEGORIES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_CATEGORIES_VL, object_name:FA_CATEGORIES_VL, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_CATEGORIES_VL ,
-
View: FA_FUTURE_MASS_ADDITIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_FUTURE_MASS_ADDITIONS_V, object_name:FA_FUTURE_MASS_ADDITIONS_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_FUTURE_MASS_ADDITIONS_V ,
-
View: FA_LEASES_WEB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_LEASES_WEB_V, object_name:FA_LEASES_WEB_V, status:VALID, product: OFA - Assets , description: Information about leases assigned to assets , implementation_dba_data: APPS.FA_LEASES_WEB_V ,
-
View: FA_CATEGORIES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_CATEGORIES_VL, object_name:FA_CATEGORIES_VL, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_CATEGORIES_VL ,
-
View: FA_ADDITIONS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_ADDITIONS_VL, object_name:FA_ADDITIONS_VL, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_ADDITIONS_VL ,
-
View: FA_LEASES_WEB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_LEASES_WEB_V, object_name:FA_LEASES_WEB_V, status:VALID, product: OFA - Assets , description: Information about leases assigned to assets , implementation_dba_data: APPS.FA_LEASES_WEB_V ,
-
View: FA_QUICK_ADDITIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_QUICK_ADDITIONS_V, object_name:FA_QUICK_ADDITIONS_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_QUICK_ADDITIONS_V ,
-
View: FA_ADDITIONS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_ADDITIONS_VL, object_name:FA_ADDITIONS_VL, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_ADDITIONS_VL ,
-
View: FA_QUICK_ADDITIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_QUICK_ADDITIONS_V, object_name:FA_QUICK_ADDITIONS_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_QUICK_ADDITIONS_V ,
-
View: FA_INS_ADDITIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_INS_ADDITIONS_V, object_name:FA_INS_ADDITIONS_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_INS_ADDITIONS_V ,
-
View: FA_INS_ADDITIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_INS_ADDITIONS_V, object_name:FA_INS_ADDITIONS_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_INS_ADDITIONS_V ,
-
View: FA_ADDITIONS_WEB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_ADDITIONS_WEB_V, object_name:FA_ADDITIONS_WEB_V, status:VALID, product: OFA - Assets , description: Contains asset identification information , implementation_dba_data: APPS.FA_ADDITIONS_WEB_V ,
-
View: FA_ADDITIONS_ASSET_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_ADDITIONS_ASSET_V, object_name:FA_ADDITIONS_ASSET_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_ADDITIONS_ASSET_V ,
-
View: FA_ADDITIONS_WEB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_ADDITIONS_WEB_V, object_name:FA_ADDITIONS_WEB_V, status:VALID, product: OFA - Assets , description: Contains asset identification information , implementation_dba_data: APPS.FA_ADDITIONS_WEB_V ,
-
View: FA_ADDITIONS_ASSET_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_ADDITIONS_ASSET_V, object_name:FA_ADDITIONS_ASSET_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_ADDITIONS_ASSET_V ,
-
View: FA_ADDITIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_ADDITIONS_V, object_name:FA_ADDITIONS_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_ADDITIONS_V ,
-
View: FA_ADDITIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_ADDITIONS_V, object_name:FA_ADDITIONS_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_ADDITIONS_V ,
-
View: FA_RETIRED_ASSET_WEB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_RETIRED_ASSET_WEB_V, object_name:FA_RETIRED_ASSET_WEB_V, status:VALID, product: OFA - Assets , description: Information about retired assets , implementation_dba_data: APPS.FA_RETIRED_ASSET_WEB_V ,
-
View: FA_RETIRED_ASSET_WEB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_RETIRED_ASSET_WEB_V, object_name:FA_RETIRED_ASSET_WEB_V, status:VALID, product: OFA - Assets , description: Information about retired assets , implementation_dba_data: APPS.FA_RETIRED_ASSET_WEB_V ,
-
View: FA_EMP_ASSET_WEB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_EMP_ASSET_WEB_V, object_name:FA_EMP_ASSET_WEB_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_EMP_ASSET_WEB_V ,
-
View: FA_EMP_ASSET_WEB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_EMP_ASSET_WEB_V, object_name:FA_EMP_ASSET_WEB_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_EMP_ASSET_WEB_V ,
-
View: FA_MASS_ADDITIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_MASS_ADDITIONS_V, object_name:FA_MASS_ADDITIONS_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_MASS_ADDITIONS_V ,
-
View: FA_MASS_ADDITIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_MASS_ADDITIONS_V, object_name:FA_MASS_ADDITIONS_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_MASS_ADDITIONS_V ,