Search Results itr_charge_status




Overview

The view APPS.IGI_ITR_CHARGE_HEADERS_SS_V is a reporting and inquiry construct within the Oracle E-Business Suite public sector and grants/expenditure tracking family of modules, exposed under the APPS schema. It presents charge header records from the ITR (Information Technology Reporting / charge processing) subsystem in a denormalized, presentation-ready form. Its principal purpose is to feed Oracle Form-based summary screens and concurrent reporting by joining a charge header row to its associated charge center, status lookup meaning, originator user name, and ledger name, so that consumers do not have to reconstruct these joins themselves.

The suffix _SS_V indicates a "Summary Screen" or single-source view, meaning it is typically bound to a specific Oracle Forms block. The view carries a ROWID-derived ROW_ID column, which is a strong indicator the view is used in a mutable, block-based UI context where Forms requires a unique identifier for each row to support locking and updates.

Underlying Base Objects

The view is defined over five documented objects, joined as follows:

The lookup join to type ITR_CHARGE_STATUS is the critical link explaining why users searching on itr_charge_status are directed to this view: the status domain for charge headers is stored under that lookup type, and the view surfaces its meaning alongside each header.

Key Columns

Common Use Cases and Queries

Typical uses include listing charge headers by status, reviewing amounts by charge center, and locating records awaiting submission.

SELECT IT_HEADER_ID, NAME, CHARGE_CENTER, SUBMIT_DESC,
       TOTAL_DR, TOTAL_CR, CURRENCY_CODE, ORIGINATOR_NAME
FROM   APPS.IGI_ITR_CHARGE_HEADERS_SS_V
WHERE  SUBMIT_FLAG = 'SUBMITTED';
SELECT CHARGE_CENTER, SUM(TOTAL_DR) DR, SUM(TOTAL_CR) CR
FROM   APPS.IGI_ITR_CHARGE_HEADERS_SS_V
WHERE  IT_PERIOD_NAME = :p_period
GROUP  BY CHARGE_CENTER;

Because the view already resolves the lookup meaning, queries against SUBMIT_DESC avoid hard-coding status codes and remain aligned with the ITR_CHARGE_STATUS lookup maintained in IGI_LOOKUPS.