Search Results fa_mass_changes_itf
Overview
The FA_MASS_CHANGES_ITF table is a core interface table within the Oracle E-Business Suite Fixed Assets module (OFA). Its primary role is to serve as the staging area for data processed through the Report eXchange (REP X) functionality, specifically for mass change operations. In Oracle EBS 12.1.1 and 12.2.2, REP X is a mechanism that allows users to generate reports, modify the data in the report output, and then load those modifications back into the application to execute transactions. This table acts as the intermediary repository for mass change data—such as transferring assets, changing depreciation rules, or modifying asset categories—before it is validated and posted to the core transaction tables by the relevant concurrent programs.
Key Information Stored
While the specific column list is not detailed in the provided metadata, the foreign key relationships explicitly define the critical data elements the table must store. Each record represents a proposed change for a specific asset in a specific book. Key reference columns include MASS_CHANGE_ID (linking to the parent transaction header), ASSET_ID or ASSET_NUMBER, and BOOK. The table holds both the original ("FROM") and target ("TO") values for the attributes being changed, as evidenced by columns like FROM_BONUS_RULE, TO_BONUS_RULE, FROM_CONVENTION, TO_CONVENTION, FROM_GROUP_ASSET_NUMBER, and TO_GROUP_ASSET_NUMBER. This structure allows the interface to capture the complete change specification for each asset.
Common Use Cases and Queries
The primary use case is the execution of high-volume asset modifications via the REP X process. A typical workflow involves generating a mass change report, editing the output file, and using a loader program to populate FA_MASS_CHANGES_ITF. A subsequent concurrent program (e.g., Process Mass Changes) validates the interface data and creates final transactions in tables like FA_MASS_CHANGES. Common diagnostic queries involve checking for unprocessed or error records. For example:
SELECT asset_number, book, from_bonus_rule, to_bonus_rule, request_id
FROM fa_mass_changes_itf
WHERE process_status IS NULL OR process_status = 'ERROR';
Another pattern is joining to FA_ADDITIONS_B to get asset descriptions for review reports before submission.
Related Objects
The table has integral relationships with several core Fixed Assets tables, as documented by its foreign keys:
- FA_MASS_CHANGES: Linked via MASS_CHANGE_ID. This is the primary transactional header table for mass changes.
- FA_ADDITIONS_B: Linked via ASSET_ID, ASSET_NUMBER, FROM_GROUP_ASSET_NUMBER, and TO_GROUP_ASSET_NUMBER. This provides the master asset information for both the asset being changed and any specified group assets.
- FA_BOOK_CONTROLS: Linked via BOOK. This validates the asset book for the change.
- FA_CONVENTION_TYPES: Linked via FROM_CONVENTION and TO_CONVENTION. This validates depreciation convention codes.
- FA_BONUS_RULES: Linked via FROM_BONUS_RULE and TO_BONUS_RULE. This validates bonus depreciation rule codes.
These relationships ensure data integrity by enforcing referential constraints on all key identifiers during the interface loading process.
-
Table: FA_MASS_CHANGES_ITF
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MASS_CHANGES_ITF, object_name:FA_MASS_CHANGES_ITF, status:VALID, product: OFA - Assets , description: Interface table for Report eXchange reports , implementation_dba_data: FA.FA_MASS_CHANGES_ITF ,
-
Table: FA_MASS_CHANGES_ITF
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MASS_CHANGES_ITF, object_name:FA_MASS_CHANGES_ITF, status:VALID, product: OFA - Assets , description: Interface table for Report eXchange reports , implementation_dba_data: FA.FA_MASS_CHANGES_ITF ,
-
Table: FA_BONUS_RULES
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_BONUS_RULES, object_name:FA_BONUS_RULES, status:VALID, product: OFA - Assets , description: Bonus rule information used by the Depreciation program , implementation_dba_data: FA.FA_BONUS_RULES ,
-
Table: FA_CONVENTION_TYPES
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_CONVENTION_TYPES, object_name:FA_CONVENTION_TYPES, status:VALID, product: OFA - Assets , description: Names and descriptions for prorate conventions , implementation_dba_data: FA.FA_CONVENTION_TYPES ,
-
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_CONVENTION_TYPES
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_CONVENTION_TYPES, object_name:FA_CONVENTION_TYPES, status:VALID, product: OFA - Assets , description: Names and descriptions for prorate conventions , implementation_dba_data: FA.FA_CONVENTION_TYPES ,
-
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_BONUS_RULES
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_BONUS_RULES, object_name:FA_BONUS_RULES, status:VALID, product: OFA - Assets , description: Bonus rule information used by the Depreciation program , implementation_dba_data: FA.FA_BONUS_RULES ,
-
Table: FA_MASS_CHANGES
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MASS_CHANGES, object_name:FA_MASS_CHANGES, status:VALID, product: OFA - Assets , description: Mass change request information , implementation_dba_data: FA.FA_MASS_CHANGES ,
-
Table: FA_MASS_CHANGES
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MASS_CHANGES, object_name:FA_MASS_CHANGES, status:VALID, product: OFA - Assets , description: Mass change request information , implementation_dba_data: FA.FA_MASS_CHANGES ,
-
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 - Assets , description: Control information that affects all assets in a depreciation book , implementation_dba_data: FA.FA_BOOK_CONTROLS ,
-
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 - Assets , description: Control information that affects all assets in a depreciation book , implementation_dba_data: FA.FA_BOOK_CONTROLS ,