Search Results fa_categories_vl
Overview
FA_CATEGORIES_VL is a multilingual (VL) view owned by the APPS schema in Oracle E-Business Suite Release 12.1.1 and 12.2.2, delivered as part of the Oracle Assets (OFA) product family. The view presents asset category definitions in the session's current language by joining the base category table to its translation table. Asset categories classify fixed assets for capitalization, depreciation, and reporting purposes, and this view exposes both the descriptive translation (category description) and the operational attributes required to drive Oracle Assets processing. Because it is a VL view, it resolves the translated description using the USERENV('LANG') session parameter, ensuring that users see descriptions in their nominated language. The object carries a VALID status in the ETRM metadata, confirming that it is a supported, compiled database object available for reporting and integration use.
Underlying Base Objects
The view is defined over two documented base objects, referenced in the ETRM metadata as synonyms in the APPS schema:
- FA_CATEGORIES_B — the base (non-translated) table holding the category identifier and all operational attributes such as segmentation, flags, dates, and descriptive flexfield attributes.
- FA_CATEGORIES_TL — the translation table holding the language-specific DESCRIPTION column, keyed by CATEGORY_ID and LANGUAGE.
The defining query joins the two on CATEGORY_ID and filters the translation rows with T.LANGUAGE = USERENV('LANG'), so only the row matching the current runtime language is returned. The view text additionally selects B.ROWID AS ROW_ID, permitting the view to be treated as updatable in certain contexts while still surfacing the underlying row identity.
Key Columns
- ROW_ID — the ROWID of the underlying FA_CATEGORIES_B row; useful for row-level identification and updates.
- CATEGORY_ID — the primary surrogate key linking base and translation records; the join and foreign-key anchor for related asset tables.
- DESCRIPTION — the language-specific category name sourced from FA_CATEGORIES_TL.
- SUMMARY_FLAG, ENABLED_FLAG, CAPITALIZE_FLAG — control flags indicating whether the category is a summary node, currently enabled, and capitalized by default.
- OWNED_LEASEED / CATEGORY_TYPE — classification attributes for ownership and category type.
- SEGMENT1–SEGMENT7 — the key flexfield segments defining the category's accounting and grouping structure.
- START_DATE_ACTIVE / END_DATE_ACTIVE / DATE_INEFFECTIVE — date-range columns governing when the category is active.
- PROPERTY_TYPE_CODE, PROPERTY_1245_1250_CODE — property tax classification attributes.
- ATTRIBUTE1–15, ATTRIBUTE_CATEGORY_CODE, PRODUCTION_CAPACITY — descriptive flexfield columns and related capacity attribute.
- GLOBAL_ATTRIBUTE1–20, GLOBAL_ATTRIBUTE_CATEGORY — global descriptive flexfield columns for localization.
Common Use Cases and Queries
Typical scenarios include validating category definitions before asset additions, driving reporting joins against FA_ADDITIONS or FA_BOOK_CONTROLS, and populating LOVs or integration extracts. A representative query is:
SELECT category_id, description, segment1, enabled_flag FROM fa_categories_vl WHERE enabled_flag = 'Y' AND NVL(end_date_active, SYSDATE+1) > SYSDATE;SELECT b.category_id, v.description FROM fa_additions b, fa_categories_vl v WHERE b.category_id = v.category_id;
Because the view resolves language dynamically, developers should avoid hard-coded language filters and instead rely on USERENV('LANG') semantics when reporting multilingual category descriptions.
-
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_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: APPS.OKL_AM_AMORT_HOLD_SETUPS_UV
12.2.2
-
VIEW: APPS.OKL_AM_ASSET_DETAILS_CHR_UV
12.2.2
-
VIEW: APPS.OKL_AM_ASSET_DETAILS_UV
12.2.2
-
VIEW: APPS.OKL_AM_AMORT_HOLD_SETUPS_UV
12.1.1
-
VIEW: APPS.OKL_AM_ASSET_DETAILS_UV
12.1.1
-
VIEW: APPS.OKL_AM_ASSET_DETAILS_CHR_UV
12.1.1
-
SYNONYM: APPS.FA_CATEGORIES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FA_CATEGORIES_TL, status:VALID,
-
View: OKL_AM_AMORT_HOLD_SETUPS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_AMORT_HOLD_SETUPS_UV, object_name:OKL_AM_AMORT_HOLD_SETUPS_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_AM_AMORT_HOLD_SETUPS_UV ,
-
View: OKL_AM_AMORT_HOLD_SETUPS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_AMORT_HOLD_SETUPS_UV, object_name:OKL_AM_AMORT_HOLD_SETUPS_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_AM_AMORT_HOLD_SETUPS_UV ,
-
SYNONYM: APPS.FA_CATEGORIES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FA_CATEGORIES_TL, status:VALID,
-
VIEW: APPS.OKL_AM_SALVAGE_VALUE_WD_UV
12.1.1
-
VIEW: APPS.OKL_AM_SALVAGE_VALUE_WD_UV
12.2.2
-
PACKAGE BODY: APPS.OKL_AMH_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_AMH_PVT, status:VALID,
-
SYNONYM: APPS.FA_CATEGORIES_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FA_CATEGORIES_B, status:VALID,
-
PACKAGE BODY: APPS.OKL_AMH_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_AMH_PVT, status:VALID,
-
VIEW: APPS.OKL_AM_OFF_LEASE_TRX_UV
12.1.1
-
SYNONYM: APPS.FA_CATEGORIES_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FA_CATEGORIES_B, status:VALID,
-
View: OKL_AM_ASSET_DETAILS_CHR_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_ASSET_DETAILS_CHR_UV, object_name:OKL_AM_ASSET_DETAILS_CHR_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_AM_ASSET_DETAILS_CHR_UV ,
-
View: OKL_AM_ASSET_DETAILS_CHR_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_ASSET_DETAILS_CHR_UV, object_name:OKL_AM_ASSET_DETAILS_CHR_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_AM_ASSET_DETAILS_CHR_UV ,
-
View: OKL_AM_ASSET_DETAILS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_ASSET_DETAILS_UV, object_name:OKL_AM_ASSET_DETAILS_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_AM_ASSET_DETAILS_UV ,
-
View: OKL_AM_ASSET_DETAILS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_ASSET_DETAILS_UV, object_name:OKL_AM_ASSET_DETAILS_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_AM_ASSET_DETAILS_UV ,
-
VIEW: APPS.OKL_AM_OFF_LEASE_TRX_UV
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.OKL_AM_OFF_LSE_TRX_UPD_UV
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.OKL_AM_OFF_LSE_TRX_UPD_UV
12.2.2
-
View: OKL_AM_SALVAGE_VALUE_WD_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_SALVAGE_VALUE_WD_UV, object_name:OKL_AM_SALVAGE_VALUE_WD_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_AM_SALVAGE_VALUE_WD_UV ,
-
VIEW: APPS.OKL_AM_ASSET_DETAILS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_ASSET_DETAILS_UV, object_name:OKL_AM_ASSET_DETAILS_UV, status:VALID,
-
VIEW: APPS.OKL_AM_ASSET_DETAILS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_ASSET_DETAILS_UV, object_name:OKL_AM_ASSET_DETAILS_UV, status:VALID,
-
PACKAGE BODY: APPS.OKL_AM_QUOTES_WF
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_AM_QUOTES_WF, status:VALID,
-
SYNONYM: APPS.FA_CATEGORIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FA_CATEGORIES, status:VALID,
-
VIEW: APPS.OKL_AM_ASSET_DETAILS_CHR_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_ASSET_DETAILS_CHR_UV, object_name:OKL_AM_ASSET_DETAILS_CHR_UV, status:VALID,
-
View: OKL_AM_SALVAGE_VALUE_WD_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_SALVAGE_VALUE_WD_UV, object_name:OKL_AM_SALVAGE_VALUE_WD_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_AM_SALVAGE_VALUE_WD_UV ,
-
VIEW: APPS.OKL_AM_ASSET_DETAILS_CHR_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_ASSET_DETAILS_CHR_UV, object_name:OKL_AM_ASSET_DETAILS_CHR_UV, status:VALID,
-
View: OKL_AM_OFF_LEASE_TRX_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_OFF_LEASE_TRX_UV, object_name:OKL_AM_OFF_LEASE_TRX_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_AM_OFF_LEASE_TRX_UV ,
-
VIEW: APPS.OKL_AM_AMORT_HOLD_SETUPS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_AMORT_HOLD_SETUPS_UV, object_name:OKL_AM_AMORT_HOLD_SETUPS_UV, status:VALID,
-
VIEW: APPS.OKL_AM_AMORT_HOLD_SETUPS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_AMORT_HOLD_SETUPS_UV, object_name:OKL_AM_AMORT_HOLD_SETUPS_UV, status:VALID,
-
SYNONYM: APPS.FA_CATEGORIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FA_CATEGORIES, status:VALID,
-
PACKAGE BODY: APPS.OKL_AM_QUOTES_WF
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_AM_QUOTES_WF, status:VALID,
-
VIEW: APPS.OKL_AM_SALVAGE_VALUE_WD_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_SALVAGE_VALUE_WD_UV, object_name:OKL_AM_SALVAGE_VALUE_WD_UV, status:VALID,
-
View: OKL_AM_OFF_LEASE_TRX_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_OFF_LEASE_TRX_UV, object_name:OKL_AM_OFF_LEASE_TRX_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_AM_OFF_LEASE_TRX_UV ,
-
VIEW: APPS.OKL_AM_SALVAGE_VALUE_WD_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_SALVAGE_VALUE_WD_UV, object_name:OKL_AM_SALVAGE_VALUE_WD_UV, status:VALID,
-
View: OKL_AM_OFF_LSE_TRX_UPD_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_OFF_LSE_TRX_UPD_UV, object_name:OKL_AM_OFF_LSE_TRX_UPD_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_AM_OFF_LSE_TRX_UPD_UV ,
-
VIEW: APPS.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,
-
View: OKL_AM_OFF_LSE_TRX_UPD_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_OFF_LSE_TRX_UPD_UV, object_name:OKL_AM_OFF_LSE_TRX_UPD_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_AM_OFF_LSE_TRX_UPD_UV ,
-
VIEW: APPS.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,
-
VIEW: APPS.OKL_AM_OFF_LEASE_TRX_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_OFF_LEASE_TRX_UV, object_name:OKL_AM_OFF_LEASE_TRX_UV, status:VALID,
-
VIEW: APPS.OKL_AM_OFF_LEASE_TRX_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_OFF_LEASE_TRX_UV, object_name:OKL_AM_OFF_LEASE_TRX_UV, status:VALID,