Search Results rel_acct_encumbrance_amount
Overview
IGCBV_MC_RELEASE_ACCOUNT_LINES is a read-only view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the IGC (Contract Commitment) product family. It presents the accounting-line detail associated with contract commitment releases processed through Multi-Currency (MC) accounting. The view consolidates the link between original contract commitment accounting lines and their released counterparts, exposing functional amounts, encumbrance amounts, currency conversion attributes, and sets-of-books descriptors in a single reporting surface.
The view is defined with the WITH READ ONLY clause, so it supports query access only and cannot be used as a DML target. It exists primarily to satisfy inquiry, reconciliation, and integration reporting requirements for release accounting activity in Contract Commitment.
Underlying Base Objects
The view is defined over three documented base objects, all referenced via synonyms:
- IGC_CC_ACCT_LINES (aliased IGCCAL) — the parent contract commitment accounting lines.
- IGC_CC_MC_ACCT_LINES — the multi-currency release accounting lines.
- GL_SETS_OF_BOOKS_11I (synonym resolving to GL_SETS_OF_BOOKS) — the General Ledger sets-of-books definition used for book names and the set-of-books identifier.
The view joins IGC_CC_MC_ACCT_LINES to IGC_CC_ACCT_LINES on CC_ACCT_LINE_ID, and joins IGC_CC_MC_ACCT_LINES to GL_SETS_OF_BOOKS on SET_OF_BOOKS_ID. This structure means each row represents a release accounting line paired with its originating parent accounting line and its associated ledger.
Key Columns
- RELEASE_ACCOUNT_LINE_NUMBER — sourced from IGCCAL.CC_ACCT_LINE_NUM; the line number of the release accounting entry.
- RELEASE_ACCT_FUNCTIONAL_AMOUNT — the functional-currency amount of the release.
- REL_ACCT_ENCUMBRANCE_AMOUNT — the encumbrance amount carried by the release accounting line.
- CURRENCY_CONVERSION_TYPE, CURRENCY_CONVERSION_DATE, CURRENCY_CONVERSION_RATE — conversion metadata captured on the multi-currency accounting line.
- SETS_OF_BOOKS_NAME and SETS_OF_BOOKS_SHORT_NAME — descriptive ledger identifiers from GL_SETS_OF_BOOKS.
- PARENT_CONTRACT_COMMITMENT_ID — sourced from IGCCAL.PARENT_HEADER_ID; identifies the contract commitment header that the release discharges. This is the column targeted by searches for
parent_contract_commitment_id. - PARENT_ACCOUNT_LINE_ID — sourced from IGCCAL.PARENT_ACCT_LINE_ID; the originating parent accounting line.
- RELEASE_CONTRACT_COMMITMENT_ID — sourced from IGCCAL.CC_HEADER_ID; the header of the release commitment.
- RELEASE_ACCOUNT_LINE_ID and SET_OF_BOOKS_ID — identifiers for the release accounting line and the ledger.
Common Use Cases and Queries
Typical usage includes reconciling releases against their parent commitments, reviewing encumbrance and functional balances by ledger, and driving downstream integration extracts. A common query filters on the parent commitment identifier:
Retrieve all release accounting lines for a specific parent commitment:
SELECT release_account_line_number,
release_contract_commitment_id,
parent_contract_commitment_id,
parent_account_line_id,
release_acct_functional_amount,
rel_acct_encumbrance_amount,
sets_of_books_name,
currency_conversion_rate
FROM apps.igcbv_mc_release_account_lines
WHERE parent_contract_commitment_id = :p_commitment_id;
Aggregate release encumbrance by ledger to support period-end analysis:
SELECT sets_of_books_name,
SUM(rel_acct_encumbrance_amount) total_encumbrance,
SUM(release_acct_functional_amount) total_functional
FROM apps.igcbv_mc_release_account_lines
GROUP BY sets_of_books_name;
Because the view is read-only and joins the parent and release accounting lines directly, it is well suited to enquiry screens, concurrent-program extracts, and reconciliation reports without requiring custom join logic.
-
View: IGCBV_MC_RELEASE_ACCOUNT_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGCBV_MC_RELEASE_ACCOUNT_LINES, object_name:IGCBV_MC_RELEASE_ACCOUNT_LINES, status:VALID, product: IGC - Contract Commitment , implementation_dba_data: APPS.IGCBV_MC_RELEASE_ACCOUNT_LINES ,
-
VIEW: APPS.IGCBV_MC_RELEASE_ACCOUNT_LINES
12.2.2
-
View: IGCBV_MC_RELEASE_ACCOUNT_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGCBV_MC_RELEASE_ACCOUNT_LINES, object_name:IGCBV_MC_RELEASE_ACCOUNT_LINES, status:VALID, product: IGC - Contract Commitment , implementation_dba_data: APPS.IGCBV_MC_RELEASE_ACCOUNT_LINES ,
-
View: IGCFV_MC_RELEASE_ACCOUNT_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGCFV_MC_RELEASE_ACCOUNT_LINES, object_name:IGCFV_MC_RELEASE_ACCOUNT_LINES, status:VALID, product: IGC - Contract Commitment , implementation_dba_data: APPS.IGCFV_MC_RELEASE_ACCOUNT_LINES ,
-
VIEW: APPS.IGCBV_MC_RELEASE_ACCOUNT_LINES
12.1.1
-
View: IGCFV_MC_RELEASE_ACCOUNT_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGCFV_MC_RELEASE_ACCOUNT_LINES, object_name:IGCFV_MC_RELEASE_ACCOUNT_LINES, status:VALID, product: IGC - Contract Commitment , implementation_dba_data: APPS.IGCFV_MC_RELEASE_ACCOUNT_LINES ,
-
VIEW: APPS.IGCFV_MC_RELEASE_ACCOUNT_LINES
12.2.2
-
VIEW: APPS.IGCBV_MC_RELEASE_ACCOUNT_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGCBV_MC_RELEASE_ACCOUNT_LINES, object_name:IGCBV_MC_RELEASE_ACCOUNT_LINES, status:VALID,
-
VIEW: APPS.IGCBV_MC_RELEASE_ACCOUNT_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGCBV_MC_RELEASE_ACCOUNT_LINES, object_name:IGCBV_MC_RELEASE_ACCOUNT_LINES, status:VALID,
-
VIEW: APPS.IGCFV_MC_RELEASE_ACCOUNT_LINES
12.1.1
-
VIEW: APPS.IGCFV_MC_RELEASE_ACCOUNT_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGCFV_MC_RELEASE_ACCOUNT_LINES, object_name:IGCFV_MC_RELEASE_ACCOUNT_LINES, status:VALID,
-
VIEW: APPS.IGCFV_MC_RELEASE_ACCOUNT_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGCFV_MC_RELEASE_ACCOUNT_LINES, object_name:IGCFV_MC_RELEASE_ACCOUNT_LINES, status:VALID,
-
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 ,