Search Results payables_batch_name
Overview
FA_MC_ASSET_INVOICES is a table in the FA (Fixed Assets) schema belonging to the OFA – Assets product in Oracle E-Business Suite 12.1.1 and 12.2.2. It stores accounts payable and purchasing information for each asset, expressed in the reporting currency rather than the functional currency. The "MC" prefix reflects the multi-currency (reporting currency) copy of asset invoice data maintained by the Assets module for reporting and revaluation purposes. In the documented 12.2.2 physical schema, the table contains 63 columns, owned by FA with status VALID.
From a Data Vault modeling perspective, the metadata heuristic classifies this table as a link object. It associates an asset with the AP/PO documents that contributed to its cost, and the heavy pattern of foreign keys to operational and reference tables supports treating it as an intersection between asset, invoice, purchasing, and project entities. The documented unique index FA_MC_ASSET_INVOICES_U1 (SET_OF_BOOKS_ID, SOURCE_LINE_ID) provides the business key candidate for that link.
Key Information Stored
The table captures the relationship between a fixed asset and its source invoice distributions, with both functional and reporting-currency attributes. The most significant columns include:
- ASSET_INVOICE_ID – surrogate primary key for each asset-invoice association row.
- ASSET_ID – foreign key to FA_ADDITIONS_B, identifying the asset to which the invoice cost belongs.
- SET_OF_BOOKS_ID and SOURCE_LINE_ID – the documented business-key candidate declared by unique index FA_MC_ASSET_INVOICES_U1.
- INVOICE_ID, INVOICE_NUMBER, INVOICE_DATE, INVOICE_LINE_NUMBER – AP invoice identification attributes carried at reporting currency.
- PAYABLES_COST, PAYABLES_UNITS, FIXED_ASSETS_COST – cost and unit amounts recorded for the payables and assets sides, including the reporting-currency conversion.
- EXCHANGE_RATE – rate used to translate functional amounts into reporting currency.
- PAYABLES_CODE_COMBINATION_ID – GL code combination for the payables account.
- PO_NUMBER, PO_VENDOR_ID, PO_DISTRIBUTION_ID – purchasing references for the originating PO.
- PROJECT_ID, TASK_ID, PROJECT_ASSET_LINE_ID – Project Accounting linkage when costs originate from projects.
- DATE_EFFECTIVE, DATE_INEFFECTIVE, DELETED_FLAG, SPLIT_MERGED_CODE – temporal and lifecycle indicators used for reconciliation and split/merge handling.
- CREATE_BATCH_ID, POST_BATCH_ID – concurrent request identifiers tracking the batch that created or posted the record.
Standard EBS audit columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN) and ATTRIBUTE1–ATTRIBUTE15 with ATTRIBUTE_CATEGORY_CODE are also present for extensibility.
Common Use Cases and Queries
The primary purpose of FA_MC_ASSET_INVOICES is to support reporting-currency asset cost reporting, invoice-to-asset reconciliation, and multi-currency revaluation within Oracle Assets. Typical scenarios include reconciling payables cost to the asset cost booked in FA_ADDITIONS_B, tracing an asset back to the AP invoice and PO that generated it, and reporting fixed-asset cost by vendor or supplier in reporting currency.
A representative query joins the table to FA_ADDITIONS_B to obtain the asset number and to AP_INVOICES_ALL for invoice detail:
SELECT ai.ASSET_INVOICE_ID, ai.ASSET_ID, ai.INVOICE_NUMBER, ai.PAYABLES_COST, ai.PAYABLES_UNITS, ai.EXCHANGE_RATE FROM FA_MC_ASSET_INVOICES ai WHERE ai.SET_OF_BOOKS_ID = :sob AND ai.DELETED_FLAG = 'N';SELECT a.ASSET_NUMBER, ai.PO_NUMBER, ai.INVOICE_NUMBER, ai.PAYABLES_COST FROM FA_MC_ASSET_INVOICES ai, FA_ADDITIONS_B a WHERE ai.ASSET_ID = a.ASSET_ID AND ai.SET_OF_BOOKS_ID = :sob;
Because the unique key is (SET_OF_BOOKS_ID, SOURCE_LINE_ID), lookups by source line are efficient, which is useful when reconciling a specific payables distribution or project asset line into the assets subledger. Filtering on DATE_EFFECTIVE and DATE_INEFFECTIVE supports as-of-date reporting, while CREATE_BATCH_ID and POST_BATCH_ID allow tracing back to the FND concurrent request that produced the row.
Related Objects
FA_MC_ASSET_INVOICES is extensively referenced and referencing through foreign keys. The most significant related objects are:
- FA_ADDITIONS_B – joined via ASSET_ID; provides the asset definition.
- FA_INVOICE_TRANSACTIONS – linked through INVOICE_TRANSACTION_ID_IN and INVOICE_TRANSACTION_ID_OUT; holds the functional-currency invoice transaction detail.
- AP_INVOICES_ALL and AP_INVOICE_DISTRIBUTIONS_ALL – joined via INVOICE_ID (and AP_DISTRIBUTION_LINE_NUMBER); provide AP invoice and distribution detail.
- PO_HEADERS_ALL, PO_DISTRIBUTIONS_ALL, PO_VENDORS – joined via PO_NUMBER, PO_DISTRIBUTION_ID, and PO_VENDOR_ID; supply purchasing references.
- PA_PROJECTS_ALL, PA_TASKS, PA_PROJECT_ASSET_LINES_ALL – joined via PROJECT_ID, TASK_ID, and PROJECT_ASSET_LINE_ID; used when invoice cost originates from Project Accounting.
- GL_CODE_COMBINATIONS – joined via PAYABLES_CODE_COMBINATION_ID for the payables account.
- FND_CONCURRENT_REQUESTS – joined via CREATE_BATCH_ID and POST_BATCH_ID for batch provenance.
This dense FK footprint confirms the table's role as a central link between the Assets, Payables, Purchasing, Projects, and General Ledger subledgers, and explains why it is frequently queried in reconciliation and multi-currency asset reporting extracts.
-
Table: FA_MC_ASSET_INVOICES
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MC_ASSET_INVOICES, object_name:FA_MC_ASSET_INVOICES, status:VALID, product: OFA - Assets , description: Accounts payable and purchasing information for each asset, in the reporting currency , implementation_dba_data: FA.FA_MC_ASSET_INVOICES ,
-
Table: FA_MASSADD_REP_ITF
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MASSADD_REP_ITF, object_name:FA_MASSADD_REP_ITF, status:VALID, product: OFA - Assets , description: Interface table for Report eXchange reports , implementation_dba_data: FA.FA_MASSADD_REP_ITF ,
-
Table: FA_ASSET_INVOICES
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_ASSET_INVOICES, object_name:FA_ASSET_INVOICES, status:VALID, product: OFA - Assets , description: Accounts payable and purchasing information for each asset , implementation_dba_data: FA.FA_ASSET_INVOICES ,
-
Table: FA_ASSET_INVOICES
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_ASSET_INVOICES, object_name:FA_ASSET_INVOICES, status:VALID, product: OFA - Assets , description: Accounts payable and purchasing information for each asset , implementation_dba_data: FA.FA_ASSET_INVOICES ,
-
Table: FA_MC_ASSET_INVOICES
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MC_ASSET_INVOICES, object_name:FA_MC_ASSET_INVOICES, status:VALID, product: OFA - Assets , description: Accounts payable and purchasing information for each asset, in the reporting currency , implementation_dba_data: FA.FA_MC_ASSET_INVOICES ,
-
Table: FA_MASSADD_REP_ITF
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MASSADD_REP_ITF, object_name:FA_MASSADD_REP_ITF, status:VALID, product: OFA - Assets , description: Interface table for Report eXchange reports , implementation_dba_data: FA.FA_MASSADD_REP_ITF ,
-
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_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.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 ,
-
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 ,
-
View: FA_ASSET_INVOICES_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_ASSET_INVOICES_MRC_V, object_name:FA_ASSET_INVOICES_MRC_V, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FA_ASSET_INVOICES_MRC_V ,
-
View: FA_ASSET_INVOICES_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_ASSET_INVOICES_MRC_V, object_name:FA_ASSET_INVOICES_MRC_V, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FA_ASSET_INVOICES_MRC_V ,
-
View: FA_SOURCE_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_SOURCE_LINES_V, object_name:FA_SOURCE_LINES_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_SOURCE_LINES_V ,
-
View: FA_SOURCE_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_SOURCE_LINES_V, object_name:FA_SOURCE_LINES_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_SOURCE_LINES_V ,
-
View: FA_INVOICE_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_INVOICE_DETAILS_V, object_name:FA_INVOICE_DETAILS_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_INVOICE_DETAILS_V ,
-
View: FA_INVOICE_DETAILS_WEB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_INVOICE_DETAILS_WEB_V, object_name:FA_INVOICE_DETAILS_WEB_V, status:VALID, product: OFA - Assets , description: Detailed invoice information , implementation_dba_data: APPS.FA_INVOICE_DETAILS_WEB_V ,
-
View: FA_INVOICE_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_INVOICE_DETAILS_V, object_name:FA_INVOICE_DETAILS_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_INVOICE_DETAILS_V ,
-
View: FA_INVOICE_DETAILS_WEB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_INVOICE_DETAILS_WEB_V, object_name:FA_INVOICE_DETAILS_WEB_V, status:VALID, product: OFA - Assets , description: Detailed invoice information , implementation_dba_data: APPS.FA_INVOICE_DETAILS_WEB_V ,
-
View: FA_ADD_INVOICE_WEB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_ADD_INVOICE_WEB_V, object_name:FA_ADD_INVOICE_WEB_V, status:VALID, product: OFA - Assets , description: Invoice information pertaining to the asset , implementation_dba_data: APPS.FA_ADD_INVOICE_WEB_V ,
-
View: FA_ADD_INVOICE_WEB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_ADD_INVOICE_WEB_V, object_name:FA_ADD_INVOICE_WEB_V, status:VALID, product: OFA - Assets , description: Invoice information pertaining to the asset , implementation_dba_data: APPS.FA_ADD_INVOICE_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 ,