Search Results past_due_open_amount_prim
Overview
APPS.FII_AR_NET_REC_AGRT_MV_P_V is a reporting view in Oracle E-Business Suite that exposes the primary-currency contents of the materialized view FII_AR_NET_REC_AGRT_MV. It forms part of the Oracle Financials Intelligence / Enterprise Trade and Receivables Management (ETRM) reporting layer, providing net receivables and receipts activity metrics for Accounts Receivable (AR) at a specified level of aggregation. The view is a thin, read-only projection: its defining query selects every column of the underlying materialized view without joins, filters, or transformations, so the row grain and data freshness are entirely governed by that materialized view.
The view is designed for consumption by BI Publisher reports, Oracle Business Intelligence (OBIEE) repositories, and custom SQL used in AR aging, collections, and cash application analysis. Its naming conventions — the _MV_ and _P_V suffixes together with the _AMOUNT_PRIM and _NUM_PRIM column suffixes — indicate that values are stored in the ledger's primary currency and that the physical aggregation has already been performed, making the view suitable for high-volume reporting where on-the-fly aggregation would be prohibitively expensive.
Underlying Base Objects
According to the documented metadata, the view is defined over a single object: FII_AR_NET_REC_AGRT_MV, a materialized view. No additional base tables are documented as directly referenced by the view definition. In practice, the materialized view itself is refreshed from AR transaction, receipt, customer account, collector, and calendar/time dimension sources, but those lineage relationships sit beneath the materialized view and are not exposed by the view text. Because the view adds no logic, any query tuning, refresh strategy, or indexing performed on FII_AR_NET_REC_AGRT_MV applies equally to this view.
Key Columns
- Time and period: TIME_ID, PERIOD_TYPE_ID, and HEADER_FILTER_DATE establish the reporting period and drive time-based comparisons.
- Party and account context: PARENT_PARTY_ID, PARTY_ID, CUST_ACCOUNT_ID, COLLECTOR_ID, and ORG_ID identify the trading partner hierarchy, customer account, assigned collector, and operating unit dimension.
- Aging buckets: CURRENT_BUCKET_1_AMOUNT_PRIM through CURRENT_BUCKET_3_AMOUNT_PRIM with matching _COUNT columns, and PAST_DUE_BUCKET_1_AMOUNT_PRIM through PAST_DUE_BUCKET_7_AMOUNT_PRIM with matching _COUNT columns, present the aged receivables position.
- Open balances: CURRENT_OPEN_AMOUNT_PRIM, PAST_DUE_OPEN_AMOUNT_PRIM, TOTAL_OPEN_AMOUNT_PRIM, and TOTAL_OPEN_COUNT summarise outstanding exposure.
- Transaction types: INV_AMOUNT_PRIM (invoice amount, the column most commonly searched for as "inv_amount_prim"), DM_AMOUNT_PRIM, CB_AMOUNT_PRIM, BR_AMOUNT_PRIM, DEP_AMOUNT_PRIM, ON_ACCOUNT_CREDIT_AMOUNT_PRIM, UNAPP_DEP_AMOUNT_PRIM, PREPAYMENT_AMOUNT_PRIM, CLAIM_AMOUNT_PRIM, BILLED_AMOUNT_PRIM, and BILLING_ACTIVITY_AMOUNT_PRIM / _COUNT decompose receivable activity by source document.
- Receipts and application: APP_AMOUNT_PRIM, APP_COUNT, ON_ACCOUNT_CASH_AMOUNT_PRIM, TOTAL_RECEIPT_AMOUNT_PRIM, TOTAL_RECEIPT_COUNT, EARNED_DISCOUNT_AMOUNT_PRIM, and UNEARNED_DISCOUNT_AMOUNT_PRIM describe cash application and discount performance.
- Revenue and payment timing: REV_AMOUNT_PRIM, REV_COUNT, AVG_DD_NUM_PRIM, WTD_DAYS_PAID_NUM_PRIM, WTD_TERMS_PAID_NUM_PRIM, and the WTD_TERMS_OUT_* / WTD_DDSO_DUE_NUM_PRIM metrics support DSO and days-paid analysis.
- Technical keys: GID and UMARKER support change detection and incremental extraction.
Common Use Cases and Queries
The view is typically queried to obtain pre-aggregated invoiced, collected, and open balances by customer, collector, or period. A representative query summing invoiced value and receipts for a given period and operating unit:
SELECT cust_account_id,
SUM(inv_amount_prim) AS invoiced_amount,
SUM(total_receipt_amount_prim) AS receipts,
SUM(total_open_amount_prim) AS open_balance
FROM apps.fii_ar_net_rec_agrt_mv_p_v
WHERE org_id = :p_org_id
AND time_id BETWEEN :p_from_time AND :p_to_time
GROUP BY cust_account_id;
Additional scenarios include aging analysis by bucket for collections prioritisation (selecting the PAST_DUE_BUCKET_n_AMOUNT_PRIM and matching _COUNT columns), DSO reporting using WTD_DDSO_DUE_NUM_PRIM and WTD_DAYS_PAID_NUM_PRIM, and incremental data extraction driven by GID or UMARKER. Because all amounts are primary-currency values, any reporting requirement involving converted or dual currency must be handled upstream, typically by joining to the relevant currency conversion logic rather than expecting it from this view.
-
VIEW: APPS.FII_AR_NET_REC_AGRT_MV_P_V
12.1.1
-
VIEW: APPS.FII_AR_NET_REC_BASE_MV_P_V
12.1.1
-
APPS.FII_AR_TPDUE_TBL_REFRESH SQL Statements
12.1.1
-
TABLE: FII.FII_AR_TPDUE_BASE_F
12.1.1
owner:FII, object_type:TABLE, fnd_design_data:FII.FII_AR_TPDUE_BASE_F, object_name:FII_AR_TPDUE_BASE_F, status:VALID,
-
TABLE: FII.FII_AR_TPDUE_AGRT_F
12.1.1
owner:FII, object_type:TABLE, fnd_design_data:FII.FII_AR_TPDUE_AGRT_F, object_name:FII_AR_TPDUE_AGRT_F, status:VALID,
-
View: FII_AR_NET_REC_AGRT_MV_P_V
12.2.2
product: FII - Financial Intelligence (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: FII_AR_NET_REC_BASE_MV_P_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_AR_NET_REC_BASE_MV_P_V, object_name:FII_AR_NET_REC_BASE_MV_P_V, status:VALID, product: FII - Financial Intelligence , implementation_dba_data: APPS.FII_AR_NET_REC_BASE_MV_P_V ,
-
View: FII_AR_NET_REC_BASE_MV_P_V
12.2.2
product: FII - Financial Intelligence (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
MATERIALIZED VIEW: APPS.FII_AR_NET_REC_BASE_MV
12.1.1
-
MATERIALIZED VIEW: APPS.FII_AR_NET_REC_AGRT_MV
12.1.1
-
View: FII_AR_NET_REC_AGRT_MV_P_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_AR_NET_REC_AGRT_MV_P_V, object_name:FII_AR_NET_REC_AGRT_MV_P_V, status:VALID, product: FII - Financial Intelligence , implementation_dba_data: APPS.FII_AR_NET_REC_AGRT_MV_P_V ,
-
PACKAGE BODY: APPS.FII_AR_TPDUE_TBL_REFRESH
12.1.1
-
MATERIALIZED VIEW: APPS.FII_AR_NET_REC_BASE_MV
12.1.1
owner:APPS, object_type:MATERIALIZED VIEW, object_name:FII_AR_NET_REC_BASE_MV, status:VALID,
-
TABLE: APPS.MLOG$_FII_AR_NET_REC_INTR_
12.1.1
owner:APPS, object_type:TABLE, object_name:MLOG$_FII_AR_NET_REC_INTR_, status:VALID,
-
TABLE: APPS.FII_AR_NET_REC_AGRT_MV
12.1.1
owner:APPS, object_type:TABLE, object_name:FII_AR_NET_REC_AGRT_MV, status:VALID,
-
MATERIALIZED VIEW: APPS.FII_AR_NET_REC_INTR_MV
12.1.1
owner:APPS, object_type:MATERIALIZED VIEW, object_name:FII_AR_NET_REC_INTR_MV, status:VALID,
-
MATERIALIZED VIEW: APPS.FII_AR_NET_REC_AGRT_MV
12.1.1
owner:APPS, object_type:MATERIALIZED VIEW, object_name:FII_AR_NET_REC_AGRT_MV, status:VALID,
-
TABLE: APPS.FII_AR_NET_REC_INTR_MV
12.1.1
owner:APPS, object_type:TABLE, fnd_design_data:FND.FII_AR_NET_REC_INTR_MV, object_name:FII_AR_NET_REC_INTR_MV, status:VALID,
-
TABLE: APPS.MLOG$_FII_AR_NET_REC_BASE_
12.1.1
owner:APPS, object_type:TABLE, object_name:MLOG$_FII_AR_NET_REC_BASE_, status:VALID,
-
TABLE: APPS.FII_AR_NET_REC_BASE_MV
12.1.1
owner:APPS, object_type:TABLE, object_name:FII_AR_NET_REC_BASE_MV, status:VALID,
-
eTRM - FII Tables and Views
12.1.1
description: This table stores the mapping of leaf nodes from pruned dimension to nodes in the child value sets ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,