Search Results current_open_amount_sec
Overview
APPS.FII_AR_NET_REC_AGRT_MV_S_V is a read-only reporting view in the Oracle E-Business Suite Receivables (AR) module, owned by the Applications schema (APPS). It exposes the contents of the materialized view FII_AR_NET_REC_AGRT_MV, which forms part of the Oracle Financials Intelligence / ETRM (Enterprise Transaction Reporting Model) reporting layer for Receivables. The view presents net receivables activity aggregated by agreement, party, customer account, collector, operating unit, and time period, together with a set of aged buckets that classify open balances as current or past due.
The suffix conventions are significant: the trailing _S_V indicates a secured view, meaning it is intended to enforce row-level security and organizational access restrictions when queried by reporting tools or integrated applications. Every amount column carries the _SEC suffix, which denotes that the value is expressed in the secured/preferred currency of the reporting context rather than the original transaction currency. This design allows downstream dashboards, such as the Receivables aging and collections analytics, to present consistent, currency-normalized figures without exposing cross-organization data.
Underlying Base Objects
The view is defined over a single object: the materialized view FII_AR_NET_REC_AGRT_MV. It performs a direct projection of all columns from that materialized view with no joins, filters, or calculations applied at the view layer. Consequently, all aggregation, bucketing, and currency conversion logic resides within the materialized view and its refresh program. No additional base tables are documented as referenced objects, and the ETRM metadata records no traditional base-table dependencies for this view. Performance characteristics therefore reflect the materialized view refresh schedule and the underlying indexes on its key dimensions (TIME_ID, ORG_ID, CUST_ACCOUNT_ID, and COLLECTOR_ID).
Key Columns
- TIME_ID, PERIOD_TYPE_ID — Identify the reporting period and its granularity (for example, day, week, or period) used to aggregate the metrics.
- PARENT_PARTY_ID, PARTY_ID, CUST_ACCOUNT_ID, COLLECTOR_ID, ORG_ID — The principal dimensions along which balances are grouped: party hierarchy, customer account, collections agent, and operating unit.
- HEADER_FILTER_DATE — A controlling date used to align header-level filtering with the period bucket logic.
- CURRENT_BUCKET_1_AMOUNT_SEC through CURRENT_BUCKET_3_* — Current (not yet due) open balances and their transaction counts across up to three definable current buckets.
- PAST_DUE_BUCKET_1_AMOUNT_SEC through PAST_DUE_BUCKET_7_* — Past-due open balances and counts distributed across seven aging buckets, supporting multi-interval aging analysis.
- DM_AMOUNT_SEC — The secured amount attributable to debit memos. This is the column most commonly associated with the search term
dm_amount_sec, and it represents debit memo activity expressed in secured currency within the aggregated period. - INV_AMOUNT_SEC, CB_AMOUNT_SEC, BR_AMOUNT_SEC, DEP_AMOUNT_SEC, ON_ACCOUNT_CREDIT_AMOUNT_SEC, UNAPP_DEP_AMOUNT_SEC, APP_AMOUNT_SEC, PREPAYMENT_AMOUNT_SEC, CLAIM_AMOUNT_SEC — Secured amounts by transaction classification: invoices, chargebacks, bills receivable, deposits, on-account credits, unapplied deposits, applications, prepayments, and claims.
- REV_AMOUNT_SEC, TOTAL_RECEIPT_AMOUNT_SEC, EARNED_DISCOUNT_AMOUNT_SEC, UNEARNED_DISCOUNT_AMOUNT_SEC — Cash and discount metrics, including revenue, total receipts, and earned versus unearned discounts.
- AVG_DD_NUM_SEC, WTD_DAYS_PAID_NUM_SEC, WTD_TERMS_PAID_NUM_SEC, WTD_DDSO_DUE_NUM_SEC, WTD_TERMS_OUT_* — Days-sales-outstanding and weighted payment-terms measures used in collections performance reporting.
- GID, UMARKER — Internal identifiers supporting ETRM data lineage and incremental refresh processing; not intended for end-user reporting.
Common Use Cases and Queries
This view is typically consumed by collections dashboards, aging reports, and DSO analysis where secured, currency-normalized values are mandatory. A representative query to retrieve debit memo exposure by customer account for a given period follows:
SELECT cust_account_id, SUM(dm_amount_sec) AS dm_total FROM apps.fii_ar_net_rec_agrt_mv_s_v WHERE org_id = :p_org_id AND time_id = :p_time_id GROUP BY cust_account_id ORDER BY dm_total DESC;SELECT collector_id, SUM(past_due_bucket_1_amount_sec) pd1, SUM(past_due_bucket_2_amount_sec) pd2, SUM(total_open_amount_sec) total_open FROM apps.fii_ar_net_rec_agrt_mv_s_v WHERE org_id = :p_org_id AND period_type_id = :p_period_type GROUP BY collector_id;SELECT time_id, SUM(total_receipt_amount_sec) receipts, SUM(rev_amount_sec) revenue FROM apps.fii_ar_net_rec_agrt_mv_s_v WHERE cust_account_id = :p_cust_account_id GROUP BY time_id ORDER BY time_id;
Because the view enforces security, queries executed under a responsibility with restricted organization access return only the operating units that responsibility is authorized to see. Reporting integrations should therefore always bind ORG_ID and TIME_ID to benefit from the materialized view's indexing and to avoid full scans of the aggregated dataset.
-
APPS.FII_AR_TPDUE_TBL_REFRESH SQL Statements
12.1.1
-
VIEW: APPS.FII_AR_NET_REC_AGRT_MV_S_V
12.1.1
-
VIEW: APPS.FII_AR_NET_REC_BASE_MV_S_V
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,
-
View: FII_AR_NET_REC_AGRT_MV_S_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_AR_NET_REC_AGRT_MV_S_V, object_name:FII_AR_NET_REC_AGRT_MV_S_V, status:VALID, product: FII - Financial Intelligence , implementation_dba_data: APPS.FII_AR_NET_REC_AGRT_MV_S_V ,
-
View: FII_AR_NET_REC_BASE_MV_S_V
12.2.2
product: FII - Financial Intelligence (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
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_S_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
-
PACKAGE BODY: APPS.FII_AR_TPDUE_TBL_REFRESH
12.1.1
-
View: FII_AR_NET_REC_BASE_MV_S_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_AR_NET_REC_BASE_MV_S_V, object_name:FII_AR_NET_REC_BASE_MV_S_V, status:VALID, product: FII - Financial Intelligence , implementation_dba_data: APPS.FII_AR_NET_REC_BASE_MV_S_V ,
-
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.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_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.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,
-
APPS.FII_AR_TPDUE_TBL_REFRESH dependencies on FII_AR_NET_REC_AGRT_MV
12.1.1
-
APPS.FII_AR_TPDUE_TBL_REFRESH dependencies on FII_TIME_STRUCTURES
12.1.1
-
APPS.FII_AR_TPDUE_TBL_REFRESH dependencies on HZ_PARTIES
12.1.1
-
APPS.FII_AR_TPDUE_TBL_REFRESH dependencies on FII_AR_NET_REC_BASE_MV
12.1.1
-
APPS.FII_AR_TPDUE_TBL_REFRESH dependencies on FII_CUSTOMER_HIERARCHIES
12.1.1
-
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 ,