Search Results igi_rpi_items
Overview
APPS.IGI_RPI_ITEMS_V is a reporting and integration view within the Oracle E-Business Suite (EBS) 12.1.1 / 12.2.2 environment, owned by the APPS schema. The view consolidates item-level price and tax configuration data used by the Oracle Retail/Public Sector/Projects-related pricing item functionality (historical IGI — Oracle Public Sector Financials / Grants-related and Retail Price Item lineage). Its primary purpose is to expose pricing item records alongside their associated tax rate code, allowing tax and price information to be retrieved in a single query rather than requiring separate joins against tax and pricing item tables.
The view is a denormalizing construct: it joins stored item pricing records with tax rate definitions so that consumers (reports, concurrent programs, or integration interfaces) do not need to resolve the tax rate relationship themselves. Because it is an APPS-owned synonym-based object, it is typically consumed through the APPS schema rather than accessed directly at the underlying table level.
Underlying Base Objects
According to the documented ETRM metadata (12.2.2), the view is defined over two referenced base objects, both exposed to the view as synonyms:
- IGI_RPI_ITEMS (SYNONYM) — the driving table supplying the item-level attributes (pricing items, effective dates, price amounts, revenue account, VAT tax reference, and organization).
- ZX_RATES_B (SYNONYM) — the EBS tax rates base table, supplying the tax rate code associated with the item's VAT tax identifier.
The join is an outer join (indicated by the (+) operator on ZSV.TAX_RATE_ID), meaning items are returned regardless of whether a matching tax rate exists. The join condition is ZX_RATES_B.TAX_RATE_ID = IGI_RPI_ITEMS.VAT_TAX_ID. This design ensures items without a configured tax rate are still reported, with a null tax rate code.
Key Columns
The view exposes the full column list of IGI_RPI_ITEMS plus one column (TAX_RATE_CODE) from ZX_RATES_B. Notable columns include:
- ITEM_ID — primary identifier for the pricing item.
- SET_OF_BOOKS_ID / ORG_ID — the ledger and operating unit owning the item, used for multi-org and ledger security filtering.
- ITEM_CODE / DESCRIPTION — the item's reference code and descriptive text.
- PRICE / PRICE_EFFECTIVE_DATE — the current price and the date it becomes effective.
- REVISED_PRICE / REVISED_PRICE_EFF_DATE — a future or revised price and its effective date.
- UNIT_OF_MEASURE — the unit in which the price is stated.
- VAT_TAX_ID — foreign reference to the tax rate (joined to ZX_RATES_B.TAX_RATE_ID).
- TAX_RATE_CODE — the human-readable tax rate code resolved from ZX_RATES_B.
- REVENUE_CODE_COMBINATION_ID — the accounting flexfield combination for revenue recognition.
- START_EFFECTIVE_DATE / INACTIVE_DATE / ENABLED_FLAG — record lifecycle and status controls.
- Audit columns (CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN) — standard EBS who-columns.
Common Use Cases and Queries
The view is commonly used to report current pricing items with their tax treatment, to validate that items have valid tax rate assignments, and as a source for integration extracts. A representative query listing enabled items for a given operating unit is shown below.
- Price validation and listing: retrieve items with price and tax rate code.
- Tax exception reporting: identify items where
TAX_RATE_CODEis null (no matching tax rate). - Effective-dated extracts: filter by effective dates for point-in-time pricing snapshots.
Sample SQL:
SELECT item_code, description, price, unit_of_measure, tax_rate_code
FROM apps.igi_rpi_items_v
WHERE org_id = :p_org_id
AND enabled_flag = 'Y'
AND (inactive_date IS NULL OR inactive_date > SYSDATE);
A second pattern targets tax gaps:
SELECT item_code, vat_tax_id
FROM apps.igi_rpi_items_v
WHERE tax_rate_code IS NULL;
Because the tax join is an outer join, null tax rate codes indicate items whose VAT_TAX_ID does not resolve to an enabled ZX_RATES_B row, which is a frequent data-quality check.
-
APPS.IGI_RPI_ITEMS_PKG SQL Statements
12.2.2
-
APPS.IGI_RPI_ITEMS_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGI_RPI_ITEMS_V
12.1.1
-
View: IGI_RPI_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_RPI_ITEMS_V, object_name:IGI_RPI_ITEMS_V, status:VALID, product: IGI - Public Sector Financials International , description: View for the standing charges item form based on IGI_RPI_ITEMS view , implementation_dba_data: APPS.IGI_RPI_ITEMS_V ,
-
View: IGI_RPI_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_RPI_ITEMS_V, object_name:IGI_RPI_ITEMS_V, status:VALID, product: IGI - Public Sector Financials International , description: View for the standing charges item form based on IGI_RPI_ITEMS view , implementation_dba_data: APPS.IGI_RPI_ITEMS_V ,
-
View: IGI_RPI_UPDATE_HDR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_RPI_UPDATE_HDR_V, object_name:IGI_RPI_UPDATE_HDR_V, status:VALID, product: IGI - Public Sector Financials International , description: View for the global price update form based on IGI_RPI_UPDATE_HDR view , implementation_dba_data: APPS.IGI_RPI_UPDATE_HDR_V ,
-
VIEW: APPS.IGI_RPI_ITEMS_V
12.2.2
-
View: IGI_RPI_UPDATE_HDR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_RPI_UPDATE_HDR_V, object_name:IGI_RPI_UPDATE_HDR_V, status:VALID, product: IGI - Public Sector Financials International , description: View for the global price update form based on IGI_RPI_UPDATE_HDR view , implementation_dba_data: APPS.IGI_RPI_UPDATE_HDR_V ,
-
PACKAGE BODY: APPS.IGI_RPI_ITEMS_PKG
12.1.1
-
PACKAGE BODY: APPS.IGI_RPI_ITEMS_PKG
12.2.2
-
APPS.IGIRRGPP SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGI_RPI_ITEMS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IGI_RPI_ITEMS_PKG, status:VALID,
-
View: IGI_RPI_UPDATE_LINES_C_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_RPI_UPDATE_LINES_C_V, object_name:IGI_RPI_UPDATE_LINES_C_V, status:VALID, product: IGI - Public Sector Financials International , description: View used for line updates at standing charge level , implementation_dba_data: APPS.IGI_RPI_UPDATE_LINES_C_V ,
-
SYNONYM: APPS.IGI_RPI_ITEMS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGI_RPI_ITEMS, status:VALID,
-
VIEW: IGI.IGI_RPI_ITEMS_ALL#
12.2.2
owner:IGI, object_type:VIEW, object_name:IGI_RPI_ITEMS_ALL#, status:VALID,
-
PACKAGE BODY: APPS.IGIRRGPP
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IGIRRGPP, status:VALID,
-
SYNONYM: APPS.IGI_RPI_ITEMS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IGI_RPI_ITEMS, status:VALID,
-
APPS.IGIRRGPP SQL Statements
12.2.2
-
TABLE: IGI.IGI_RPI_ITEMS_ALL
12.1.1
owner:IGI, object_type:TABLE, fnd_design_data:IGI.IGI_RPI_ITEMS_ALL, object_name:IGI_RPI_ITEMS_ALL, status:VALID,
-
PACKAGE BODY: APPS.IGIRRGPP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGIRRGPP, status:VALID,
-
View: IGI_RPI_UPDATE_LINES_C_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_RPI_UPDATE_LINES_C_V, object_name:IGI_RPI_UPDATE_LINES_C_V, status:VALID, product: IGI - Public Sector Financials International , description: View used for line updates at standing charge level , implementation_dba_data: APPS.IGI_RPI_UPDATE_LINES_C_V ,
-
PACKAGE BODY: APPS.IGI_RPI_ITEMS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGI_RPI_ITEMS_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGIRRGPP
12.1.1
-
PACKAGE BODY: APPS.IGIRRGPP
12.2.2
-
VIEW: APPS.IGI_RPI_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_RPI_ITEMS_V, object_name:IGI_RPI_ITEMS_V, status:VALID,
-
VIEW: APPS.IGI_RPI_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_RPI_ITEMS_V, object_name:IGI_RPI_ITEMS_V, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
APPS.IGIRRGPP dependencies on IGI_RPI_ITEMS
12.1.1
-
APPS.IGI_RPI_ITEMS_PKG dependencies on IGI_RPI_ITEMS
12.2.2
-
APPS.IGIRRGPP dependencies on IGI_RPI_ITEMS
12.2.2
-
APPS.IGI_RPI_ITEMS_PKG dependencies on IGI_RPI_ITEMS
12.1.1
-
APPS.IGIRRGPP dependencies on AR_SYSTEM_PARAMETERS
12.2.2
-
APPS.IGIRRGPP dependencies on AR_SYSTEM_PARAMETERS
12.1.1
-
APPS.IGI_RPI_ITEMS_PKG dependencies on IGI_RPI_ITEMS_S
12.1.1
-
APPS.IGI_RPI_ITEMS_PKG dependencies on DUAL
12.1.1
-
APPS.IGIRRGPP dependencies on IGI_RPI_LINE_DETAILS
12.1.1
-
APPS.IGI_RPI_ITEMS_PKG dependencies on IGI_RPI_ITEMS_S
12.2.2
-
APPS.IGI_RPI_ITEMS_PKG dependencies on DUAL
12.2.2
-
APPS.IGIRRGPP dependencies on IGI_RPI_LINE_DETAILS
12.2.2
-
APPS.IGIRRGPP dependencies on IGIRRGPP
12.1.1
-
APPS.IGIRRGPP dependencies on IGIRRGPP
12.2.2
-
APPS.IGIRRGPP dependencies on FND_LOG
12.2.2
-
APPS.IGIRRGPP dependencies on FND_LOG
12.1.1
-
eTRM - IGI Tables and Views
12.1.1
description: This is a temporary table used for GBV migration from 10.7/11.03 to 11i. ,
-
eTRM - IGI Tables and Views
12.2.2
description: This is a temporary table used for GBV migration from 10.7/11.03 to 11i. ,
-
12.2.2 DBA Data
12.2.2
-
eTRM - IGI Tables and Views
12.1.1
description: This is a temporary table used for GBV migration from 10.7/11.03 to 11i. ,
-
12.1.1 DBA Data
12.1.1
-
eTRM - IGI Tables and Views
12.2.2
description: This is a temporary table used for GBV migration from 10.7/11.03 to 11i. ,