Search Results days_past_due
Overview
APPS.IGI_AR_PAYMENT_SCHEDULES_V is a reporting and integration view in Oracle E-Business Suite (documented for 12.1.1 and 12.2.2) that exposes Accounts Receivable payment schedule information in a denormalized, presentation-ready form. The view is owned by the APPS schema and originates from the Oracle Grants/IGI product family, where it supports inquiry and reporting against receivables transactions — particularly those linked to awards, billing, and sponsored project activity. Functionally, it is a thin projection over AR_PAYMENT_SCHEDULES_V, re-exposing a curated column list that includes transaction identifiers, payment terms sequencing, currency, due dates, original and remaining amounts due, dispute information, days past due, and audit columns.
Because the view terminates in the "_V" naming convention, it is a read-only view intended for query, not for DML. It plays the role of a stable interface layer: reporting tools, concurrent programs, and external integrations can select from APPS.IGI_AR_PAYMENT_SCHEDULES_V without embedding the more complex join logic or function calls that exist in the underlying AR view. This decoupling is significant in the grants context, where dispute visibility and aging of receivables are relevant to collection and award management reporting.
Underlying Base Objects
The ETRM metadata documents three referenced base objects for this view: ARPT_SQL_FUNC_UTIL (PACKAGE), ARP_VIEW_CONSTANTS (PACKAGE), and AR_PAYMENT_SCHEDULES_V (VIEW). The view text itself selects exclusively from AR_PAYMENT_SCHEDULES_V; the two packages are referenced indirectly because the underlying AR view invokes them (for example, to resolve lookup meanings such as AL_CLASS_MEANING and AL_STATUS_MEANING, and to derive values such as days past due). Consequently, IGI_AR_PAYMENT_SCHEDULES_V inherits the row population, security, and translation behavior of AR_PAYMENT_SCHEDULES_V, including any Org or operating unit context applied at that lower layer.
The naming of ARPT_SQL_FUNC_UTIL and ARP_VIEW_CONSTANTS indicates that the AR view performs runtime function-based lookups and applies constant values rather than relying solely on stored columns. Any performance characteristic of this view — particularly the cost of resolving the meaning columns — derives from those packages rather than from the IGI view itself, which adds only a ROUND operation on DAYS_PAST_DUE.
Key Columns
- TRX_NUMBER — the receivables transaction number, the primary human-readable identifier for the underlying invoice or debit memo.
- CUSTOMER_TRX_ID — the internal foreign key to the transaction header, used for joins back to RA_CUSTOMER_TRX_ALL and related tables.
- TERMS_SEQUENCE_NUMBER — identifies which installment or payment term line within a multi-schedule transaction the row represents.
- INVOICE_CURRENCY_CODE — the currency in which the transaction and its amounts are denominated.
- DUE_DATE and DAYS_PAST_DUE — the scheduled due date and the rounded number of days the balance is past due, the core aging attributes.
- AMOUNT_DUE_ORIGINAL and AMOUNT_DUE_REMAINING — the original scheduled amount and the outstanding balance, respectively.
- AMOUNT_IN_DISPUTE and DISPUTE_DATE — the monetary value under dispute and the date the dispute was recorded. Because the user searched for "dispute_date," these two columns are the relevant attributes; dispute_date is populated only for transactions carrying an active or recorded dispute.
- AL_CLASS_MEANING and AL_STATUS_MEANING — translated meanings for the transaction class and status, resolved via the AR packages.
- BILLING_NUMBER — the billing or document reference associated with the schedule line.
- ROW_ID — a unique row identifier, useful for deduplication and for integration keys.
- LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN, CREATED_BY, CREATION_DATE — standard audit columns supporting incremental extraction and change tracking.
Common Use Cases and Queries
The primary use case is receivables inquiry and dispute reporting. A query to identify outstanding disputed balances with dispute dates is typical:
SELECT trx_number, customer_trx_id, invoice_currency_code, due_date, amount_due_remaining, amount_in_dispute, dispute_date FROM apps.igi_ar_payment_schedules_v WHERE amount_in_dispute > 0 AND dispute_date IS NOT NULL ORDER BY dispute_date;
Aging analysis is equally common, using the pre-rounded DAYS_PAST_DUE to bucket exposure:
SELECT trx_number, due_date, days_past_due, amount_due_original, amount_due_remaining FROM apps.igi_ar_payment_schedules_v WHERE amount_due_remaining > 0 AND days_past_due > 30;
For integration and change-data-capture loads, the audit columns allow incremental extracts such as selecting rows where last_update_date exceeds a stored high-water mark. Because the view is read-only and carries no DML privileges, it should be used strictly for SELECT operations; all maintenance must occur against the underlying receivables tables.
-
VIEW: APPS.IGI_AR_PAYMENT_SCHEDULES_V
12.2.2
-
View: IGI_AR_PAYMENT_SCHEDULES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_AR_PAYMENT_SCHEDULES_V, object_name:IGI_AR_PAYMENT_SCHEDULES_V, status:VALID, product: IGI - Public Sector Financials International , description: Holds payment term schedules for the selected invoice , implementation_dba_data: APPS.IGI_AR_PAYMENT_SCHEDULES_V ,
-
VIEW: AR.AR_AGING_EXTRACT#
12.2.2
-
VIEW: FUN.FUN_NET_AGREEMENTS_ALL#
12.2.2
-
VIEW: APPS.IGI_AR_PAYMENT_SCHEDULES_V
12.1.1
-
VIEW: FV.FV_DELINQ_INVOICES_ALL#
12.2.2
-
View: IGI_AR_PAYMENT_SCHEDULES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_AR_PAYMENT_SCHEDULES_V, object_name:IGI_AR_PAYMENT_SCHEDULES_V, status:VALID, product: IGI - Public Sector Financials International , description: Holds payment term schedules for the selected invoice , implementation_dba_data: APPS.IGI_AR_PAYMENT_SCHEDULES_V ,
-
VIEW: APPS.FII_AR_DISPUTE_REC_PMV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_AR_DISPUTE_REC_PMV, object_name:FII_AR_DISPUTE_REC_PMV, status:VALID,
-
VIEW: APPS.FII_AR_PASTDUE_REC_PMV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_AR_PASTDUE_REC_PMV, object_name:FII_AR_PASTDUE_REC_PMV, status:VALID,
-
View: IBE_AR_PAYMENT_SCHEDULES_V
12.1.1
product: IBE - iStore , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.FII_AR_DISPUTE_REC_WH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_AR_DISPUTE_REC_WH_V, object_name:FII_AR_DISPUTE_REC_WH_V, status:VALID,
-
View: IBE_AR_PAYMENT_SCHEDULES_V
12.2.2
product: IBE - iStore , implementation_dba_data: Not implemented in this database ,
-
View: ICX_PANEL_INVOICE_SUM_V
12.1.1
product: ICX - Oracle iProcurement , description: Obsolete , implementation_dba_data: Not implemented in this database ,
-
VIEW: FV.FV_DELINQ_INVOICES_ALL#
12.2.2
owner:FV, object_type:VIEW, object_name:FV_DELINQ_INVOICES_ALL#, status:VALID,
-
View: ZOKL_CSE_K_STATS_V
12.1.1
product: OKL - Leasing and Finance Management , description: View for table OKL_CSE_K_STASTICS , implementation_dba_data: Not implemented in this database ,
-
VIEW: AR.AR_AGING_EXTRACT#
12.2.2
owner:AR, object_type:VIEW, object_name:AR_AGING_EXTRACT#, status:VALID,
-
View: ICX_PANEL_INVOICE_SUM_V
12.2.2
product: ICX - Oracle iProcurement , description: Obsolete , implementation_dba_data: Not implemented in this database ,
-
View: ZOKL_CSE_K_STATS_V
12.2.2
product: OKL - Lease and Finance Management , description: View for table OKL_CSE_K_STASTICS , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IEX_TRX_SUMMARY_V
12.2.2
owner:APPS, object_type:VIEW, object_name:IEX_TRX_SUMMARY_V, status:VALID,
-
VIEW: APPS.IEX_OPEN_LINES_V
12.1.1
owner:APPS, object_type:VIEW, object_name:IEX_OPEN_LINES_V, status:VALID,
-
VIEW: APPS.IEX_OPEN_LINES_V
12.2.2
owner:APPS, object_type:VIEW, object_name:IEX_OPEN_LINES_V, status:VALID,
-
VIEW: APPS.MSC_NET_EXC_DETAIL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_NET_EXC_DETAIL_V, object_name:MSC_NET_EXC_DETAIL_V, status:VALID,
-
View: IBE_RA_CUSTOMER_TRX_V
12.1.1
product: IBE - iStore , description: This view is used to get the Invoice header details in Post sales interaction with Customer in iStore, this view is bases on ra_customrer_trx , implementation_dba_data: Not implemented in this database ,
-
TABLE: AR.AR_AGING_EXTRACT
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_AGING_EXTRACT, object_name:AR_AGING_EXTRACT, status:VALID,
-
View: IBE_RA_CUSTOMER_TRX_V
12.2.2
product: IBE - iStore , description: This view is used to get the Invoice header details in Post sales interaction with Customer in iStore, this view is bases on ra_customrer_trx , implementation_dba_data: Not implemented in this database ,
-
MATERIALIZED VIEW: APPS.FII_AP_INV_B_MV
12.1.1
owner:APPS, object_type:MATERIALIZED VIEW, object_name:FII_AP_INV_B_MV, status:VALID,
-
VIEW: APPS.IEX_DUNNING_TRANSACTIONS_V
12.2.2
-
VIEW: APPS.IEX_AGING_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, object_name:IEX_AGING_TRANSACTIONS_V, status:VALID,
-
VIEW: APPS.MSC_NET_EXC_DETAIL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_NET_EXC_DETAIL_V, object_name:MSC_NET_EXC_DETAIL_V, status:VALID,
-
VIEW: APPS.IEX_TRX_SUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, object_name:IEX_TRX_SUMMARY_V, status:VALID,
-
VIEW: FUN.FUN_NET_AGREEMENTS_ALL#
12.2.2
owner:FUN, object_type:VIEW, object_name:FUN_NET_AGREEMENTS_ALL#, status:VALID,
-
View: FII_AR_DISPUTE_REC_WH_V
12.2.2
product: FII - Financial Intelligence (Obsolete) , description: FII_AR_DISPUTE_REC_WH_V is an Internal view used to support Risk Indicator Portlets , implementation_dba_data: Not implemented in this database ,
-
View: FII_AR_DISPUTE_REC_PMV
12.2.2
product: FII - Financial Intelligence (Obsolete) , description: FII_AR_DISPUTE_REC_PMV is an Internal view used to support Risk Indicator Portlets , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IEX_TRANSACTIONS_QUERY_V
12.2.2
-
TABLE: APPS.FII_AP_INV_B_MV
12.1.1
owner:APPS, object_type:TABLE, fnd_design_data:FND.FII_AP_INV_B_MV, object_name:FII_AP_INV_B_MV, status:VALID,
-
VIEW: APPS.IGI_AR_PAYMENT_SCHEDULES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_AR_PAYMENT_SCHEDULES_V, object_name:IGI_AR_PAYMENT_SCHEDULES_V, status:VALID,
-
VIEW: APPS.IGI_AR_PAYMENT_SCHEDULES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_AR_PAYMENT_SCHEDULES_V, object_name:IGI_AR_PAYMENT_SCHEDULES_V, status:VALID,
-
VIEW: APPS.IEX_AGING_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, object_name:IEX_AGING_TRANSACTIONS_V, status:VALID,
-
View: FII_AR_PASTDUE_REC_PMV
12.2.2
product: FII - Financial Intelligence (Obsolete) , description: FII_AR_PASTDUE_REC_PMV is an Internal view used to support Risk Indicator Portlets , implementation_dba_data: Not implemented in this database ,
-
View: FII_AR_DISPUTE_REC_WH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_AR_DISPUTE_REC_WH_V, object_name:FII_AR_DISPUTE_REC_WH_V, status:VALID, product: FII - Financial Intelligence , description: FII_AR_DISPUTE_REC_WH_V is an Internal view used to support Risk Indicator Portlets , implementation_dba_data: APPS.FII_AR_DISPUTE_REC_WH_V ,
-
View: FII_AR_DISPUTE_REC_PMV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_AR_DISPUTE_REC_PMV, object_name:FII_AR_DISPUTE_REC_PMV, status:VALID, product: FII - Financial Intelligence , description: FII_AR_DISPUTE_REC_PMV is an Internal view used to support Risk Indicator Portlets , implementation_dba_data: APPS.FII_AR_DISPUTE_REC_PMV ,
-
TABLE: FV.FV_DELINQ_INVOICES_ALL
12.2.2
owner:FV, object_type:TABLE, fnd_design_data:FV.FV_DELINQ_INVOICES_ALL, object_name:FV_DELINQ_INVOICES_ALL, status:VALID,
-
VIEW: APPS.IEX_TRX_SUMMARY_V
12.2.2
-
VIEW: APPS.IEX_TRX_SUMMARY_V
12.1.1
-
VIEW: APPS.MSC_X_EXCEPTION_SEARCH_V
12.2.2
owner:APPS, object_type:VIEW, object_name:MSC_X_EXCEPTION_SEARCH_V, status:VALID,
-
View: FII_AR_PASTDUE_REC_PMV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_AR_PASTDUE_REC_PMV, object_name:FII_AR_PASTDUE_REC_PMV, status:VALID, product: FII - Financial Intelligence , description: FII_AR_PASTDUE_REC_PMV is an Internal view used to support Risk Indicator Portlets , implementation_dba_data: APPS.FII_AR_PASTDUE_REC_PMV ,
-
VIEW: APPS.IEX_OPEN_LINES_V
12.2.2
-
TABLE: FUN.FUN_NET_AGREEMENTS_ALL
12.1.1
owner:FUN, object_type:TABLE, fnd_design_data:FUN.FUN_NET_AGREEMENTS_ALL, object_name:FUN_NET_AGREEMENTS_ALL, status:VALID,
-
VIEW: APPS.CSC_INV_TRANSACTIONS_V
12.2.2
-
VIEW: APPS.IEX_TRANSACTIONS_QUERY_V
12.1.1
owner:APPS, object_type:VIEW, object_name:IEX_TRANSACTIONS_QUERY_V, status:VALID,