Search Results payment_due_date
Overview
APPS.FII_AP_OPEN_PAYMT_DTL_SUM_V is a reporting view in the Oracle E-Business Suite Financial Intelligence (FII) product family. It exposes open (unpaid) payables invoice and payment detail at a summarized grain, joining invoice-level attributes to their corresponding scheduled payment records. The view is intended to support subledger-level integration and analytical reporting, particularly for flows that track trading partner activity, operating unit context, and payment due dates across the Payables subledger.
Its naming convention (FII_AP_...) places it alongside other Financial Intelligence for Payables objects, which are typically consumed by Oracle Financial Services offerings, transfer pricing and intercompany engines, and custom operational reports that need a consolidated view of open liabilities. Because the view is defined over a backlog summary table rather than the base AP_INVOICES_ALL and AP_PAYMENT_SCHEDULES_ALL tables directly, it provides a denormalized, reporting-optimized projection rather than a normalized operational view.
Underlying Base Objects
According to the documented view text, FII_AP_OPEN_PAYMT_DTL_SUM_V is defined exclusively over a single underlying object: FII_AP_TRANS_BACKLOG_SUMMARY. No other base tables, joins, or synonyms are documented in the ETRM metadata for this view. This is significant because it means the view is a straightforward column projection and rename, not a complex multi-table join.
The defining query selects columns such as operating_unit_pk_key, trading_partner_pk_key, invoice_pk_key, invoice_amount, sch_payment_id, open_payment_amount, and payment_due_date from FII_AP_TRANS_BACKLOG_SUMMARY, aliasing several of them to more descriptive reporting names (for example INVOICE_NUM to INVOICE_NUMBER, SCH_PAYMENT_ID to PAYMENT_ID, and OPEN_PAYMENT_AMOUNT to PAYMENT_AMOUNT). The ETRM metadata lists no documented base objects beyond this summary table, and the owner is not recorded, though in practice the view resides in the APPS schema.
Key Columns
- OPERATING_UNIT_PK_KEY / OPERATING_UNIT_NAME — The primary key and descriptive name of the operating unit, providing the organizational context for each open liability.
- TRADING_PARTNER_PK_KEY / TRADING_PARTNER_NAME — The primary key and name of the trading partner, supporting intercompany and transfer pricing analysis.
- INVOICE_PK_KEY — Surrogate primary key identifying the invoice.
- INVOICE_NUMBER — The human-readable invoice number, sourced from INVOICE_NUM.
- INVOICE_AMOUNT — The total invoice amount, exposed here as the basis for matching against open payment balances. This is the column users most frequently search for.
- PAYMENT_ID — The scheduled payment identifier, sourced from SCH_PAYMENT_ID, linking the invoice to its payment schedule row.
- PAYMENT_AMOUNT — The open (unpaid) amount for the scheduled payment, sourced from OPEN_PAYMENT_AMOUNT.
- PAYMENT_DUE_DATE — The due date of the open payment, enabling aging and cash-flow analysis.
Common Use Cases and Queries
Typical consumption centers on open liability balances by operating unit or trading partner. A common query aggregates open payment amounts and reconciles them against invoice amounts:
- Open balance by trading partner: SELECT TRADING_PARTNER_NAME, SUM(PAYMENT_AMOUNT) FROM APPS.FII_AP_OPEN_PAYMT_DTL_SUM_V GROUP BY TRADING_PARTNER_NAME.
- Invoice-to-payment reconciliation: SELECT INVOICE_NUMBER, INVOICE_AMOUNT, PAYMENT_ID, PAYMENT_AMOUNT FROM APPS.FII_AP_OPEN_PAYMT_DTL_SUM_V WHERE INVOICE_AMOUNT <> PAYMENT_AMOUNT.
- Aging analysis: SELECT INVOICE_NUMBER, PAYMENT_DUE_DATE, PAYMENT_AMOUNT FROM APPS.FII_AP_OPEN_PAYMT_DTL_SUM_V WHERE PAYMENT_DUE_DATE < SYSDATE.
Because the view is a thin projection over FII_AP_TRANS_BACKLOG_SUMMARY, filters and joins should be pushed to the underlying summary table where possible. The view is version-agnostic across EBS 12.1.1 and 12.2.2, though column availability and content depend on the FII backlog population process.
-
VIEW: APPS.FII_AP_OPEN_PAYMT_DTL_SUM_V
12.1.1
-
View: FII_AP_OPEN_PAYMT_DTL_SUM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_AP_OPEN_PAYMT_DTL_SUM_V, object_name:FII_AP_OPEN_PAYMT_DTL_SUM_V, status:VALID, product: FII - Financial Intelligence , description: FII_AP_OPEN_PAYMT_DTL_SUM_V is the view to support Payables Open Payments Detail Drill Downs Portlet , implementation_dba_data: APPS.FII_AP_OPEN_PAYMT_DTL_SUM_V ,
-
View: FII_AP_OPEN_PAYMT_DTL_SUM_V
12.2.2
product: FII - Financial Intelligence (Obsolete) , description: FII_AP_OPEN_PAYMT_DTL_SUM_V is the view to support Payables Open Payments Detail Drill Downs Portlet , implementation_dba_data: Not implemented in this database ,
-
VIEW: IBY.IBY_GEN_DOCS_PAYABLE#
12.2.2
-
VIEW: APPS.FII_AP_OPEN_PAYMT_DTL_SUM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_AP_OPEN_PAYMT_DTL_SUM_V, object_name:FII_AP_OPEN_PAYMT_DTL_SUM_V, status:VALID,
-
VIEW: IBY.IBY_DOCUMENTS_PAYABLE_H#
12.2.2
-
APPS.FII_AP_TRANS_BACKLOG_SUM_C SQL Statements
12.1.1
-
TABLE: APPS.IBY_DOCS_IN_PMT_GT
12.2.2
owner:APPS, object_type:TABLE, fnd_design_data:FND.IBY_DOCS_IN_PMT_GT, object_name:IBY_DOCS_IN_PMT_GT, status:VALID,
-
VIEW: IBY.IBY_DOCS_PAYABLE_ALL#
12.2.2
-
View: ZOKL_CURE_REP_ADVCES_V
12.1.1
product: OKL - Leasing and Finance Management , description: View for table OKL_CURE_REP_ADVCES_B , implementation_dba_data: Not implemented in this database ,
-
VIEW: IBY.IBY_PAYMENTS_H#
12.2.2
-
VIEW: APPS.IBY_EXT_FD_PMT_1_0_V
12.2.2
-
View: ZOKL_CURE_REP_ADVCES_V
12.2.2
product: OKL - Lease and Finance Management , description: View for table OKL_CURE_REP_ADVCES_B , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IBY_EXT_FD_DOC_1_0_V
12.1.1
-
VIEW: APPS.IBY_EXT_FD_DOC_1_0_V
12.2.2
-
VIEW: APPS.IBY_EXT_FD_PMT_1_0_V
12.1.1
-
TABLE: FII.FII_AP_TRANS_BACKLOG_SUMMARY
12.1.1
owner:FII, object_type:TABLE, fnd_design_data:FII.FII_AP_TRANS_BACKLOG_SUMMARY, object_name:FII_AP_TRANS_BACKLOG_SUMMARY, status:VALID,
-
View: IBY_DOCS_PAYABLE_SEC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_DOCS_PAYABLE_SEC_V, object_name:IBY_DOCS_PAYABLE_SEC_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_DOCS_PAYABLE_SEC_V ,
-
View: IBY_DOCS_PAYABLE_SEC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_DOCS_PAYABLE_SEC_V, object_name:IBY_DOCS_PAYABLE_SEC_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_DOCS_PAYABLE_SEC_V ,
-
VIEW: APPS.IBY_EXT_FD_DOC_1_0_VT
12.1.1
owner:APPS, object_type:VIEW, object_name:IBY_EXT_FD_DOC_1_0_VT, status:VALID,
-
View: CE_DOCUMENTS_PAYABLE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_DOCUMENTS_PAYABLE, object_name:CE_DOCUMENTS_PAYABLE, status:VALID, product: CE - Cash Management , implementation_dba_data: APPS.CE_DOCUMENTS_PAYABLE ,
-
View: CE_DOCUMENTS_PAYABLE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_DOCUMENTS_PAYABLE, object_name:CE_DOCUMENTS_PAYABLE, status:VALID, product: CE - Cash Management , implementation_dba_data: APPS.CE_DOCUMENTS_PAYABLE ,
-
View: IBY_PAYMENTS_SEC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_PAYMENTS_SEC_V, object_name:IBY_PAYMENTS_SEC_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_PAYMENTS_SEC_V ,
-
VIEW: APPS.IBY_DOCS_PAYABLE_SEC_V
12.2.2
-
VIEW: IBY.IBY_PAYMENTS_ALL#
12.2.2
-
VIEW: APPS.IBY_EXT_FD_DOC_1_0_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_EXT_FD_DOC_1_0_V, object_name:IBY_EXT_FD_DOC_1_0_V, status:VALID,
-
VIEW: APPS.IBY_DOCS_PAYABLE_SEC_V
12.1.1
-
VIEW: APPS.IBY_EXT_FD_PMT_1_0_VT
12.1.1
owner:APPS, object_type:VIEW, object_name:IBY_EXT_FD_PMT_1_0_VT, status:VALID,
-
View: IBY_PAYMENTS_SEC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_PAYMENTS_SEC_V, object_name:IBY_PAYMENTS_SEC_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_PAYMENTS_SEC_V ,
-
VIEW: IBY.IBY_GEN_DOCS_PAYABLE#
12.2.2
owner:IBY, object_type:VIEW, object_name:IBY_GEN_DOCS_PAYABLE#, status:VALID,
-
VIEW: APPS.IBY_EXT_FD_PMT_1_0_VT
12.2.2
owner:APPS, object_type:VIEW, object_name:IBY_EXT_FD_PMT_1_0_VT, status:VALID,
-
VIEW: APPS.IBY_EXT_FD_PMT_1_0_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_EXT_FD_PMT_1_0_V, object_name:IBY_EXT_FD_PMT_1_0_V, status:VALID,
-
VIEW: APPS.IBY_EXT_FD_DOC_1_0_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_EXT_FD_DOC_1_0_V, object_name:IBY_EXT_FD_DOC_1_0_V, status:VALID,
-
VIEW: APPS.IBY_EXT_FD_PMT_1_0_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_EXT_FD_PMT_1_0_V, object_name:IBY_EXT_FD_PMT_1_0_V, status:VALID,
-
TABLE: IBY.IBY_DOCS_PAYABLE_GT
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_DOCS_PAYABLE_GT, object_name:IBY_DOCS_PAYABLE_GT, status:VALID,
-
VIEW: APPS.CE_DOCUMENTS_PAYABLE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_DOCUMENTS_PAYABLE, object_name:CE_DOCUMENTS_PAYABLE, status:VALID,
-
VIEW: APPS.IBY_DOCS_PAYABLE_SEC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_DOCS_PAYABLE_SEC_V, object_name:IBY_DOCS_PAYABLE_SEC_V, status:VALID,
-
VIEW: IBY.IBY_DOCUMENTS_PAYABLE_H#
12.2.2
owner:IBY, object_type:VIEW, object_name:IBY_DOCUMENTS_PAYABLE_H#, status:VALID,
-
VIEW: APPS.IBY_DOCS_PAYABLE_SEC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_DOCS_PAYABLE_SEC_V, object_name:IBY_DOCS_PAYABLE_SEC_V, status:VALID,
-
VIEW: APPS.IBY_EXT_FD_DOC_1_0_VT
12.2.2
owner:APPS, object_type:VIEW, object_name:IBY_EXT_FD_DOC_1_0_VT, status:VALID,
-
VIEW: APPS.AP_DOCUMENTS_PAYABLE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_DOCUMENTS_PAYABLE, object_name:AP_DOCUMENTS_PAYABLE, status:VALID,
-
VIEW: APPS.IBY_FD_DOCS_PAYABLE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_FD_DOCS_PAYABLE_V, object_name:IBY_FD_DOCS_PAYABLE_V, status:VALID,
-
TABLE: IBY.IBY_DOCS_PAYABLE_GT
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_DOCS_PAYABLE_GT, object_name:IBY_DOCS_PAYABLE_GT, status:VALID,
-
View: IBY_FD_DOCS_PAYABLE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_FD_DOCS_PAYABLE_V, object_name:IBY_FD_DOCS_PAYABLE_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_FD_DOCS_PAYABLE_V ,
-
View: IBY_FD_DOCS_PAYABLE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_FD_DOCS_PAYABLE_V, object_name:IBY_FD_DOCS_PAYABLE_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_FD_DOCS_PAYABLE_V ,
-
VIEW: APPS.IBY_PAYMENTS_SEC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_PAYMENTS_SEC_V, object_name:IBY_PAYMENTS_SEC_V, status:VALID,
-
VIEW: APPS.IBY_FD_DOCS_PAYABLE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_FD_DOCS_PAYABLE_V, object_name:IBY_FD_DOCS_PAYABLE_V, status:VALID,
-
PACKAGE BODY: APPS.FII_AP_TRANS_BACKLOG_SUM_C
12.1.1
-
VIEW: APPS.IBY_PAYMENTS_SEC_V
12.1.1
-
VIEW: APPS.IBY_PAYMENTS_SEC_V
12.2.2