Search Results fii_fa_cat_dimensions_s1




Overview

FII_FA_CAT_C is a PL/SQL package body owned by the APPS schema in Oracle E-Business Suite, classified under the ETRM documentation as an "OTHER" API. Its documented purpose in Release 12.1.1 and 12.2.2 is the maintenance of fixed asset category mappings against the Oracle Business Intelligence / Enterprise Performance Management asset analytics schema. Specifically, the package coordinates the creation and synchronisation of FA category rows into the FII_FA_CAT_DIMENSIONS family of tables, which serve as the warehouse-side dimension store that feeds asset category reporting in the FII (Financial Intelligence for Assets) subject areas. Entries written here allow the transactional EBS asset register to be presented consistently against the analytical category dimension, including the segment structure defined for the asset key flexfield.

Key Procedures and Functions

  • NEW_CAT_IN_FA — The primary routine that handles a newly created (or changed) asset category from the FA application side. It determines which category rows require propagation into the FII category dimension tables and performs the associated insert or update logic, including derivation of the flexfield segment values associated with the category.
  • MAIN — The driver entry point for the concurrent or batch execution of the package. It governs the overall synchronisation flow, orchestrates the processing performed by the package, and manages commit and error handling via the shared FII utility and exception-checking routines.

Only these two procedures are formally documented. The package body is marked VALID, indicating it compiles cleanly against the referenced dependencies in the target release.

Tables Accessed

Usage Notes

FII_FA_CAT_C is not called from a standard Oracle Assets form path; it is an internal integration package intended for the FII reporting layer. In practice it is invoked through the concurrent program associated with the MAIN procedure, scheduled whenever asset categories are added or amended and the analytical dimension must be refreshed, or invoked programmatically by other FII packages (the metadata notes it is referenced by one other package). Customers and partners extending the FII asset analytics line should treat the package as an internal API: direct invocation from custom code is possible but carries regression risk across 12.1.1 to 12.2.2 upgrades because the package depends on the FII_FA_CAT_DIMENSIONS_S sequence and the segment structures of the asset key flexfield. Test in a cloned environment before re-running outside the delivered concurrent schedule.