Search Results distribution_line_amount
Overview
FV_INVOICE_DTL_V is a denormalized reporting view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It presents a consolidated picture of Payables invoice header, line, and distribution-level detail in a single row per distribution line, joining invoice attributes to their corresponding accounting distributions. For functional and technical consultants, the view provides a convenient read-only access path into the Payables transaction model without requiring them to reconstruct the multi-table joins spanning AP_INVOICES_ALL, AP_INVOICE_LINES_ALL, and AP_INVOICE_DISTRIBUTIONS_ALL manually.
The view is registered in FND Design Data under the product short name FV (which relates to the Payables/Public Sector invoice functionality family) and carries a status of VALID. It is documented as Oracle Internal Use Only: Oracle Corporation does not support access to this object except from standard Oracle Applications programs. Consequently, custom code, reports, or integrations that query FV_INVOICE_DTL_V directly do so at their own risk with respect to upgrade safety and support. Where possible, standard published APIs and interface tables should be preferred for write operations; read-only queries for reporting are the typical usage pattern.
Underlying Base Objects
According to the documented dependency list, FV_INVOICE_DTL_V references the following base objects:
- AP_INVOICES_ALL – the core Payables invoice header table, providing invoice number, date, type, amount, status, and vendor references.
- AP_INVOICE_LINES_ALL – invoice line detail, supplying line number, line amount, description, and PO line/location linkage.
- AP_INVOICE_DISTRIBUTIONS_ALL – distribution lines that carry the accounting and amount splits, including distribution line number and distribution line amount.
- AP_INVOICES_PKG – the Payables invoice package, referenced here for derived logic (for example, status or amount computations).
- AP_INVOICES_UTILITY_PKG – utility package referenced for supporting calculations used in the view definition.
The view is not referenced by any other database object, confirming it is a terminal reporting object rather than a building block in a larger dependency chain. The dependency architecture means that any change to the underlying AP tables or packages can affect the view's output, so consumers should treat it as version-coupled to the Payables data model.
Key Columns
The view exposes the following documented columns:
- INVOICE_ID – invoice identifier; the primary join key to AP_INVOICES_ALL.
- VENDOR_ID / VENDOR_SITE_ID – supplier and supplier site identifiers.
- INVOICE_NUM, INVOICE_DATE, INVOICE_TYPE_LOOKUP_CODE, INVOICE_AMOUNT – header attributes describing the invoice.
- INVOICE_STATUS, PAYMENT_STATUS_FLAG, HOLD_STATUS, PAY_GROUP – status and payment-oriented attributes.
- INVOICE_LINE, PO_LINE_LOCATION_ID, INVOICE_LINE_AMOUNT, DESCRIPTION – line-level detail including PO linkage.
- STATUS (VARCHAR2 4000) – a concatenated or descriptive status field.
- DISTRIBUTION_LINE_NUMBER and DISTRIBUTION_LINE_AMOUNT – the distribution line identifier and the amount booked to that distribution.
The user's search term, distribution_line_amount, maps directly to the DISTRIBUTION_LINE_AMOUNT column, which is the amount allocated to each accounting distribution derived from AP_INVOICE_DISTRIBUTIONS_ALL.
Common Use Cases and Queries
A frequent use case is reconciling invoiced amounts against distributed amounts to detect mismatches or unposted distributions. The following sample query returns distribution detail for a given invoice:
- SELECT INVOICE_NUM, INVOICE_LINE, DISTRIBUTION_LINE_NUMBER, DISTRIBUTION_LINE_AMOUNT, INVOICE_LINE_AMOUNT, VENDOR_ID FROM APPS.FV_INVOICE_DTL_V WHERE INVOICE_ID = :p_invoice_id ORDER BY INVOICE_LINE, DISTRIBUTION_LINE_NUMBER;
- SELECT INVOICE_ID, INVOICE_NUM, SUM(DISTRIBUTION_LINE_AMOUNT) FROM APPS.FV_INVOICE_DTL_V GROUP BY INVOICE_ID, INVOICE_NUM ORDER BY INVOICE_ID;
These patterns are useful for audit reports, ETL extracts into custom data warehouses, and investigative troubleshooting where a consultant needs a quick flat view of invoice distribution amount detail without writing multi-table joins. Because the object is unsupported for direct external access, any production use should be reviewed against upgrade strategy and documented as a risk.
-
VIEW: APPS.FV_INVOICE_DTL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FV.FV_INVOICE_DTL_V, object_name:FV_INVOICE_DTL_V, status:VALID,
-
VIEW: APPS.FV_INVOICE_DTL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FV.FV_INVOICE_DTL_V, object_name:FV_INVOICE_DTL_V, status:VALID,
-
VIEW: APPS.JG_ZZ_AP_IR_REP_ITF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JG.JG_ZZ_AP_IR_REP_ITF_V, object_name:JG_ZZ_AP_IR_REP_ITF_V, status:VALID,
-
VIEW: APPS.JG_ZZ_AP_IR_REP_ITF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JG.JG_ZZ_AP_IR_REP_ITF_V, object_name:JG_ZZ_AP_IR_REP_ITF_V, status:VALID,
-
View: JG_ZZ_AP_IR_REP_ITF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JG.JG_ZZ_AP_IR_REP_ITF_V, object_name:JG_ZZ_AP_IR_REP_ITF_V, status:VALID, product: JG - Regional Localizations , description: Invoice Register view , implementation_dba_data: APPS.JG_ZZ_AP_IR_REP_ITF_V ,
-
View: JG_ZZ_AP_IR_REP_ITF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JG.JG_ZZ_AP_IR_REP_ITF_V, object_name:JG_ZZ_AP_IR_REP_ITF_V, status:VALID, product: JG - Regional Localizations , description: Invoice Register view , implementation_dba_data: APPS.JG_ZZ_AP_IR_REP_ITF_V ,
-
eTRM - JG Tables and Views
12.2.2
description: Additional country-specific information for vendor sites ,
-
eTRM - JG Tables and Views
12.1.1
description: Additional country-specific information for vendor sites ,
-
eTRM - FV Tables and Views
12.1.1
description: Temporary table populated during the Year End Closing process ,
-
eTRM - FV Tables and Views
12.2.2
description: Temporary table populated during the Year End Closing process ,