Search Results ce_ar_fc_invoices_v
Overview
CE_AR_FC_INVOICES_V is a Cash Management (CE) forecasting view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. Its documented description is "Forecasting source - AR invoices," and it serves as a reporting and integration layer that exposes open Accounts Receivable invoice and debit memo balances together with the customer profile class to which each transaction relates. The view is one of the designated data sources consumed by the Cash Management cash forecasting engine when projecting expected cash inflows from receivables.
Functionally, the view presents open transactions on the AR_PAYMENT_SCHEDULES_ALL ledger, filtered so that only transactions with a remaining amount due are surfaced. Because it joins to the customer profile class, forecast results can be segmented or aggregated by profile class, which is a common reporting dimension in EBS. The view therefore acts as a standardization layer: rather than embedding the AR, HZ, and profile-class join logic directly within the forecasting program, the logic is encapsulated in a single validated APPS view.
Underlying Base Objects
Per ETRM 12.2.2 metadata, the view is defined over four referenced base objects:
- AR_PAYMENT_SCHEDULES_ALL (SYNONYM) — the driving AR transaction and schedule table, supplying transaction number, accounted and entered amounts due remaining, amount in dispute, invoice currency, exchange rate, due date, transaction date, customer identifiers, and organization identifier.
- HZ_CUSTOMER_PROFILES (SYNONYM) — the customer profile entity, joined either on the customer site use identifier for site-level profiles or on the customer account identifier for account-level profiles (where the site use identifier is null).
- HZ_CUST_PROFILE_CLASSES (SYNONYM) — the profile class definition table, supplying the profile class identifier and profile class name that are exposed on the view.
- AR_PUBLIC_UTILS (PACKAGE) — an AR public API package invoked in the view text through the function CHECK_PREPAY_TRANSACTION, which suppresses prepayment transactions from the result set.
The view text is a UNION of two queries. The first resolves profile classes at the site-use level via HZ_CUSTOMER_PROFILES.SITE_USE_ID; the second resolves account-level profile classes where the site use identifier is null. Both branches restrict to payment schedules with STATUS = 'OP' (open), exclude classes of 'PMT' and 'GUAR', and exclude prepayments through the AR_PUBLIC_UTILS call.
Key Columns
Column aliases are derived positionally from the SELECT list. Documented columns include:
- TRX_NUMBER — the AR transaction number identifying the invoice or debit memo.
- BASE_AMOUNT (ACCTD_AMOUNT_DUE_REMAINING) — the remaining amount due in ledger currency.
- AMOUNT (AMOUNT_DUE_REMAINING) — the remaining amount due in the transaction currency.
- DISPUTE_AMOUNT (NVL of AMOUNT_IN_DISPUTE, 0) — the disputed portion, defaulted to zero.
- CURRENCY_CODE — the invoice currency code.
- EXCHANGE_RATE — the rate applied to the transaction.
- TRX_DATE — the transaction date; INVOICE_DATE is the same underlying value.
- PROFILE_CLASS_ID and PROFILE_CLASS — the profile class identifier and name, the join key most relevant to the "hz_cust_profile_classes" search.
- CUSTOMER_TRX_ID — the AR transaction identifier.
- ORG_ID — the operating unit, supporting multi-org security.
- CUSTOMER_ID and SITE_USE_ID — customer account and site use identifiers.
- REFERENCE_ID — derived as 'AR' concatenated with the payment schedule identifier, forming a unique forecast reference.
Common Use Cases and Queries
Typical scenarios include cash forecast validation, receivables aging by profile class, and reconciliation of expected collections against the Cash Management forecast engine.
Open invoice exposure by profile class:
SELECT profile_class, SUM(amount) FROM ce_ar_fc_invoices_v GROUP BY profile_class;
Operating-unit restricted listing:
SELECT trx_number, customer_id, amount, currency_code, trx_date FROM ce_ar_fc_invoices_v WHERE org_id = :p_org_id ORDER BY trx_date;
Disputed balances for review:
SELECT trx_number, dispute_amount FROM ce_ar_fc_invoices_v WHERE dispute_amount > 0;
Site versus account level profile classes:
SELECT reference_id, customer_trx_id, site_use_id, profile_class FROM ce_ar_fc_invoices_v WHERE site_use_id IS NULL;
-
View: CE_AR_FC_INVOICES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_AR_FC_INVOICES_V, object_name:CE_AR_FC_INVOICES_V, status:VALID, product: CE - Cash Management , description: Forecasting source - AR invoices , implementation_dba_data: APPS.CE_AR_FC_INVOICES_V ,
-
View: CE_AR_FC_INVOICES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_AR_FC_INVOICES_V, object_name:CE_AR_FC_INVOICES_V, status:VALID, product: CE - Cash Management , description: Forecasting source - AR invoices , implementation_dba_data: APPS.CE_AR_FC_INVOICES_V ,
-
VIEW: APPS.CE_FC_ARI_DISC_V
12.1.1
-
VIEW: APPS.CE_FC_ARI_DISC_V
12.2.2
-
VIEW: APPS.CE_AR_FC_INVOICES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_AR_FC_INVOICES_V, object_name:CE_AR_FC_INVOICES_V, status:VALID,
-
VIEW: APPS.CE_AR_FC_INVOICES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_AR_FC_INVOICES_V, object_name:CE_AR_FC_INVOICES_V, status:VALID,
-
PACKAGE: APPS.AR_PUBLIC_UTILS
12.2.2
owner:APPS, object_type:PACKAGE, object_name:AR_PUBLIC_UTILS, status:VALID,
-
PACKAGE: APPS.AR_PUBLIC_UTILS
12.1.1
owner:APPS, object_type:PACKAGE, object_name:AR_PUBLIC_UTILS, status:VALID,
-
View: CE_FC_ARI_DISC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_FC_ARI_DISC_V, object_name:CE_FC_ARI_DISC_V, status:VALID, product: CE - Cash Management , implementation_dba_data: APPS.CE_FC_ARI_DISC_V ,
-
View: CE_FC_ARI_DISC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_FC_ARI_DISC_V, object_name:CE_FC_ARI_DISC_V, status:VALID, product: CE - Cash Management , implementation_dba_data: APPS.CE_FC_ARI_DISC_V ,
-
SYNONYM: APPS.HZ_CUST_PROFILE_CLASSES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_PROFILE_CLASSES, status:VALID,
-
VIEW: APPS.CE_FC_ARI_DISC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_FC_ARI_DISC_V, object_name:CE_FC_ARI_DISC_V, status:VALID,
-
VIEW: APPS.CE_FC_ARI_DISC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_FC_ARI_DISC_V, object_name:CE_FC_ARI_DISC_V, status:VALID,
-
SYNONYM: APPS.HZ_CUST_PROFILE_CLASSES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_PROFILE_CLASSES, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.HZ_CUSTOMER_PROFILES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_CUSTOMER_PROFILES, status:VALID,
-
SYNONYM: APPS.AR_PAYMENT_SCHEDULES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AR_PAYMENT_SCHEDULES_ALL, status:VALID,
-
SYNONYM: APPS.HZ_CUSTOMER_PROFILES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CUSTOMER_PROFILES, status:VALID,
-
SYNONYM: APPS.AR_PAYMENT_SCHEDULES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AR_PAYMENT_SCHEDULES_ALL, status:VALID,
-
PACKAGE BODY: APPS.XTR_CSH_FCST_POP
12.1.1
-
PACKAGE BODY: APPS.XTR_CSH_FCST_POP
12.2.2
-
eTRM - CE Tables and Views
12.2.2
description: This table stores the error or warning messages from ZBA deal creation process ,
-
eTRM - CE Tables and Views
12.1.1
description: This table stores the error or warning messages from ZBA deal creation process ,
-
APPS.XTR_CSH_FCST_POP dependencies on XTR_DEBUG_PKG
12.2.2
-
APPS.XTR_CSH_FCST_POP dependencies on XTR_DEBUG_PKG
12.1.1
-
PACKAGE BODY: APPS.CE_CSH_FCST_POP
12.1.1
-
PACKAGE BODY: APPS.CE_CSH_FCST_POP
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - CE Tables and Views
12.1.1
description: This table stores the error or warning messages from ZBA deal creation process ,
-
eTRM - CE Tables and Views
12.2.2
description: This table stores the error or warning messages from ZBA deal creation process ,
-
APPS.CE_CSH_FCST_POP dependencies on STANDARD
12.1.1
-
APPS.CE_CSH_FCST_POP dependencies on CEP_STANDARD
12.1.1
-
APPS.CE_CSH_FCST_POP dependencies on CEP_STANDARD
12.2.2
-
APPS.CE_CSH_FCST_POP dependencies on STANDARD
12.2.2
-
APPS.CE_CSH_FCST_POP dependencies on CE_CASH_FCST
12.2.2
-
APPS.CE_CSH_FCST_POP dependencies on CE_CASH_FCST
12.1.1