Search Results fii_ar_receipts_f
Overview
FII_AR_RECEIPTS_F is a fact table within the Oracle Financial Intelligence (FII) product, a legacy Business Intelligence offering that has since been classified as obsolete. In Oracle EBS 12.1.1 and 12.2.2, the table resides in the FII schema and stores transactional facts related to customer receipts and credit memos drawn from Oracle Receivables. Its documented purpose is to consolidate receipt, application, and credit memo activity into a denormalized fact structure for analytical reporting.
The ETRM metadata records the table as "Not implemented in this database" in the current environment, indicating that it is a historical artifact from earlier FII releases rather than an actively maintained object. Commercial customers on 12.1.1 and 12.2.2 should treat this table as read-only reference material for legacy ETL logic or archival reporting.
Based on the mined foreign key structure, the table classifies heuristically as a standalone data vault object. It is a fact or transaction-level table rather than a hub, link, or satellite in the strict Data Vault sense, because its primary key is a transactional surrogate and it carries a mixture of dimensional references and numeric measures.
Key Information Stored
The table contains 52 columns in the documented 12.1.1 schema. The primary key is FII_AR_RECEIPTS_F_PK, defined on the single column RECEIVABLE_APPLICATION_ID, which is a surrogate identifier sourced from the receivables application records. No separate business-key unique index is documented, so RECEIVABLE_APPLICATION_ID serves as the sole documented key candidate.
- CASH_RECEIPT_ID — the operational identifier of the receipt header in Oracle Receivables.
- TIME_ID — the date dimension foreign key used by FII star-schema reporting.
- AMOUNT_APPLIED_RCT and AMOUNT_APPLIED_TRX — the amounts applied to the receipt and to the transaction, respectively, in original transaction currency.
- AMOUNT_APPLIED_RCT_FUNC, AMOUNT_APPLIED_TRX_FUNC, and the _PRIM and _SEC variants — the same amounts restated in functional, primary, and secondary currencies for multi-currency reporting.
- EARNED_DISCOUNT_AMOUNT_TRX and UNEARNED_DISCOUNT_AMOUNT_TRX, with _FUNC, _PRIM, and _SEC counterparts — the discount amounts associated with the application.
- APPLY_DATE, GL_DATE, and TRX_DATE — the application date, general ledger date, and original transaction date driving period reporting.
- APPLICATION_TYPE and APPLICATION_STATUS — the classification and lifecycle status of the application.
- APPLIED_CUSTOMER_TRX_ID and APPLIED_PAYMENT_SCHEDULE_ID — the transaction and schedule against which the payment was applied.
- CUSTOMER_TRX_ID and PAYMENT_SCHEDULE_ID — the credit memo or transaction that owns the application record.
- RECEIPT_NUMBER, RECEIPT_TYPE, and RECEIPT_DATE — descriptive attributes of the source receipt.
- CURRENCY_CODE and RECEIPT_METHOD_ID — the currency of the fact and the receipt method reference.
- BILL_TO_CUSTOMER_ID and ORG_ID — the customer and operating unit dimensions.
Common Use Cases and Queries
Analysts typically use this table for receipt application analysis, credit memo reconciliation, and multi-currency collections reporting. A representative query joins the fact to the customer dimension and summarizes applied amounts by period:
SELECT c.customer_name, SUM(f.amount_applied_trx_func)
FROM fii.fii_ar_receipts_f f, ar.hz_cust_accounts c
WHERE f.bill_to_customer_id = c.cust_account_id
AND f.apply_date BETWEEN :p_start AND :p_end
GROUP BY c.customer_name;
Other common patterns include aging of applied versus unapplied receipts, drill-through to CASH_RECEIPT_ID in AR_CASH_RECEIPTS, and reconciliation of earned versus unearned discounts by transaction. Because the object is obsolete, reports built on it should be migrated to the corresponding Oracle BI Applications or Financials data model whenever possible.
Related Objects
The documented foreign key links FII_AR_RECEIPTS_F.RECEIPT_METHOD_ID to AR_RECEIPT_METHODS, providing the primary master-detail relationship for receipt method lookup. Beyond this documented relationship, the columns reference the core Oracle Receivables tables: AR_CASH_RECEIPTS via CASH_RECEIPT_ID, AR_RECEIVABLE_APPLICATIONS via RECEIVABLE_APPLICATION_ID, and RA_CUSTOMER_TRX_ALL via CUSTOMER_TRX_ID and APPLIED_CUSTOMER_TRX_ID. Customer records are referenced through BILL_TO_CUSTOMER_ID and COLLECTOR_BILL_TO_CUSTOMER_ID against HZ_CUST_ACCOUNTS. The TIME_ID column maps to the FII time dimension, and ORG_ID maps to the operating unit dimension. These relationships make the table a bridge between FII reporting structures and the operational Receivables tables.
-
Table: FII_AR_RECEIPTS_F
12.2.2
product: FII - Financial Intelligence (Obsolete) , description: This is the fact table that stores receipts and credit memos. , implementation_dba_data: Not implemented in this database ,
-
Table: FII_AR_RECEIPTS_F
12.1.1
owner:FII, object_type:TABLE, fnd_design_data:FII.FII_AR_RECEIPTS_F, object_name:FII_AR_RECEIPTS_F, status:VALID, product: FII - Financial Intelligence , description: This is the fact table that stores receipts and credit memos. , implementation_dba_data: FII.FII_AR_RECEIPTS_F ,
-
APPS.FII_AR_TRX_ACT_HISTORY_PKG SQL Statements
12.1.1
-
SYNONYM: APPS.FII_AR_RECEIPTS_F
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FII_AR_RECEIPTS_F, status:VALID,
-
APPS.FII_AR_PAID_REC_DTL_PKG SQL Statements
12.1.1
-
APPS.FII_AR_REC_ACT_DETAIL_PKG SQL Statements
12.1.1
-
APPS.FII_AR_REC_ACT_HISTORY_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.FII_AR_TRX_ACT_HISTORY_PKG
12.1.1
-
APPS.FII_AR_REC_DETAIL_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.FII_AR_FACTS_AGING_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FII_AR_FACTS_AGING_PKG, status:VALID,
-
PACKAGE BODY: APPS.FII_AR_ACCOUNT_MERGE_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FII_AR_ACCOUNT_MERGE_PKG, status:VALID,
-
View: FII_AR_RECEIPTS_F_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_AR_RECEIPTS_F_V, object_name:FII_AR_RECEIPTS_F_V, status:VALID, product: FII - Financial Intelligence , description: This view is based on table FII_AR_RECEIPTS_F. It sotres receipts and credit memos. , implementation_dba_data: APPS.FII_AR_RECEIPTS_F_V ,
-
View: FII_AR_RECEIPTS_F_V
12.2.2
product: FII - Financial Intelligence (Obsolete) , description: This view is based on table FII_AR_RECEIPTS_F. It sotres receipts and credit memos. , implementation_dba_data: Not implemented in this database ,
-
APPS.FII_AR_ACCOUNT_MERGE_PKG SQL Statements
12.1.1
-
VIEW: APPS.FII_AR_RECEIPTS_F_V
12.1.1
-
PACKAGE BODY: APPS.FII_AR_PAID_REC_DTL_PKG
12.1.1
-
TABLE: FII.FII_AR_RECEIPTS_F
12.1.1
owner:FII, object_type:TABLE, fnd_design_data:FII.FII_AR_RECEIPTS_F, object_name:FII_AR_RECEIPTS_F, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.FII_AR_RECEIPTS_F_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_AR_RECEIPTS_F_V, object_name:FII_AR_RECEIPTS_F_V, status:VALID,
-
PACKAGE BODY: APPS.FII_AR_ACCOUNT_MERGE_PKG
12.1.1
-
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,
-
PACKAGE BODY: APPS.FII_AR_REC_ACT_DETAIL_PKG
12.1.1
-
PACKAGE BODY: APPS.FII_AR_REC_ACT_HISTORY_PKG
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.FII_AR_REC_DETAIL_PKG
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,
-
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,
-
PACKAGE BODY: APPS.FII_AR_FACTS_AGING_PKG
12.1.1
-
APPS.FII_AR_ACCOUNT_MERGE_PKG dependencies on FII_AR_RECEIPTS_F
12.1.1
-
APPS.FII_AR_FACTS_AGING_PKG dependencies on FII_AR_RECEIPTS_F
12.1.1
-
APPS.FII_AR_FACTS_AGING_PKG SQL Statements
12.1.1
-
APPS.FII_AR_FACTS_AGING_PKG dependencies on FII_CHANGE_LOG
12.1.1
-
APPS.FII_AR_FACTS_AGING_PKG dependencies on FND_STATS
12.1.1
-
APPS.FII_AR_FACTS_AGING_PKG dependencies on FII_AR_RECAPP_MERGE_GT
12.1.1
-
APPS.FII_AR_FACTS_AGING_PKG dependencies on FII_AR_RECEIPTS_DELETE_T
12.1.1
-
APPS.FII_AR_FACTS_AGING_PKG dependencies on FII_AR_RECAPP_DELETE_GT
12.1.1
-
APPS.FII_AR_FACTS_AGING_PKG dependencies on FII_UTIL
12.1.1
-
APPS.FII_AR_FACTS_AGING_PKG dependencies on FII_AR_PMT_SCHEDULES_F
12.1.1
-
APPS.FII_AR_FACTS_AGING_PKG dependencies on FII_AR_AGING_RECEIPTS
12.1.1
-
APPS.FII_AR_FACTS_AGING_PKG dependencies on FII_AR_PAYSCH_MERGE_GT
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 ,
-
12.1.1 DBA Data
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 ,