Search Results igcbv_cbc_mc_journal_lines
Overview
The IGCBV_CBC_MC_JOURNAL_LINES view is a reporting and integration object in the Oracle E-Business Suite (EBS) IGC – Contract Commitment module, owned by the APPS schema. It presents a denormalized, read-only projection of multi-currency contract commitment journal entry lines. The view joins journal line data to its associated batch and ledger definitions, exposing both transactional amounts and the ledger context required for financial reconciliation and reporting.
Because the view is defined WITH READ ONLY, it is intended strictly for query access and cannot be used for DML. It consolidates journal line detail with descriptive attributes from the underlying batch and the General Ledger set of books, enabling consumers to report on contract commitment journal activity without manually joining the base tables. This view is typically consumed by reports, concurrent programs, or downstream integrations needing commitment journal line detail in a single, stable interface.
Its role is important because contract commitment journal entries are recorded at the line level, while descriptive context — ledger name, batch name, and reporting currency — resides in separate parent entities. The view bridges this gap, making it a convenient single source for financial reporting and audit-style extracts.
Underlying Base Objects
The view is defined over four documented objects:
- IGC_CBC_MC_JE_LINES (SYNONYM) — aliased as
IGCMJL. The principal source of journal line amounts, currency conversion attributes, ledger identifiers, and references to the parent line and batch. TheMCin the name denotes multi-currency handling. - IGC_CBC_JE_BATCHES (SYNONYM) — aliased as
IGC_CBCJEB. Provides the batch name and the batch identifier that groups individual journal lines. - IGC_CBC_JE_LINES (SYNONYM) — aliased as
IGC_CBCJEL. Joined by line number to establish the parent line relationship. - GL_SETS_OF_BOOKS (VIEW) — the General Ledger set of books definition, supplying the ledger name and short name.
The joins relate IGCMJL.CBC_JE_LINE_NUM to IGC_CBCJEL.CBC_JE_LINE_NUM, IGCMJL.CBC_JE_BATCH_ID to IGC_CBCJEB.CBC_JE_BATCH_ID, and IGCMJL.REPORTING_SET_OF_BOOKS_ID to GL_SETS_OF_BOOKS.SET_OF_BOOKS_ID. This yields one row per multi-currency journal line, enriched with its parent line, batch, and ledger attributes.
Key Columns
- SETS_OF_BOOKS_NAME / SETS_OF_BOOKS_SHORT_NAME — the descriptive and abbreviated names of the reporting ledger, sourced from GL_SETS_OF_BOOKS.
- BATCH_NAME — the name of the contract commitment journal batch (
IGC_CBCJEB.NAME). - JOURNAL_LINE_NUMBER — the multi-currency journal line number (
IGCMJL.CBC_JE_LINE_NUM). - ENTERED_DR / ENTERED_CR — the entered debit and credit amounts in the transaction (entered) currency.
- CURRENCY_CODE — the reporting currency code for the line (
IGCMJL.REPORTING_CURRENCY_CODE). - CURRENCY_CONVERSION_TYPE, CURRENCY_CONVERSION_DATE, CURRENCY_CONVERSION_RATE — the conversion type, date, and rate applied to translate entered amounts into the reporting currency.
- SET_OF_BOOKS_ID — the reporting set of books identifier (
IGCMJL.REPORTING_SET_OF_BOOKS_ID), linking the line to its ledger. - BATCH_ID — the parent batch identifier (
IGCMJL.CBC_JE_BATCH_ID), useful for grouping and traceability.
Common Use Cases and Queries
Typical uses include commitment journal reconciliation, currency conversion auditing, and batch-level reporting. The following query extracts journal lines for a specific ledger and batch:
SELECT BATCH_NAME,
JOURNAL_LINE_NUMBER,
ENTERED_DR,
ENTERED_CR,
CURRENCY_CODE,
CURRENCY_CONVERSION_RATE
FROM APPS.IGCBV_CBC_MC_JOURNAL_LINES
WHERE SET_OF_BOOKS_ID = :p_set_of_books_id
AND BATCH_ID = :p_batch_id
ORDER BY JOURNAL_LINE_NUMBER;
To summarize entered amounts by ledger and currency for audit purposes:
SELECT SETS_OF_BOOKS_NAME,
CURRENCY_CODE,
SUM(ENTERED_DR) TOTAL_DR,
SUM(ENTERED_CR) TOTAL_CR
FROM APPS.IGCBV_CBC_MC_JOURNAL_LINES
GROUP BY SETS_OF_BOOKS_NAME, CURRENCY_CODE;
Because the view is read-only and pre-joined, it is well suited for ad-hoc reporting and downstream extracts without reconstructing the underlying multi-table relationships.
-
View: IGCBV_CBC_MC_JOURNAL_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGCBV_CBC_MC_JOURNAL_LINES, object_name:IGCBV_CBC_MC_JOURNAL_LINES, status:VALID, product: IGC - Contract Commitment , implementation_dba_data: APPS.IGCBV_CBC_MC_JOURNAL_LINES ,
-
View: IGCBV_CBC_MC_JOURNAL_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGCBV_CBC_MC_JOURNAL_LINES, object_name:IGCBV_CBC_MC_JOURNAL_LINES, status:VALID, product: IGC - Contract Commitment , implementation_dba_data: APPS.IGCBV_CBC_MC_JOURNAL_LINES ,
-
VIEW: APPS.IGCBV_CBC_MC_JOURNAL_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGCBV_CBC_MC_JOURNAL_LINES, object_name:IGCBV_CBC_MC_JOURNAL_LINES, status:VALID,
-
VIEW: APPS.IGCBV_CBC_MC_JOURNAL_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGCBV_CBC_MC_JOURNAL_LINES, object_name:IGCBV_CBC_MC_JOURNAL_LINES, status:VALID,
-
SYNONYM: APPS.IGC_CBC_JE_BATCHES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGC_CBC_JE_BATCHES, status:VALID,
-
SYNONYM: APPS.IGC_CBC_JE_BATCHES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IGC_CBC_JE_BATCHES, status:VALID,
-
SYNONYM: APPS.IGC_CBC_MC_JE_LINES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGC_CBC_MC_JE_LINES, status:VALID,
-
SYNONYM: APPS.IGC_CBC_MC_JE_LINES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IGC_CBC_MC_JE_LINES, status:VALID,
-
SYNONYM: APPS.IGC_CBC_JE_LINES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGC_CBC_JE_LINES, status:VALID,
-
SYNONYM: APPS.IGC_CBC_JE_LINES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IGC_CBC_JE_LINES, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.GL_SETS_OF_BOOKS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_SETS_OF_BOOKS, object_name:GL_SETS_OF_BOOKS, status:VALID,
-
eTRM - IGC Tables and Views
12.1.1
description: System parameters for contracts ,
-
VIEW: APPS.GL_SETS_OF_BOOKS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_SETS_OF_BOOKS, object_name:GL_SETS_OF_BOOKS, status:VALID,
-
eTRM - IGC Tables and Views
12.2.2
description: System parameters for contracts ,
-
eTRM - IGC Tables and Views
12.2.2
description: System parameters for contracts ,
-
eTRM - IGC Tables and Views
12.1.1
description: System parameters for contracts ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - SQLGL Tables and Views
12.1.1
description: USSGL transaction codes ,
-
eTRM - SQLGL Tables and Views
12.1.1
description: USSGL transaction codes ,