Search Results current_open_amount_prim




Overview

FII_AR_NET_REC_BASE_MV_P_V is a reporting view owned by the APPS schema in Oracle E-Business Suite, registered under the Financial Intelligence (FII) product family. It exposes the primary-currency (functional currency) presentation layer of the Accounts Receivable net receivables base materialized view used by Oracle Receivables and Financial Intelligence reporting, dashboards, and analytics. The view serves as the "prim" mode of access: every amount column is suffixed _PRIM, indicating that balances are stored and returned in the ledger's primary currency rather than a converted reporting currency. Because it is a thin projection over a materialized view rather than a transactional table, queries against it return pre-aggregated, pre-computed period snapshots rather than live subledger transactions, which makes it suitable for high-volume analytic workloads such as collections efficiency, Days Sales Outstanding (DSO), aging analysis, and receivables performance reporting.

Underlying Base Objects

The view is defined over a single documented object: FII_AR_NET_REC_BASE_MV, the AR net receivables base materialized view. ETRM metadata for this specific view records no further referenced base objects, and the view text is a direct column-selection statement with no joins, filters, or transformations. In practice, the underlying materialized view is refreshed from Receivables transactional data — invoice, receipt, adjustment, and customer account records aggregated by time and party — but the view itself performs no such aggregation; it simply renames and exposes the pre-materialized result set. Consequently, data currency is governed entirely by the refresh schedule of FII_AR_NET_REC_BASE_MV, not by query execution.

Key Columns

Common Use Cases and Queries

Typical usage is aggregation of open balances by collector, customer, or operating unit, and aging or DSO reporting by period. Because the view already supplies primary-currency amounts, no currency conversion is required. A representative query selecting the current open amount alongside past-due exposure is:

SELECT time_id, org_id, cust_account_id, collector_id,
  current_open_amount_prim,
  past_due_open_amount_prim,
  total_open_amount_prim,
  past_due_bucket_1_amount_prim
FROM apps.fii_ar_net_rec_base_mv_p_v
WHERE period_type_id = :p_period_type
  AND org_id = :p_org_id
ORDER BY total_open_amount_prim DESC;

A second common pattern sums the primary-currency open amount by collector to drive collections scorecards, and a third calculates the proportion of overdue to total open receivables to derive a past-due ratio. In all cases, callers should account for materialized view refresh lag, use the ORG_ID and CLASS_CODE predicates to scope results correctly, and reference CURRENT_OPEN_AMOUNT_PRIM rather than the unconverted counterparts found in the broader FII_AR_NET_REC_BASE_MV object.