Search Results fv_ipac_import
Overview
FV_IPAC_IMPORT is a Federal Financials (FV) module table in Oracle E-Business Suite 12.1.1 and 12.2.2 that supports the import of Intra-Governmental Payment and Collection (IPAC) disbursement transactions. IPAC is the U.S. Treasury mechanism through which federal agencies settle inter-agency reimbursable and transfer transactions. The table functions as the staging and validation repository for IPAC bulk files received from Treasury's GOALS/SPS systems, which are subsequently processed into Oracle Payables/Receivables invoices and accounting events.
The ETRM documentation identifies a single foreign key — INVOICE_LINE_ID referencing FTE_INVOICE_LINES — establishing the linkage between staged IPAC records and the resulting invoice lines. In data-vault modeling terms, FV_IPAC_IMPORT exhibits standalone characteristics with no hub-to-hub or multi-parent join relationships, suggesting it is best modeled as a satellite or staging table rather than a link. The presence of GROUP_ID and REQUEST_ID columns further confirms that it is a concurrent-program staging table whose lifecycle is tied to a specific importer process run. The owner is the FV schema and the object is documented as VALID at 155 columns in the 12.2.2 physical schema.
Key Information Stored
The surrogate primary key is IPAC_IMPORT_ID, enforced by unique index FV_IPAC_IMPORT_U1. This is the only documented business-key candidate.
- BATCH_NAME, TRANSACTION_ID, REQUEST_ID, GROUP_ID, DATA_FILE — control columns identifying the import batch, concurrent request, and source Treasury flat file.
- SUBMITTER_ALC, ORIGINATING_ALC, CUSTOMER_ALC — Agency Location Codes identifying the parties to the IPAC settlement.
- SUMMARY_AMOUNT, DETAIL_AMOUNT, NUMER_OF_DETAIL_LINES, QUANTITY, UNIT_PRICE — monetary and quantitative values at both summary and detail line levels.
- ACCOMPLISHED_DATE, ACCOUNTING_DATE, ORIG_ACCOMPLISHED_DATE, ORIG_ACCOUNTING_DATE — the transaction, original, and reversal dates used for obligation and accounting derivation.
- CONTRACT_NUMBER, PURCHASE_ORDER_NUMBER, OBLIGATING_DOC_NUMBER, CLIN, INVOICE_NUMBER, REQUISITION_NUMBER, VOUCHER_NUMBER — originating procurement and document references for matching to obligations.
- SGL_NUMBER1..16 and associated SGL_*_FLAG/AMOUNT columns — up to sixteen Standard General Ledger distribution lines per transaction, each carrying sender/receiver indicator, federal flag, debit/credit indicator, and amount. This repeating group is the dominant structural pattern of the table.
- INVOICE_ID, INVOICE_LINE_ID, INT_INVOICE_ID, INT_INVOICE_LINE_ID — the generated invoice linkage; INVOICE_LINE_ID is the documented foreign key to FTE_INVOICE_LINES.
- VENDOR_ID, VENDOR_SITE_ID — supplier context for the disbursement.
- RECORD_STATUS, ORG_ID, SET_OF_BOOKS_ID — processing status and multi-org/ledger context.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE — standard WHO audit columns.
Common Use Cases and Queries
Typical usage centers on reconciling imported IPAC files to generated payables invoices and on diagnosing import failures.
- Batch status reconciliation:
SELECT RECORD_STATUS, COUNT(*), SUM(SUMMARY_AMOUNT) FROM FV_IPAC_IMPORT WHERE BATCH_NAME = :batch GROUP BY RECORD_STATUS; - Unlinked transactions:
SELECT IPAC_IMPORT_ID, TRANSACTION_ID FROM FV_IPAC_IMPORT WHERE INVOICE_LINE_ID IS NULL AND RECORD_STATUS = 'ERROR'; - Join to the invoice line:
SELECT a.TRANSACTION_ID, a.DETAIL_AMOUNT, l.INVOICE_LINE_ID FROM FV_IPAC_IMPORT a JOIN FTE_INVOICE_LINES l ON a.INVOICE_LINE_ID = l.INVOICE_LINE_ID; - SGL distribution reporting: unpivot the SGL_NUMBER1..16 columns to produce Treasury FMS 224 style reporting.
- Concurrent request troubleshooting: filter by REQUEST_ID or GROUP_ID to isolate the rows produced by a specific IPAC Import run.
Related Objects
- FTE_INVOICE_LINES — referenced via FV_IPAC_IMPORT.INVOICE_LINE_ID; the documented FK target.
- AP_INVOICES_ALL / AP_INVOICE_LINES_ALL — downstream targets when staged IPAC records are converted into payables invoices via INVOICE_ID / INVOICE_LINE_ID.
- FV_IPAC_IMPORT_ERRORS (module companion) — validation rejections recorded against batch rows.
- POZ_SUPPLIERS / AP_SUPPLIERS — resolved through VENDOR_ID and VENDOR_SITE_ID.
- GL_CODE_COMBINATIONS — used to resolve the SGL_NUMBER entries to accounting flexfield combinations.
- FND_CONCURRENT_REQUESTS — joined on REQUEST_ID to trace the importer execution.
- FV_IPAC_IMPORT_TMP / FV_IPAC_IMPORT_API — associated staging and programmatic load interfaces delivered with the IPAC Import feature.
-
Table: FV_IPAC_IMPORT
12.2.2
owner:FV, object_type:TABLE, fnd_design_data:FV.FV_IPAC_IMPORT, object_name:FV_IPAC_IMPORT, status:VALID, product: FV - Federal Financials , description: Table used for IPAC disbursement import , implementation_dba_data: FV.FV_IPAC_IMPORT ,
-
Table: FV_IPAC_IMPORT
12.1.1
owner:FV, object_type:TABLE, fnd_design_data:FV.FV_IPAC_IMPORT, object_name:FV_IPAC_IMPORT, status:VALID, product: FV - Federal Financials , description: Table used for IPAC disbursement import , implementation_dba_data: FV.FV_IPAC_IMPORT ,
-
SYNONYM: APPS.FV_IPAC_IMPORT
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FV_IPAC_IMPORT, status:VALID,
-
SYNONYM: APPS.FV_IPAC_IMPORT
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FV_IPAC_IMPORT, status:VALID,
-
APPS.FV_IPAC_DISBURSEMENT_PKG SQL Statements
12.2.2
-
APPS.FV_IPAC_DISBURSEMENT_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.FV_IPAC_DISBURSEMENT_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:FV_IPAC_DISBURSEMENT_PKG, status:VALID,
-
PACKAGE BODY: APPS.FV_IPAC_DISBURSEMENT_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FV_IPAC_DISBURSEMENT_PKG, status:VALID,
-
VIEW: FV.FV_IPAC_IMPORT#
12.2.2
owner:FV, object_type:VIEW, object_name:FV_IPAC_IMPORT#, status:VALID,
-
PACKAGE BODY: APPS.FV_IPAC_DISBURSEMENT_PKG
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.FV_IPAC_DISBURSEMENT_PKG
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
VIEW: FV.FV_IPAC_IMPORT#
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
TABLE: FV.FV_IPAC_IMPORT
12.2.2
owner:FV, object_type:TABLE, fnd_design_data:FV.FV_IPAC_IMPORT, object_name:FV_IPAC_IMPORT, status:VALID,
-
TABLE: FV.FV_IPAC_IMPORT
12.1.1
owner:FV, object_type:TABLE, fnd_design_data:FV.FV_IPAC_IMPORT, object_name:FV_IPAC_IMPORT, status:VALID,
-
APPS.FV_IPAC_DISBURSEMENT_PKG dependencies on FV_IPAC_IMPORT
12.1.1
-
APPS.FV_IPAC_DISBURSEMENT_PKG dependencies on FV_IPAC_IMPORT
12.2.2
-
APPS.FV_IPAC_DISBURSEMENT_PKG dependencies on AP_LOOKUP_CODES
12.1.1
-
APPS.FV_IPAC_DISBURSEMENT_PKG dependencies on AP_LOOKUP_CODES
12.2.2
-
APPS.FV_IPAC_DISBURSEMENT_PKG dependencies on AP_INTERFACE_GROUPS_S
12.2.2
-
APPS.FV_IPAC_DISBURSEMENT_PKG dependencies on FV_IPAC_IMPORT_HISTORY
12.2.2
-
APPS.FV_IPAC_DISBURSEMENT_PKG dependencies on AP_INTERFACE_REJECTIONS
12.1.1
-
APPS.FV_IPAC_DISBURSEMENT_PKG dependencies on FV_IPAC_IMPORT_HISTORY
12.1.1
-
APPS.FV_IPAC_DISBURSEMENT_PKG dependencies on AP_INTERFACE_REJECTIONS
12.2.2
-
APPS.FV_IPAC_DISBURSEMENT_PKG dependencies on FV_IPAC_BATCH_S
12.1.1
-
APPS.FV_IPAC_DISBURSEMENT_PKG dependencies on FV_IPAC_BATCH_S
12.2.2
-
APPS.FV_IPAC_DISBURSEMENT_PKG dependencies on AP_INTERFACE_GROUPS_S
12.1.1
-
APPS.FV_IPAC_DISBURSEMENT_PKG dependencies on FV_IPAC_IMPORT_ERRORS
12.1.1
-
APPS.FV_IPAC_DISBURSEMENT_PKG dependencies on FV_IPAC_IMPORT_ERRORS
12.2.2
-
APPS.FV_IPAC_DISBURSEMENT_PKG dependencies on AP_INVOICES_INTERFACE
12.1.1
-
APPS.FV_IPAC_DISBURSEMENT_PKG dependencies on AP_INVOICE_LINES_INTERFACE
12.2.2
-
APPS.FV_IPAC_DISBURSEMENT_PKG dependencies on AP_INVOICES_INTERFACE_S
12.1.1
-
APPS.FV_IPAC_DISBURSEMENT_PKG dependencies on AP_INVOICES_INTERFACE
12.2.2
-
APPS.FV_IPAC_DISBURSEMENT_PKG dependencies on AP_INVOICES_INTERFACE_S
12.2.2
-
APPS.FV_IPAC_DISBURSEMENT_PKG dependencies on AP_INVOICE_LINES_INTERFACE
12.1.1
-
APPS.FV_IPAC_DISBURSEMENT_PKG dependencies on AP_INVOICES
12.1.1
-
APPS.FV_IPAC_DISBURSEMENT_PKG dependencies on AP_INVOICES
12.2.2
-
eTRM - FV Tables and Views
12.2.2
description: Temporary table populated during the Year End Closing process ,
-
APPS.FV_IPAC_DISBURSEMENT_PKG dependencies on FV_UTILITY
12.2.2
-
eTRM - FV Tables and Views
12.1.1
description: Temporary table populated during the Year End Closing process ,
-
APPS.FV_IPAC_DISBURSEMENT_PKG dependencies on FV_UTILITY
12.1.1