Search Results salesrep_fk




Overview

FII_AR_E_REVENUE_FCV is a collection view within the Oracle E-Business Suite Financial Intelligence (FII) product family. It serves as the staging and extraction layer for the FII_AR_E_REVENUE_F fact, which stores Accounts Receivable revenue transaction data used by the Financial Intelligence data warehouse and analytical reporting stack. In EBS 12.1.1 and 12.2.2, FII objects such as this view are typically consumed by ETL processes that move data from the transactional EBS schema into the FII reporting schema, where revenue metrics are aggregated and analyzed across dimensions such as customer, item, sales channel, and GL period.

The view exposes a wide projection of revenue attributes — identifiers, foreign keys to conformed dimensions, transaction amounts, quantity metrics, and descriptive text fields. Because it is a collection view rather than a transactional entity view, its purpose is to present a consistent, denormalized row shape that downstream collection programs can load reliably.

Underlying Base Objects

The documented metadata for this object in ETRM 12.2.2 does not list referenced base objects, and the implementation note states "Not implemented in this database" for the documented environment. This indicates that the view is a delivered FII object whose definition is supplied by the Financial Intelligence product, but whose underlying tables reside in the FII/AR staging schema rather than in a standard transactional schema. In practice, FII collection views of this naming convention (suffix _FCV for fact collection view) are defined over the corresponding _F fact table and related staging tables populated by the FII extraction routines.

Key Columns

Common Use Cases and Queries

Typical usage involves joining the view to FII dimension views for revenue analytics, or filtering by journal description text. For example, to retrieve revenue lines with their GL journal descriptions for a given ledger:

SELECT TRX_NUMBER, INVOICE_DATE, JE_NAME, JE_DESCRIPTION,
       JE_LINE_DESC, AMT_B, AMT_G, AMT_T, LINE_QTY_INVOICED_NC
FROM   FII_AR_E_REVENUE_FCV
WHERE  SET_OF_BOOKS_ID = :p_sob_id
AND    TRUNC(INVOICE_DATE) BETWEEN :p_start AND :p_end
ORDER  BY INVOICE_DATE;

A second common pattern searches for specific journal text, matching the user's "je_description" interest:

SELECT TRX_NUMBER, AR_DOC_NUM_FK, JE_DESCRIPTION, LINE_TYPE,
       LINE_QTY_INVOICED_NC, AMT_T
FROM   FII_AR_E_REVENUE_FCV
WHERE  UPPER(JE_DESCRIPTION) LIKE UPPER('%' || :p_keyword || '%');

Because the object is a collection view intended for bulk FII loads, queries are usually restricted by batch, period, or ledger to limit scan volume. Direct user-facing reporting generally occurs after the underlying fact has been aggregated into FII star-schema views.