Search Results igi_itr_charge_headers_v
Overview
IGI_ITR_CHARGE_HEADERS_V is a PL/SQL view owned by the APPS schema within the IGI – Public Sector Financials International product family. It presents a denormalized, reporting-friendly projection of intergovernmental transfer (ITR) charge header records held in IGI_ITR_CHARGE_HEADERS, enriching each row with translated lookup meanings, user names, and journal category descriptions. Because the base transactional table stores only encoded identifiers (lookup codes, user IDs, and category names), the view resolves those codes into human-readable values, making it suitable for concurrent program reports, Oracle Forms LOVs, and external integration extracts without requiring downstream joins.
The object was validated as VALID under ETRM 12.2.2 metadata and exists in the same form in 12.1.1. The user search term "it_source" corresponds directly to the IT_SOURCE column exposed by this view, which indicates the originating channel or reference for the charge header and is frequently used as a filtering predicate in reporting queries.
Underlying Base Objects
The view is defined over four documented referenced objects:
- IGI_ITR_CHARGE_HEADERS (synonym) – the primary transactional table supplying all header columns and acts as the driving row source.
- FND_USER (synonym) – joined on USER_ID = IT_ORIGINATOR_ID to resolve the originator's ORIGINATOR_NAME.
- GL_JE_CATEGORIES_TL (synonym) – joined on JE_CATEGORY_NAME = IT_CATEGORY with LANGUAGE = USERENV('LANG') to supply the translated CATEGORY_DISPLAY.
- IGI_LOOKUPS (view) – joined on LOOKUP_CODE = SUBMIT_FLAG and LOOKUP_TYPE = 'ITR_SUBMIT' to translate the submit flag into SUBMIT_DESC.
All four joins are inner joins, so a header row will not appear unless a matching lookup, user, and language-specific journal category exist. This is an important consideration when reconciling record counts against the base table.
Key Columns
- ROW_ID – the ROWID of the underlying header row, useful for direct DML or row identification.
- IT_HEADER_ID – primary key of the charge header, the standard join key back to base tables.
- SUBMIT_FLAG / SUBMIT_DESC – encoded submission status and its lookup meaning from lookup type ITR_SUBMIT.
- IT_SOURCE – the source indicator for the charge header, the column most associated with the user's search term.
- IT_CATEGORY / CATEGORY_DISPLAY – the GL journal category code and its translated user-facing name.
- ORIGINATOR_NAME – the FND_USER.USER_NAME of the record's originator.
- IT_PERIOD_NAME, GL_DATE, SUBMIT_DATE – accounting period and key dates for the transaction.
- CURRENCY_CODE, ENTERED_DR, ENTERED_CR – currency and entered debit/credit amounts.
- SET_OF_BOOKS_ID, CODE_COMBINATION_ID, ENCUMBRANCE_TYPE_ID – accounting context identifiers.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN – standard WHO audit columns.
Common Use Cases and Queries
The view is typically used to list or extract charge headers for review, to drive report parameters, or to filter records by source. To retrieve all headers originating from a specific IT_SOURCE:
SELECT it_header_id, name, it_source, submit_desc, originator_name,
it_period_name, currency_code, entered_dr, entered_cred
FROM apps.igi_itr_charge_headers_v
WHERE it_source = :p_source
ORDER BY gl_date DESC;
To review pending submissions by period:
SELECT it_header_id, name, submit_desc, it_category, category_display
FROM apps.igi_itr_charge_headers_v
WHERE submit_flag = 'N'
AND it_period_name = :p_period;
Because language translation is applied through USERENV('LANG'), query results reflect the session language. Analysts should also remember that the inner joins to IGI_LOOKUPS, FND_USER, and GL_JE_CATEGORIES_TL may omit orphaned headers from the result set, so any reconciliation to IGI_ITR_CHARGE_HEADERS must account for those unmatched rows.
-
View: IGI_ITR_CHARGE_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_ITR_CHARGE_HEADERS_V, object_name:IGI_ITR_CHARGE_HEADERS_V, status:VALID, product: IGI - Public Sector Financials International , description: Based on FND_USER, GL_JE_CATEGORIES_TL, IGI_ITR_CHARGE_HEADERS and IGI_LOOKUPS , implementation_dba_data: APPS.IGI_ITR_CHARGE_HEADERS_V ,
-
View: IGI_ITR_CHARGE_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_ITR_CHARGE_HEADERS_V, object_name:IGI_ITR_CHARGE_HEADERS_V, status:VALID, product: IGI - Public Sector Financials International , description: Based on FND_USER, GL_JE_CATEGORIES_TL, IGI_ITR_CHARGE_HEADERS and IGI_LOOKUPS , implementation_dba_data: APPS.IGI_ITR_CHARGE_HEADERS_V ,
-
SYNONYM: APPS.IGI_ITR_CHARGE_HEADERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IGI_ITR_CHARGE_HEADERS, status:VALID,
-
SYNONYM: APPS.GL_JE_CATEGORIES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GL_JE_CATEGORIES_TL, status:VALID,
-
SYNONYM: APPS.GL_JE_CATEGORIES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GL_JE_CATEGORIES_TL, status:VALID,
-
SYNONYM: APPS.IGI_ITR_CHARGE_HEADERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGI_ITR_CHARGE_HEADERS, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.IGI_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_LOOKUPS, object_name:IGI_LOOKUPS, status:VALID,
-
VIEW: APPS.IGI_LOOKUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_LOOKUPS, object_name:IGI_LOOKUPS, status:VALID,
-
VIEW: APPS.IGI_ITR_CHARGE_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_ITR_CHARGE_HEADERS_V, object_name:IGI_ITR_CHARGE_HEADERS_V, status:VALID,
-
VIEW: APPS.IGI_ITR_CHARGE_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_ITR_CHARGE_HEADERS_V, object_name:IGI_ITR_CHARGE_HEADERS_V, status:VALID,
-
SYNONYM: APPS.FND_USER
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FND_USER, status:VALID,
-
SYNONYM: APPS.FND_USER
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FND_USER, status:VALID,
-
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. ,
-
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.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
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. ,