Search Results charge_center
Overview
The APPS.IGI_ITR_CHARGE_LINES_ENTRY_V view is a reporting and entry support object within the Oracle E-Business Suite (EBS) ETRM (Global Intercompany Transaction Reconciliation / Intercompany Transfer Reconciliation) product family. It presents intercompany charge line records together with their associated charge center name, providing a denormalized, presentation-ready dataset suitable for forms, concurrent programs, and ad-hoc reporting. The view is owned by APPS and is shipped as part of the ETRM schema in both 12.1.1 and 12.2.2.
The view is not a table itself; it is a join between the charge center definition and the charge lines that reference it. Its design intent is to expose charge lines in a form that includes a human-readable CHARGE_CENTER name rather than only the surrogate CHARGE_CENTER_ID, which simplifies inquiry screens and reporting queries.
Underlying Base Objects
The documented base objects referenced by the view are:
IGI_ITR_CHARGE_CENTER(SYNONYM) — the charge center definition table, aliased asCC.IGI_ITR_CHARGE_LINES(SYNONYM) — the intercompany charge line table, aliased asLINES.
The join is an inner equijoin on CC.CHARGE_CENTER_ID = LINES.CHARGE_CENTER_ID. Consequently, charge lines that have no matching charge center definition (or a null CHARGE_CENTER_ID) will not appear in the view. Only the NAME column from IGI_ITR_CHARGE_CENTER is projected; all other columns originate from IGI_ITR_CHARGE_LINES, plus LINES.ROWID exposed as ROW_ID to provide row-level identification.
Key Columns
ROW_ID— theROWIDof the underlying charge line row, useful for identifying and updating rows.CHARGE_CENTER_ID— foreign key to the charge center definition; the join key.CHARGE_CENTER— the descriptive name of the charge center (CC.NAME), the primary reason the view exists.IT_HEADER_ID,IT_LINE_NUM— reference to the parent intercompany transaction header and the line number within it.SET_OF_BOOKS_ID— the ledger (set of books) context for the charge line.CODE_COMBINATION_ID— the accounting flexfield combination associated with the line.ENTERED_DR,ENTERED_CR— the entered debit and credit amounts.SUGGESTED_AMOUNT— a system-suggested amount for the charge line.EFFECTIVE_DATE— the effective accounting date of the line.STATUS_FLAG,POSTING_FLAG— workflow and posting state indicators.DESCRIPTION,REJECTION_NOTE,SUBMIT_DATE— descriptive text, rejection reason, and submission timestamp.- Audit columns —
CREATION_DATE,CREATED_BY,LAST_UPDATE_DATE,LAST_UPDATED_BY,LAST_UPDATE_LOGIN.
Common Use Cases and Queries
The most common reason to query this view is to retrieve charge lines resolved to a charge center name, particularly in the context of the charge_center search term. Practical scenarios include: reconciling charge lines by charge center, reviewing lines in a given ledger period, and inspecting lines pending posting or rejected during reconciliation.
Representative queries:
- List all charge lines for a specific charge center name:
SELECT it_line_num, description, entered_dr, entered_cr, status_flag
FROM apps.igi_itr_charge_lines_entry_v
WHERE charge_center = :charge_center_name; - Filter by charge center id and ledger:
SELECT charge_center, it_line_num, suggested_amount, effective_date
FROM apps.igi_itr_charge_lines_entry_v
WHERE charge_center_id = :p_charge_center_id
AND set_of_books_id = :p_set_of_books_id; - Review unposted or rejected lines:
SELECT it_header_id, it_line_num, charge_center, rejection_note
FROM apps.igi_itr_charge_lines_entry_v
WHERE posting_flag = 'N' OR rejection_note IS NOT NULL;
Because the view performs an inner join, queries expecting charge lines without a defined charge center should instead reference IGI_ITR_CHARGE_LINES directly with an outer join to IGI_ITR_CHARGE_CENTER.
-
VIEW: APPS.IGI_ITR_CHARGE_LINES_ENTRY_V
12.2.2
-
VIEW: APPS.IGI_ITR_CHARGE_LINES_ENTRY_V
12.1.1
-
View: IGI_ITR_CH_LINES_APP_SS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_ITR_CH_LINES_APP_SS_V, object_name:IGI_ITR_CH_LINES_APP_SS_V, status:VALID, product: IGI - Public Sector Financials International , implementation_dba_data: APPS.IGI_ITR_CH_LINES_APP_SS_V ,
-
View: IGI_ITR_CHARGE_LINES_ENTRY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_ITR_CHARGE_LINES_ENTRY_V, object_name:IGI_ITR_CHARGE_LINES_ENTRY_V, status:VALID, product: IGI - Public Sector Financials International , description: Based on IGI_ITR_CHARGE_CENTER and IGI_ITR_CHARGE_LINES , implementation_dba_data: APPS.IGI_ITR_CHARGE_LINES_ENTRY_V ,
-
View: IGI_ITR_CH_LINES_APP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_ITR_CH_LINES_APP_V, object_name:IGI_ITR_CH_LINES_APP_V, status:VALID, product: IGI - Public Sector Financials International , description: Based on IGI_ITR_CHARGE_CENTER, FND_USER, IGI_ITR_CHARGE_HEADERS and IGI_ITR_CHARGE_LINES , implementation_dba_data: APPS.IGI_ITR_CH_LINES_APP_V ,
-
View: IGI_ITR_CHARGE_LINES_ENTRY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_ITR_CHARGE_LINES_ENTRY_V, object_name:IGI_ITR_CHARGE_LINES_ENTRY_V, status:VALID, product: IGI - Public Sector Financials International , description: Based on IGI_ITR_CHARGE_CENTER and IGI_ITR_CHARGE_LINES , implementation_dba_data: APPS.IGI_ITR_CHARGE_LINES_ENTRY_V ,
-
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: IGI_ITR_CH_LINES_APP_SS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_ITR_CH_LINES_APP_SS_V, object_name:IGI_ITR_CH_LINES_APP_SS_V, status:VALID, product: IGI - Public Sector Financials International , implementation_dba_data: APPS.IGI_ITR_CH_LINES_APP_SS_V ,
-
VIEW: APPS.IGI_ITR_CHARGE_HEADERS_SS_V
12.2.2
-
View: IGI_ITR_CH_LINES_APP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_ITR_CH_LINES_APP_V, object_name:IGI_ITR_CH_LINES_APP_V, status:VALID, product: IGI - Public Sector Financials International , description: Based on IGI_ITR_CHARGE_CENTER, FND_USER, IGI_ITR_CHARGE_HEADERS and IGI_ITR_CHARGE_LINES , implementation_dba_data: APPS.IGI_ITR_CH_LINES_APP_V ,
-
VIEW: APPS.IGI_ITR_CHARGE_HEADERS_SS_V
12.1.1
-
View: IGI_ITR_CHARGE_LINES_SS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_ITR_CHARGE_LINES_SS_V, object_name:IGI_ITR_CHARGE_LINES_SS_V, status:VALID, product: IGI - Public Sector Financials International , implementation_dba_data: APPS.IGI_ITR_CHARGE_LINES_SS_V ,
-
VIEW: APPS.IGI_ITR_CH_LINES_APP_V
12.2.2
-
VIEW: APPS.IGI_ITR_CH_LINES_APP_V
12.1.1
-
VIEW: APPS.IGI_ITR_CH_LINES_APP_SS_V
12.1.1
-
VIEW: APPS.IGI_ITR_CH_LINES_APP_SS_V
12.2.2
-
View: IGI_ITR_CHARGE_LINES_SS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_ITR_CHARGE_LINES_SS_V, object_name:IGI_ITR_CHARGE_LINES_SS_V, status:VALID, product: IGI - Public Sector Financials International , implementation_dba_data: APPS.IGI_ITR_CHARGE_LINES_SS_V ,
-
VIEW: APPS.IGI_ITR_CHARGE_LINES_SS_V
12.1.1
-
VIEW: APPS.IGI_ITR_CHARGE_LINES_SS_V
12.2.2
-
VIEW: APPS.IGI_ITR_CH_LINES_APP_SS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_ITR_CH_LINES_APP_SS_V, object_name:IGI_ITR_CH_LINES_APP_SS_V, status:VALID,
-
VIEW: APPS.IGI_ITR_CH_LINES_APP_SS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_ITR_CH_LINES_APP_SS_V, object_name:IGI_ITR_CH_LINES_APP_SS_V, status:VALID,
-
VIEW: APPS.IGI_ITR_CH_LINES_APP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_ITR_CH_LINES_APP_V, object_name:IGI_ITR_CH_LINES_APP_V, status:VALID,
-
VIEW: APPS.IGI_ITR_CHARGE_LINES_ENTRY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_ITR_CHARGE_LINES_ENTRY_V, object_name:IGI_ITR_CHARGE_LINES_ENTRY_V, status:VALID,
-
VIEW: APPS.IGI_ITR_CHARGE_LINES_ENTRY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_ITR_CHARGE_LINES_ENTRY_V, object_name:IGI_ITR_CHARGE_LINES_ENTRY_V, status:VALID,
-
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,
-
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,
-
VIEW: APPS.IGI_ITR_CH_LINES_APP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_ITR_CH_LINES_APP_V, object_name:IGI_ITR_CH_LINES_APP_V, status:VALID,
-
VIEW: APPS.IGI_ITR_CHARGE_LINES_SS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_ITR_CHARGE_LINES_SS_V, object_name:IGI_ITR_CHARGE_LINES_SS_V, status:VALID,
-
VIEW: APPS.IGI_ITR_CHARGE_LINES_SS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_ITR_CHARGE_LINES_SS_V, object_name:IGI_ITR_CHARGE_LINES_SS_V, 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. ,