Search Results total_cr
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:
IGI_ITR_CHARGE_HEADERS(aliasedHEADER) — the driving table supplying the charge header, period, submit flag, amounts, currency, and audit columns.IGI_ITR_CHARGE_CENTER(aliasedCENT) — joined onCHARGE_CENTER_IDto supply the human-readable charge center name viaCENT.NAME.IGI_LOOKUPS(aliasedLOOKUPS) — joined onLOOKUP_CODE = HEADER.SUBMIT_FLAGwhereLOOKUP_TYPE = 'ITR_CHARGE_STATUS', yielding the status meaning in theSUBMIT_DESCcolumn.FND_USER(aliasedFND) — joined onUSER_ID = HEADER.IT_ORIGINATOR_IDto obtainFND.USER_NAMEasORIGINATOR_NAME.GL_LEDGERS(aliasedGLL) — joined twice on set of books,CENT.SET_OF_BOOKS_ID = GLL.LEDGER_IDandHEADER.SET_OF_BOOKS_ID = GLL.LEDGER_ID, producingLEDGER_NAME.
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
ROW_ID,IT_HEADER_ID— the Form row identifier and the primary business key of the header.NAME,CHARGE_CENTER,LEDGER_NAME— human-readable identifiers for the charge record, its center, and its ledger.SUBMIT_FLAG,SUBMIT_DESC— the raw status code and its translated meaning from theITR_CHARGE_STATUSlookup.SUBMIT_DATE,CREATE_DATEfamily (CREATION_DATE,CREATED_BY,LAST_UPDATE_DATE,LAST_UPDATED_BY,LAST_UPDATE_LOGIN) — audit and submission timing.TOTAL_DR(fromENTERED_DR) andTOTAL_CR(fromENTERED_CR) — debit and credit totals for the charge line aggregation.CURRENCY_CODE,GL_DATE,IT_PERIOD_NAME,ENCUMBRANCE_TYPE_ID— accounting attributes.IT_ORIGINATOR_ID,ORIGINATOR_NAME,EMPLOYEE_ID— the submitting user and associated employee.
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.
-
VIEW: APPS.IGI_ITR_CHARGE_HEADERS_SS_V
12.1.1
-
View: IGI_ITR_CHARGE_HEADERS_SS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_ITR_CHARGE_HEADERS_SS_V, object_name:IGI_ITR_CHARGE_HEADERS_SS_V, status:VALID, product: IGI - Public Sector Financials International , implementation_dba_data: APPS.IGI_ITR_CHARGE_HEADERS_SS_V ,
-
View: IGI_ITR_CHARGE_HEADERS_SS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_ITR_CHARGE_HEADERS_SS_V, object_name:IGI_ITR_CHARGE_HEADERS_SS_V, status:VALID, product: IGI - Public Sector Financials International , implementation_dba_data: APPS.IGI_ITR_CHARGE_HEADERS_SS_V ,
-
VIEW: APPS.IGI_ITR_CHARGE_HEADERS_SS_V
12.2.2
-
VIEW: APPS.IGI_ITR_CHARGE_HEADERS_SS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_ITR_CHARGE_HEADERS_SS_V, object_name:IGI_ITR_CHARGE_HEADERS_SS_V, status:VALID,
-
APPS.OKL_GL_TRANSFER_PVT SQL Statements
12.1.1
-
APPS.OKL_GL_TRANSFER_PVT SQL Statements
12.2.2
-
VIEW: APPS.IGI_ITR_CHARGE_HEADERS_SS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_ITR_CHARGE_HEADERS_SS_V, object_name:IGI_ITR_CHARGE_HEADERS_SS_V, status:VALID,
-
APPS.OKL_ACCOUNTING_PROCESS_PVT SQL Statements
12.1.1
-
APPS.OKL_ACCOUNTING_PROCESS_PVT SQL Statements
12.2.2
-
PACKAGE: APPS.GL_GLRGNL_XMLP_PKG
12.1.1
-
PACKAGE: APPS.GL_GLRGNL_XMLP_PKG
12.2.2
-
PACKAGE BODY: APPS.GL_GLRGNL_XMLP_PKG
12.2.2
-
PACKAGE BODY: APPS.GL_GLRGNL_XMLP_PKG
12.1.1
-
PACKAGE BODY: APPS.OKL_GL_TRANSFER_PVT
12.1.1
-
PACKAGE BODY: APPS.OKL_GL_TRANSFER_PVT
12.2.2
-
PACKAGE BODY: APPS.OKL_ACCOUNTING_PROCESS_PVT
12.1.1
-
PACKAGE BODY: APPS.OKL_ACCOUNTING_PROCESS_PVT
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. ,
-
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. ,