Search Results fa_tax_interface
Overview
The FA_TAX_INTERFACE table is a core data object within the Oracle E-Business Suite (EBS) Fixed Assets module (OFA). It functions as a staging and interface table specifically designed for managing tax book data. Its primary role is to serve as an intermediary repository for asset tax information that is being processed, validated, or transferred between the corporate book and associated tax books. This includes capturing key tax-specific attributes such as depreciation methods, life, conventions, and Investment Tax Credit (ITC) details before they are formally posted or reconciled within the tax book structures, facilitating accurate tax reporting and compliance.
Key Information Stored
The table stores a combination of asset identifiers and tax-specific depreciation rules. Key columns include the composite primary key of ASSET_NUMBER and BOOK_TYPE_CODE, which links the interface record to a specific asset in a specific book. Other critical columns define the tax depreciation policy: DEPRN_METHOD_CODE and LIFE_IN_MONTHS (referencing FA_METHODS), PRORATE_CONVENTION_CODE (referencing FA_CONVENTION_TYPES), and CEILING_NAME (referencing FA_CEILING_TYPES). The ITC_AMOUNT_ID links to FA_ITC_RATES for tax credit details. The TAX_REQUEST_ID column, referencing FND_CONCURRENT_REQUESTS, is pivotal for tracking and managing the batch processes, such as mass additions transfers or tax book reconciliation, that populate and act upon this interface data.
Common Use Cases and Queries
A primary use case is the review of pending tax book updates or error records during the transfer of assets from the corporate book. Administrators often query this table to diagnose failed transactions or validate data before submission. Common SQL patterns include identifying interface records for a specific asset or batch process, and joining to related master tables for descriptive reporting.
- To find all interface records for a specific concurrent request:
SELECT * FROM fa_tax_interface WHERE tax_request_id = &request_id; - To validate tax depreciation rules for assets pending transfer, joining to descriptive tables:
SELECT fti.asset_number, fti.book_type_code, fm.method_code, fc.convention_code FROM fa_tax_interface fti, fa_methods fm, fa_convention_types fc WHERE fti.deprn_method_code = fm.method_code AND fti.prorate_convention_code = fc.convention_code AND fti.group_asset_id IS NULL;
Related Objects
The FA_TAX_INTERFACE table maintains documented foreign key relationships with several foundational Fixed Assets tables, ensuring referential integrity. These relationships, as per the provided metadata, are:
- FA_ADDITIONS_B: Linked via ASSET_NUMBER and GROUP_ASSET_ID to the core asset master.
- FA_BOOK_CONTROLS: Linked via BOOK_TYPE_CODE to define the book context.
- FA_METHODS: Linked via DEPRN_METHOD_CODE and LIFE_IN_MONTHS for depreciation rules.
- FA_CONVENTION_TYPES: Linked via PRORATE_CONVENTION_CODE for proration rules.
- FA_CEILING_TYPES: Linked via CEILING_NAME for depreciation ceiling rules.
- FA_ITC_RATES: Linked via ITC_AMOUNT_ID for investment tax credit rates.
- FND_CONCURRENT_REQUESTS: Linked via TAX_REQUEST_ID to track the concurrent process.
-
Table: FA_TAX_INTERFACE
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_TAX_INTERFACE, object_name:FA_TAX_INTERFACE, status:VALID, product: OFA - Assets , description: Tax Book Interface table , implementation_dba_data: FA.FA_TAX_INTERFACE ,
-
Table: FA_TAX_INTERFACE
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_TAX_INTERFACE, object_name:FA_TAX_INTERFACE, status:VALID, product: OFA - Assets , description: Tax Book Interface table , implementation_dba_data: FA.FA_TAX_INTERFACE ,
-
APPS.FA_TAX_UPLOAD_PKG dependencies on FA_TAX_INTERFACE
12.1.1
-
APPS.FA_TAX_UPLOAD_PKG dependencies on FA_TAX_INTERFACE
12.2.2
-
APPS.FA_TAX_UPLOAD_PKG SQL Statements
12.2.2
-
SYNONYM: APPS.FA_TAX_INTERFACE
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FA_TAX_INTERFACE, status:VALID,
-
SYNONYM: APPS.FA_TAX_INTERFACE
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FA_TAX_INTERFACE, status:VALID,
-
APPS.FA_TAX_UPLOAD_PKG dependencies on FA_ADDITIONS_B
12.2.2
-
APPS.FA_TAX_UPLOAD_PKG dependencies on FA_BOOKS
12.2.2
-
VIEW: FA.FA_TAX_INTERFACE#
12.2.2
owner:FA, object_type:VIEW, object_name:FA_TAX_INTERFACE#, status:VALID,
-
Table: FA_CEILING_TYPES
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_CEILING_TYPES, object_name:FA_CEILING_TYPES, status:VALID, product: OFA - Assets , description: General ceiling information , implementation_dba_data: FA.FA_CEILING_TYPES ,
-
APPS.FA_TAX_UPLOAD_PKG dependencies on FA_BOOKS
12.1.1
-
APPS.FA_TAX_UPLOAD_PKG dependencies on FA_ADDITIONS_B
12.1.1
-
Table: FA_ITC_RATES
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_ITC_RATES, object_name:FA_ITC_RATES, status:VALID, product: OFA - Assets , description: Investment tax credit (ITC) rate information , implementation_dba_data: FA.FA_ITC_RATES ,
-
Table: FA_ITC_RATES
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_ITC_RATES, object_name:FA_ITC_RATES, status:VALID, product: OFA - Assets , description: Investment tax credit (ITC) rate information , implementation_dba_data: FA.FA_ITC_RATES ,
-
Table: FA_CEILING_TYPES
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_CEILING_TYPES, object_name:FA_CEILING_TYPES, status:VALID, product: OFA - Assets , description: General ceiling information , implementation_dba_data: FA.FA_CEILING_TYPES ,
-
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 ,
-
APPS.FA_TAX_UPLOAD_PKG SQL Statements
12.1.1
-
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_METHODS
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_METHODS, object_name:FA_METHODS, status:VALID, product: OFA - Assets , description: Depreciation method information , implementation_dba_data: FA.FA_METHODS ,
-
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_METHODS
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_METHODS, object_name:FA_METHODS, status:VALID, product: OFA - Assets , description: Depreciation method information , implementation_dba_data: FA.FA_METHODS ,
-
TABLE: FA.FA_TAX_INTERFACE
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_TAX_INTERFACE, object_name:FA_TAX_INTERFACE, status:VALID,
-
PACKAGE BODY: APPS.FA_TAX_UPLOAD_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FA_TAX_UPLOAD_PKG, status:VALID,
-
VIEW: FA.FA_TAX_INTERFACE#
12.2.2
-
PACKAGE BODY: APPS.FA_TAX_UPLOAD_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:FA_TAX_UPLOAD_PKG, status:VALID,
-
APPS.FA_TAX_UPLOAD_PKG dependencies on FA_DEBUG_PKG
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
APPS.FA_TAX_UPLOAD_PKG dependencies on FND_CONCURRENT
12.2.2
-
12.2.2 DBA Data
12.2.2
-
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 ,
-
PACKAGE BODY: APPS.FA_TAX_UPLOAD_PKG
12.2.2
-
Table: FND_CONCURRENT_REQUESTS
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_CONCURRENT_REQUESTS, object_name:FND_CONCURRENT_REQUESTS, status:VALID, product: FND - Application Object Library , description: Concurrent requests information , implementation_dba_data: APPLSYS.FND_CONCURRENT_REQUESTS ,
-
TABLE: FA.FA_TAX_INTERFACE
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_TAX_INTERFACE, object_name:FA_TAX_INTERFACE, status:VALID,
-
Table: FND_CONCURRENT_REQUESTS
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_CONCURRENT_REQUESTS, object_name:FND_CONCURRENT_REQUESTS, status:VALID, product: FND - Application Object Library , description: Concurrent requests information , implementation_dba_data: APPLSYS.FND_CONCURRENT_REQUESTS ,
-
PACKAGE BODY: APPS.FA_TAX_UPLOAD_PKG
12.1.1
-
eTRM - OFA Tables and Views
12.2.2
-
eTRM - OFA Tables and Views
12.1.1
-
eTRM - OFA Tables and Views
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - OFA Tables and Views
12.2.2