Search Results batch_description
Overview
The IGI_COM_GL_JE_LINES_V view is a reporting object owned by the APPS schema in Oracle E-Business Suite, delivered as part of the IGI – Public Sector Financials International product. It presents a denormalized, joined perspective of General Ledger journal entry data, combining header, batch, line, and journal source information into a single queryable structure. Its primary role is to expose journal lines together with their associated batch and header context, which simplifies ad-hoc reporting, reconciliation extracts, and downstream integration logic that would otherwise require joining multiple GL base tables.
A defining characteristic of the view is that it is not a raw mirror of the General Ledger tables. The WHERE clause restricts the result set to headers whose status equals 'P', meaning only posted journal entries are returned. Additionally, the join to GL_JE_SOURCES_TL is filtered by LANGUAGE = USERENV('LANG'), so the journal source name is returned in the language of the current session. Because the view does not expose a batch description column named identically to the base table, users searching for batch_description will find it aliased as BATCH_DESCRIPTION (sourced from GL_JE_BATCHES.DESCRIPTION).
Underlying Base Objects
The view is defined over four base objects within the APPS schema:
- GL_JE_BATCHES (aliased B) — supplies batch-level attributes such as NAME, DESCRIPTION, STATUS, and JE_BATCH_ID.
- GL_JE_HEADERS (aliased H) — supplies header-level attributes including SET_OF_BOOKS_ID, JE_SOURCE, PERIOD_NAME, ACTUAL_FLAG, JE_CATEGORY, CURRENCY_CODE, and JE_HEADER_ID.
- GL_JE_LINES (aliased L) — supplies the detailed line attributes: CODE_COMBINATION_ID, JE_LINE_NUM, ENTERED_DR, ENTERED_CR, DESCRIPTION, and the line ROWID.
- GL_JE_SOURCES_TL (aliased S) — supplies the translated USER_JE_SOURCE_NAME, joined on JE_SOURCE_NAME and restricted by the session language.
The joins are established on JE_BATCH_ID (batches to headers) and JE_HEADER_ID (headers to lines), producing one row per journal line with the full batch-to-header-to-line hierarchy repeated in each row. ETRM metadata additionally lists DUAL (via a synonym) as a referenced base object, which reflects the internal dependency chain rather than a functional join, since DUAL is used in Oracle's internal view compilation and resolution machinery.
Key Columns
- ROW_ID — the ROWID of the underlying GL_JE_LINES row, a unique line-level identifier useful for record-level tracing.
- JE_BATCH_ID, JE_HEADER_ID — foreign keys linking back to the batch and header records respectively.
- BATCH_NAME, BATCH_DESCRIPTION, BATCH_STATUS — batch-level identification and posting status of the parent journal batch.
- HEADER_NAME, HEADER_DESCRIPTION, JE_CATEGORY, JE_SOURCE, USER_JE_SOURCE_NAME — header-level identification, including the translated journal source name.
- PERIOD_NAME, SET_OF_BOOKS_ID, CURRENCY_CODE, ACTUAL_FLAG — accounting period, ledger, currency, and actual/budget indicator.
- LINE_JE_LINE_NUM, LINE_CODE_COMBINATION_ID, LINE_ENTERED_DR, LINE_ENTERED_CR, LINE_DESCRIPTION — line-level detail for amounts, accounting flexfield combinations, and narrative.
- BUDGET_VERSION_ID, ENCUMBRANCE_TYPE_ID — populate for budget and encumbrance journal entries respectively.
Common Use Cases and Queries
Typical scenarios include reconciling posted journal activity by batch and period, extracting journal lines for a specific ledger or source, and feeding downstream reporting or integration processes. Because only posted headers are returned, the view is well suited to finalized accounting data extraction.
To retrieve all lines for a batch using its description:
SELECT batch_name, batch_description, header_name,
line_je_line_num, line_entered_dr, line_entered_cr
FROM apps.igi_com_gl_je_lines_v
WHERE batch_description = :p_batch_description;
To summarize posted journal amounts by period and source:
SELECT period_name, user_je_source_name,
SUM(line_entered_dr) AS total_dr,
SUM(line_entered_cr) AS total_cr
FROM apps.igi_com_gl_je_lines_v
GROUP BY period_name, user_je_source_name;
Because the view enforces the posted-status and session-language filters internally, consumers should be aware that unposted journals and non-current-language source translations will not appear, and that results are inherently one row per journal line.
-
View: IGI_COM_GL_JE_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_COM_GL_JE_LINES_V, object_name:IGI_COM_GL_JE_LINES_V, status:VALID, product: IGI - Public Sector Financials International , description: Based on GL_JE_BATCHES, GL_JE_HEADERS, GL_JE_LINES and GL_JE_SOURCES_TL , implementation_dba_data: APPS.IGI_COM_GL_JE_LINES_V ,
-
View: IGI_COM_GL_JE_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_COM_GL_JE_LINES_V, object_name:IGI_COM_GL_JE_LINES_V, status:VALID, product: IGI - Public Sector Financials International , description: Based on GL_JE_BATCHES, GL_JE_HEADERS, GL_JE_LINES and GL_JE_SOURCES_TL , implementation_dba_data: APPS.IGI_COM_GL_JE_LINES_V ,
-
TABLE: IGS.IGS_OR_INST_BTCH_INT_OLD
12.1.1
owner:IGS, object_type:TABLE, object_name:IGS_OR_INST_BTCH_INT_OLD, status:VALID,
-
TABLE: IGS.IGS_EN_REG_BTCH_INT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_REG_BTCH_INT, object_name:IGS_EN_REG_BTCH_INT, status:VALID,
-
View: GL_BUDGET_JOURNALS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDGET_JOURNALS_V, object_name:GL_BUDGET_JOURNALS_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_BUDGET_JOURNALS_V ,
-
View: IGC_CBC_JE_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGC_CBC_JE_LINES_V, object_name:IGC_CBC_JE_LINES_V, status:VALID, product: IGC - Contract Commitment , implementation_dba_data: APPS.IGC_CBC_JE_LINES_V ,
-
View: GL_BUDGET_JOURNALS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDGET_JOURNALS_V, object_name:GL_BUDGET_JOURNALS_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_BUDGET_JOURNALS_V ,
-
VIEW: APPS.GL_BUDGET_JOURNALS_V
12.1.1
-
VIEW: APPS.GL_BUDGET_JOURNALS_V
12.2.2
-
VIEW: APPS.GL_BUDGET_JOURNALS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDGET_JOURNALS_V, object_name:GL_BUDGET_JOURNALS_V, status:VALID,
-
VIEW: APPS.PSA_JE_BCP_LINES_V
12.1.1
-
VIEW: APPS.PSA_JE_BCP_LINES_V
12.2.2
-
TABLE: IGS.IGS_OR_INST_BTCH_INT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_OR_INST_BTCH_INT, object_name:IGS_OR_INST_BTCH_INT, status:VALID,
-
VIEW: APPS.CST_AP_VARIANCE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_AP_VARIANCE_V, object_name:CST_AP_VARIANCE_V, status:VALID,
-
VIEW: APPS.CST_AP_VARIANCE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_AP_VARIANCE_V, object_name:CST_AP_VARIANCE_V, status:VALID,
-
View: IGC_CBC_JE_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGC_CBC_JE_LINES_V, object_name:IGC_CBC_JE_LINES_V, status:VALID, product: IGC - Contract Commitment , implementation_dba_data: APPS.IGC_CBC_JE_LINES_V ,
-
VIEW: APPS.IGC_CBC_JE_LINES_V
12.1.1
-
VIEW: APPS.GL_BUDGET_JOURNALS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDGET_JOURNALS_V, object_name:GL_BUDGET_JOURNALS_V, status:VALID,
-
VIEW: APPS.IGC_CBC_JE_LINES_V
12.2.2
-
View: GL_JOURNAL_REPORTS_ITF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_JOURNAL_REPORTS_ITF_V, object_name:GL_JOURNAL_REPORTS_ITF_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_JOURNAL_REPORTS_ITF_V ,
-
View: GL_JOURNAL_REPORTS_ITF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_JOURNAL_REPORTS_ITF_V, object_name:GL_JOURNAL_REPORTS_ITF_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_JOURNAL_REPORTS_ITF_V ,
-
VIEW: APPS.PAY_ORG_PAYMENT_METHODS_F1_DFV
12.1.1
owner:APPS, object_type:VIEW, object_name:PAY_ORG_PAYMENT_METHODS_F1_DFV, status:VALID,
-
VIEW: APPS.GL_JOURNAL_REPORTS_ITF_V
12.2.2
-
VIEW: APPS.PAY_ORG_PAYMENT_METHODS_F1_DFV
12.2.2
owner:APPS, object_type:VIEW, object_name:PAY_ORG_PAYMENT_METHODS_F1_DFV, status:VALID,
-
VIEW: APPS.GL_JOURNAL_REPORTS_ITF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_JOURNAL_REPORTS_ITF_V, object_name:GL_JOURNAL_REPORTS_ITF_V, status:VALID,
-
View: GL_JE_BATCHES_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_JE_BATCHES_HEADERS_V, object_name:GL_JE_BATCHES_HEADERS_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_JE_BATCHES_HEADERS_V ,
-
VIEW: APPS.GL_JOURNAL_REPORTS_ITF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_JOURNAL_REPORTS_ITF_V, object_name:GL_JOURNAL_REPORTS_ITF_V, status:VALID,
-
VIEW: APPS.IGC_CBC_JE_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGC_CBC_JE_LINES_V, object_name:IGC_CBC_JE_LINES_V, status:VALID,
-
VIEW: APPS.IGC_CBC_JE_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGC_CBC_JE_LINES_V, object_name:IGC_CBC_JE_LINES_V, status:VALID,
-
VIEW: APPS.GL_JOURNAL_REPORTS_ITF_V
12.1.1
-
View: GL_JE_BATCHES_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_JE_BATCHES_HEADERS_V, object_name:GL_JE_BATCHES_HEADERS_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_JE_BATCHES_HEADERS_V ,
-
View: CST_AP_VARIANCE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_AP_VARIANCE_V, object_name:CST_AP_VARIANCE_V, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CST_AP_VARIANCE_V ,
-
VIEW: APPS.GL_JE_BATCHES_HEADERS_V
12.1.1
-
View: EGO_IMPORT_BATCH_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EGO.EGO_IMPORT_BATCH_DETAILS_V, object_name:EGO_IMPORT_BATCH_DETAILS_V, status:VALID, product: EGO - Advanced Product Catalog , description: This view contains all details of a batch. , implementation_dba_data: APPS.EGO_IMPORT_BATCH_DETAILS_V ,
-
View: EGO_IMPORT_BATCH_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EGO.EGO_IMPORT_BATCH_DETAILS_V, object_name:EGO_IMPORT_BATCH_DETAILS_V, status:VALID, product: EGO - Advanced Product Catalog , description: This view contains all details of a batch. , implementation_dba_data: APPS.EGO_IMPORT_BATCH_DETAILS_V ,
-
View: CST_AP_VARIANCE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_AP_VARIANCE_V, object_name:CST_AP_VARIANCE_V, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CST_AP_VARIANCE_V ,
-
View: GL_JE_JOURNAL_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_JE_JOURNAL_LINES_V, object_name:GL_JE_JOURNAL_LINES_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_JE_JOURNAL_LINES_V ,
-
VIEW: APPS.GL_JE_BATCHES_HEADERS_V
12.2.2
-
View: IGI_GL_JE_JOURNAL_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_GL_JE_JOURNAL_LINES_V, object_name:IGI_GL_JE_JOURNAL_LINES_V, status:VALID, product: IGI - Public Sector Financials International , description: Based on GL_JE_SOURCES_TL, GL_JE_CATEGORIES_TL, GL_ENCUMBRANCE_TYPES, GL_BUDGET_VERSIONS, GL_LOOKUPS, GL_DAILY_CONVERSION_TYPES, GL_JE_BATCHES, GL_JE_HEADERS, GL_JE_LINES and GL_PERIOD_STATUSES , implementation_dba_data: APPS.IGI_GL_JE_JOURNAL_LINES_V ,
-
View: GL_JE_JOURNAL_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_JE_JOURNAL_LINES_V, object_name:GL_JE_JOURNAL_LINES_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_JE_JOURNAL_LINES_V ,
-
View: IGI_GL_JE_JOURNAL_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_GL_JE_JOURNAL_LINES_V, object_name:IGI_GL_JE_JOURNAL_LINES_V, status:VALID, product: IGI - Public Sector Financials International , description: Based on GL_JE_SOURCES_TL, GL_JE_CATEGORIES_TL, GL_ENCUMBRANCE_TYPES, GL_BUDGET_VERSIONS, GL_LOOKUPS, GL_DAILY_CONVERSION_TYPES, GL_JE_BATCHES, GL_JE_HEADERS, GL_JE_LINES and GL_PERIOD_STATUSES , implementation_dba_data: APPS.IGI_GL_JE_JOURNAL_LINES_V ,
-
VIEW: APPS.PSA_JE_BCP_LINES_V
12.2.2
owner:APPS, object_type:VIEW, object_name:PSA_JE_BCP_LINES_V, status:VALID,
-
VIEW: APPS.GL_JE_JOURNAL_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_JE_JOURNAL_LINES_V, object_name:GL_JE_JOURNAL_LINES_V, status:VALID,
-
VIEW: APPS.GL_JE_BATCHES_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_JE_BATCHES_HEADERS_V, object_name:GL_JE_BATCHES_HEADERS_V, status:VALID,
-
VIEW: APPS.PSA_JE_BCP_LINES_V
12.1.1
owner:APPS, object_type:VIEW, object_name:PSA_JE_BCP_LINES_V, status:VALID,
-
VIEW: APPS.GL_JE_JOURNAL_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_JE_JOURNAL_LINES_V, object_name:GL_JE_JOURNAL_LINES_V, status:VALID,
-
VIEW: APPS.GL_JE_BATCHES_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_JE_BATCHES_HEADERS_V, object_name:GL_JE_BATCHES_HEADERS_V, status:VALID,
-
VIEW: APPS.EGO_IMPORT_BATCH_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EGO.EGO_IMPORT_BATCH_DETAILS_V, object_name:EGO_IMPORT_BATCH_DETAILS_V, status:VALID,
-
APPS.FUN_REPORT_PVT SQL Statements
12.1.1
-
APPS.FUN_REPORT_PVT SQL Statements
12.2.2