Search Results inv_count
Overview
FII_AP_OP_IND_INV_SUMMARY_V is a reporting view owned by the APPS schema in Oracle E-Business Suite Release 12.1.1 and 12.2.2. It exposes summarized accounts payable invoice activity, aggregated by operating unit and trading partner, and is part of the Financials Intelligence / ETRM (Enterprise Tax and Reporting Model) family of objects. The view is designed to answer a narrow but frequently requested question: which operating unit / trading partner combinations have posted supplier invoice activity, and how large is that activity in terms of invoice line count, invoice count, and monetary amount.
In the context of EBS reporting and integration, this view functions as a curated, filtered projection over a pre-aggregated summary table. It is not a transaction-level view. Because the underlying summary is already consolidated, the view is efficient for dashboards, tax and reporting extracts, and third-party integrations that need period-level operational indicators rather than individual invoice documents.
Underlying Base Objects
The view is defined over a single documented base object: the table FII_AP_OP_INDICATOR_SUMMARY. No other base tables, synonyms, or views are documented in the ETRM metadata for this object, so the relationship is a straightforward one-to-one projection with a filter applied. The base table carries pre-aggregated indicator data keyed by operating unit and trading partner. The view selects only the columns relevant to invoice-level indicators and eliminates rows where INVOICE_LINES_COUNT is zero.
The resulting relationship can be expressed simply: FII_AP_OP_IND_INV_SUMMARY_V = FII_AP_OP_INDICATOR_SUMMARY WHERE INV_LINES_COUNT > 0, with a rename of columns to report-friendly aliases. Because the view imposes no joins, there is no risk of row multiplication from fan-out joins, and query performance is governed almost entirely by the base table's indexes and the selectivity of the INV_LINES_COUNT predicate.
Key Columns
- OPERATING_UNIT_PK_KEY — Primary key of the operating unit, suitable for joins to operating unit dimension tables and secure access control.
- OPERATING_UNIT_NAME — Descriptive name of the operating unit, useful for display and grouping without an additional lookup.
- TRADING_PARTNER_PK_KEY — Primary key of the trading partner (supplier/legal entity counterparty) for which invoice activity is summarized.
- TRADING_PARTNER_NAME — Descriptive name of the trading partner, provided for report labeling.
- INVOICE_LINES_COUNT — Number of invoice lines contributing to the summary row. This column also drives the view's filter; only non-zero values are returned.
- INVOICE_COUNT (inv_count) — Number of invoices represented by the summary row. This is the column users typically reference when they search for "inv_count"; note the view aliases the base column INV_COUNT to INVOICE_COUNT.
- INVOICE_AMOUNT — Total monetary amount of the summarized invoices, in the functional currency of the operating unit.
Common Use Cases and Queries
Typical use cases include reconciling invoice counts per operating unit for tax reporting, validating trading-partner activity volumes before period close, and feeding external tax engines or data warehouses with aggregated AP indicators. Because the filter uses INV_LINES_COUNT, the view is an effective starting point for "activity exists" checks, avoiding empty summary rows.
A basic retrieval of invoice counts and amounts for all active operating unit / trading partner combinations:
SELECT operating_unit_name, trading_partner_name, invoice_count, invoice_amount FROM apps.fii_ap_op_ind_inv_summary_v ORDER BY operating_unit_name, trading_partner_name;SELECT operating_unit_name, SUM(invoice_count) total_invoices, SUM(invoice_amount) total_amount FROM apps.fii_ap_op_ind_inv_summary_v GROUP BY operating_unit_name;SELECT * FROM apps.fii_ap_op_ind_inv_summary_v WHERE trading_partner_name = :partner ORDER BY invoice_amount DESC;
The third query illustrates a common pattern: filtering to a single trading partner and ordering by amount to identify the largest contributions. Since the view returns both key and name columns, integrations can join on the primary key columns while displaying the name columns, avoiding additional lookups.
-
APPS.FII_AP_OP_INDICATOR_SUM_C SQL Statements
12.1.1
-
VIEW: APPS.FII_AP_OP_IND_INV_SUMMARY_V
12.1.1
-
TABLE: FII.FII_AP_OP_INDICATOR_SUMMARY
12.1.1
owner:FII, object_type:TABLE, fnd_design_data:FII.FII_AP_OP_INDICATOR_SUMMARY, object_name:FII_AP_OP_INDICATOR_SUMMARY, status:VALID,
-
View: FII_AP_OP_IND_INV_SUMMARY_V
12.2.2
product: FII - Financial Intelligence (Obsolete) , description: FII_AP_OP_IND_INV_SUMMARY_V is the view to support Payables Invoice Summary Drill Downs Portlet , implementation_dba_data: Not implemented in this database ,
-
View: FII_AP_OP_IND_INV_SUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_AP_OP_IND_INV_SUMMARY_V, object_name:FII_AP_OP_IND_INV_SUMMARY_V, status:VALID, product: FII - Financial Intelligence , description: FII_AP_OP_IND_INV_SUMMARY_V is the view to support Payables Invoice Summary Drill Downs Portlet , implementation_dba_data: APPS.FII_AP_OP_IND_INV_SUMMARY_V ,
-
PACKAGE BODY: APPS.FII_AP_OP_INDICATOR_SUM_C
12.1.1
-
APPS.IGI_CIS2007_CDROM_PKG SQL Statements
12.1.1
-
APPS.IGI_CIS2007_CDROM_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.IGI_CIS2007_CDROM_PKG
12.1.1
-
PACKAGE BODY: APPS.IGI_CIS2007_CDROM_PKG
12.2.2
-
APPS.OKL_LCKBX_CSH_APP_PVT SQL Statements
12.2.2
-
APPS.OKL_LCKBX_CSH_APP_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.CZ_NETWORK_API_PUB
12.2.2
-
PACKAGE BODY: APPS.CZ_NETWORK_API_PUB
12.1.1
-
Lookup Type: OPEN_INTERFACE
12.1.1
product: FND - Application Object Library , meaning: Open interfaces for the Integration Repository , description: Open interfaces for the Integration Repository ,
-
Lookup Type: OPEN_INTERFACE
12.2.2
product: FND - Application Object Library , meaning: Open interfaces for the Integration Repository , description: Open interfaces for the Integration Repository ,
-
APPS.IGI_CIS2007_CDROM_PKG dependencies on AP_AWT_TAX_RATES
12.1.1
-
APPS.IGI_CIS2007_CDROM_PKG dependencies on AP_SUPPLIER_SITES
12.1.1
-
APPS.IGI_CIS2007_CDROM_PKG dependencies on AP_SUPPLIER_SITES
12.2.2
-
APPS.IGI_CIS2007_CDROM_PKG dependencies on AP_AWT_TAX_RATES
12.2.2
-
PACKAGE: APPS.MTL_CCEOI_ACTION_PUB
12.1.1
-
APPS.IGI_CIS2007_CDROM_PKG dependencies on AP_PAYMENT_SCHEDULES
12.1.1
-
APPS.IGI_CIS2007_CDROM_PKG dependencies on AP_INVOICES
12.1.1
-
PACKAGE: APPS.MTL_CCEOI_ACTION_PUB
12.2.2
-
APPS.IGI_CIS2007_CDROM_PKG dependencies on AP_PAYMENT_SCHEDULES
12.2.2
-
APPS.IGI_CIS2007_CDROM_PKG dependencies on AP_INVOICES
12.2.2
-
APPS.OKL_LCKBX_CSH_APP_PVT dependencies on RA_CUSTOMER_TRX_ALL
12.2.2
-
APPS.OKL_LCKBX_CSH_APP_PVT dependencies on RA_CUSTOMER_TRX_ALL
12.1.1
-
APPS.OKL_LCKBX_CSH_APP_PVT dependencies on RA_CUSTOMER_TRX
12.1.1
-
APPS.IGI_CIS2007_CDROM_PKG dependencies on AP_SUPPLIERS
12.1.1
-
APPS.OKL_LCKBX_CSH_APP_PVT dependencies on RA_CUSTOMER_TRX
12.2.2
-
PACKAGE: APPS.CSI_ITEM_INSTANCE_PVT
12.1.1
-
APPS.IGI_CIS2007_CDROM_PKG dependencies on AP_SUPPLIERS
12.2.2
-
PACKAGE: APPS.CSI_ITEM_INSTANCE_PVT
12.2.2
-
APPS.IGI_CIS2007_CDROM_PKG dependencies on IGI_CIS_CDROM_LINES_T
12.1.1
-
APPS.IGI_CIS2007_CDROM_PKG dependencies on IGI_CIS_CDROM_LINES_T
12.2.2
-
PACKAGE BODY: APPS.OKL_LCKBX_CSH_APP_PVT
12.2.2
-
PACKAGE BODY: APPS.OKL_LCKBX_CSH_APP_PVT
12.1.1
-
APPS.CZ_NETWORK_API_PUB dependencies on CZ_CF_API
12.1.1
-
APPS.CZ_NETWORK_API_PUB dependencies on CZ_CF_API
12.2.2
-
Lookup Type: BUSINESS_ENTITY
12.1.1
product: FND - Application Object Library , meaning: Business Entity(1) ,
-
Lookup Type: BUSINESS_ENTITY
12.2.2
product: FND - Application Object Library , meaning: Business Entity(1) ,
-
APPS.CSI_ITEM_INSTANCE_PVT dependencies on FND_API
12.2.2
-
APPS.CSI_ITEM_INSTANCE_PVT dependencies on FND_API
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 ,