Search Results parent_contract_number
Overview
IGCFV_MC_REL_SUM_PAY_FORECASTS is an APPS-owned database view within the Oracle E-Business Suite IGC – Contract Commitment module. It presents summarized pay forecast amounts for release (child) contract commitments, rolled up against their parent contract commitments and expressed per accounting period and set of books. The view is a reporting and integration artifact, designed to answer the question of how much has been forecast or encumbered on a release contract line during a given GL period, while simultaneously exposing the identity of the parent contract and parent account line to which that release rolls up. The "MC" prefix and the join through IGC_CC_MC_DET_PF indicate a multi-currency detail pay forecast source, with amounts aggregated separately for functional currency and encumbrance. Because the view resolves parent identifiers directly, it is commonly targeted by users searching for parent_contract_number, the column that exposes IGC_CC_HEADERS.CC_NUM of the parent commitment. The view is VALID and documented in ETRM for both 12.1.1 and 12.2.2, where its underlying objects are referenced through synonyms resolving to the ALL-suffixed base tables.
Underlying Base Objects
The view is defined over eight documented base objects, each accessed through a synonym in the APPS schema:
- IGC_CC_MC_DET_PF — the multi-currency detail pay forecast table, supplying the functional and encumbrance amounts, conversion attributes, and set of books identifier.
- IGC_CC_DET_PF — the detail pay forecast table, joined on CC_DET_PF_LINE_ID and supplying the forecast date used for period matching.
- IGC_CC_ACCT_LINES — joined twice, once as the release account line (IGCCAL) and once as the parent account line (IGCCALP), providing the release and parent account line numbers and the header/line foreign keys that link child to parent.
- IGC_CC_HEADERS_ALL — joined twice (IGC_CCH for the release, IGC_CCHP for the parent), supplying the release and parent contract numbers.
- IGC_CC_PERIODS_ALL — supplies the organization and period name driving the organization and period-set joins.
- GL_PERIODS — provides PERIOD_YEAR and the start/end dates against which the pay forecast date is bounded.
- GL_SETS_OF_BOOKS_11I — supplies the set of books name and short name.
- HR_ALL_ORGANIZATION_UNITS — supplies the organization name.
The parent-to-release relationship is established through IGCCAL.PARENT_ACCT_LINE_ID = IGCCALP.CC_ACCT_LINE_ID and IGCCAL.PARENT_HEADER_ID = IGC_CCHP.CC_HEADER_ID, which is precisely why parent_contract_number is available on every row.
Key Columns
- PARENT_CONTRACT_NUMBER — the contract number of the parent commitment, sourced from IGC_CCHP.CC_NUM. This is the column most frequently referenced by users.
- RELEASE_CONTRACT_NUMBER — the contract number of the child/release commitment, from IGC_CCH.CC_NUM.
- PARENT_ACCOUNT_LINE_NUMBER / RELEASE_ACCOUNT_LINE_NUMBER — the corresponding account line numbers on the parent and release contracts.
- REL_SUM_PF_FUNCTIONAL_AMOUNT — the summed functional-currency pay forecast amount.
- REL_SUMMARY_PF_ENCUMBER_AMOUNT — the summed encumbrance pay forecast amount.
- CURRENCY_CONVERSION_TYPE, CURRENCY_CONVERSION_DATE, CURRENCY_CONVERSION_RATE — currency conversion attributes carried at the detail level.
- PERIOD_YEAR — the GL period year against which the forecast date falls.
- SETS_OF_BOOKS_NAME / SETS_OF_BOOKS_SHORT_NAME / SET_OF_BOOKS_ID — set of books identification.
- ORGANIZATION_NAME / ORGANIZATION_ID — the operating unit organization context.
- PARENT_CONTRACT_COMMITMENT_ID, PARENT_ACCOUNT_LINE_ID, RELEASE_CONTRACT_COMMITMENT_ID, RELEASE_ACCOUNT_LINE_ID — surrogate keys useful for drill-down joins.
Common Use Cases and Queries
Typical scenarios include parent-level rollup reporting of release pay forecasts, reconciliation of encumbrance against functional amounts, and integration extracts keyed by parent contract. A representative query filtering by the searched column is:
SELECT parent_contract_number, release_contract_number, release_account_line_number, period_year, rel_sum_pf_functional_amount, rel_summary_pf_encumber_amount FROM igcfv_mc_rel_sum_pay_forecasts WHERE parent_contract_number = :p_contract AND set_of_books_id = :p_sob;
Aggregation at the parent level follows the same pattern, grouping by parent_contract_number and period_year while summing the two amount columns. Because the view already performs the grouping internally over its join set, consumers should apply their own GROUP BY only when consolidating across release lines or organizations.
-
View: IGCFV_MC_REL_SUM_PAY_FORECASTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGCFV_MC_REL_SUM_PAY_FORECASTS, object_name:IGCFV_MC_REL_SUM_PAY_FORECASTS, status:VALID, product: IGC - Contract Commitment , implementation_dba_data: APPS.IGCFV_MC_REL_SUM_PAY_FORECASTS ,
-
View: IGCFV_CC_REL_SUM_PAY_FORECASTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGCFV_CC_REL_SUM_PAY_FORECASTS, object_name:IGCFV_CC_REL_SUM_PAY_FORECASTS, status:VALID, product: IGC - Contract Commitment , implementation_dba_data: APPS.IGCFV_CC_REL_SUM_PAY_FORECASTS ,
-
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: IGCFV_MC_RELEASES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGCFV_MC_RELEASES, object_name:IGCFV_MC_RELEASES, status:VALID, product: IGC - Contract Commitment , implementation_dba_data: APPS.IGCFV_MC_RELEASES ,
-
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: IGCFV_MC_RELEASES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGCFV_MC_RELEASES, object_name:IGCFV_MC_RELEASES, status:VALID, product: IGC - Contract Commitment , implementation_dba_data: APPS.IGCFV_MC_RELEASES ,
-
VIEW: APPS.IGCFV_MC_RELEASES
12.2.2
-
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: IGCFV_MC_REL_SUM_PAY_FORECASTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGCFV_MC_REL_SUM_PAY_FORECASTS, object_name:IGCFV_MC_REL_SUM_PAY_FORECASTS, status:VALID, product: IGC - Contract Commitment , implementation_dba_data: APPS.IGCFV_MC_REL_SUM_PAY_FORECASTS ,
-
View: IGCFV_CC_REL_SUM_PAY_FORECASTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGCFV_CC_REL_SUM_PAY_FORECASTS, object_name:IGCFV_CC_REL_SUM_PAY_FORECASTS, status:VALID, product: IGC - Contract Commitment , implementation_dba_data: APPS.IGCFV_CC_REL_SUM_PAY_FORECASTS ,
-
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,
-
VIEW: APPS.IGCFV_MC_RELEASES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGCFV_MC_RELEASES, object_name:IGCFV_MC_RELEASES, status:VALID,
-
VIEW: APPS.IGCFV_MC_REL_SUM_PAY_FORECASTS
12.1.1
-
VIEW: APPS.IGCFV_MC_RELEASE_ACCOUNT_LINES
12.2.2
-
VIEW: APPS.IGCFV_MC_RELEASES
12.1.1
-
VIEW: APPS.IGCFV_CC_REL_SUM_PAY_FORECASTS
12.1.1
-
VIEW: APPS.IGCFV_CC_REL_SUM_PAY_FORECASTS
12.2.2
-
VIEW: APPS.IGCFV_CC_RELEASE_ACCOUNT_LINES
12.2.2
-
View: IGCFV_CC_RELEASE_ACCOUNT_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGCFV_CC_RELEASE_ACCOUNT_LINES, object_name:IGCFV_CC_RELEASE_ACCOUNT_LINES, status:VALID, product: IGC - Contract Commitment , implementation_dba_data: APPS.IGCFV_CC_RELEASE_ACCOUNT_LINES ,
-
VIEW: APPS.IGCFV_CC_REL_SUM_PAY_FORECASTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGCFV_CC_REL_SUM_PAY_FORECASTS, object_name:IGCFV_CC_REL_SUM_PAY_FORECASTS, status:VALID,
-
VIEW: APPS.IGCFV_MC_RELEASES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGCFV_MC_RELEASES, object_name:IGCFV_MC_RELEASES, status:VALID,
-
VIEW: APPS.IGCFV_CC_REL_SUM_PAY_FORECASTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGCFV_CC_REL_SUM_PAY_FORECASTS, object_name:IGCFV_CC_REL_SUM_PAY_FORECASTS, status:VALID,
-
VIEW: APPS.IGCFV_CC_RELEASES
12.2.2
-
View: IGCFV_CC_RELEASE_ACCOUNT_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGCFV_CC_RELEASE_ACCOUNT_LINES, object_name:IGCFV_CC_RELEASE_ACCOUNT_LINES, status:VALID, product: IGC - Contract Commitment , implementation_dba_data: APPS.IGCFV_CC_RELEASE_ACCOUNT_LINES ,
-
VIEW: APPS.IGCFV_MC_REL_SUM_PAY_FORECASTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGCFV_MC_REL_SUM_PAY_FORECASTS, object_name:IGCFV_MC_REL_SUM_PAY_FORECASTS, status:VALID,
-
VIEW: APPS.IGCFV_MC_REL_SUM_PAY_FORECASTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGCFV_MC_REL_SUM_PAY_FORECASTS, object_name:IGCFV_MC_REL_SUM_PAY_FORECASTS, status:VALID,
-
View: IGCFV_CC_RELEASES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGCFV_CC_RELEASES, object_name:IGCFV_CC_RELEASES, status:VALID, product: IGC - Contract Commitment , implementation_dba_data: APPS.IGCFV_CC_RELEASES ,
-
View: IGCFV_CC_RELEASES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGCFV_CC_RELEASES, object_name:IGCFV_CC_RELEASES, status:VALID, product: IGC - Contract Commitment , implementation_dba_data: APPS.IGCFV_CC_RELEASES ,
-
VIEW: APPS.IGCFV_CC_RELEASES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGCFV_CC_RELEASES, object_name:IGCFV_CC_RELEASES, status:VALID,
-
VIEW: APPS.IGCFV_CC_RELEASE_ACCOUNT_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGCFV_CC_RELEASE_ACCOUNT_LINES, object_name:IGCFV_CC_RELEASE_ACCOUNT_LINES, status:VALID,
-
VIEW: APPS.IGCFV_MC_REL_SUM_PAY_FORECASTS
12.2.2
-
VIEW: APPS.IGCFV_CC_RELEASE_ACCOUNT_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGCFV_CC_RELEASE_ACCOUNT_LINES, object_name:IGCFV_CC_RELEASE_ACCOUNT_LINES, status:VALID,
-
VIEW: APPS.IGCFV_CC_RELEASE_ACCOUNT_LINES
12.1.1
-
VIEW: APPS.IGCFV_CC_RELEASES
12.1.1
-
VIEW: APPS.IGCFV_CC_RELEASES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGCFV_CC_RELEASES, object_name:IGCFV_CC_RELEASES, status:VALID,
-
View: OKL_VP_AGREEMENT_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_VP_AGREEMENT_UV, object_name:OKL_VP_AGREEMENT_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_VP_AGREEMENT_UV ,
-
View: OKL_VP_AGREEMENT_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_VP_AGREEMENT_UV, object_name:OKL_VP_AGREEMENT_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_VP_AGREEMENT_UV ,
-
VIEW: APPS.OKL_VP_AGREEMENT_UV
12.2.2
-
VIEW: APPS.OKL_VP_AGREEMENT_UV
12.1.1
-
VIEW: APPS.OKL_VP_AGREEMENT_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_VP_AGREEMENT_UV, object_name:OKL_VP_AGREEMENT_UV, status:VALID,
-
VIEW: APPS.OKL_VP_AGREEMENT_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_VP_AGREEMENT_UV, object_name:OKL_VP_AGREEMENT_UV, status:VALID,
-
eTRM - IGC Tables and Views
12.1.1
description: System parameters for contracts ,
-
eTRM - IGC Tables and Views
12.2.2
description: System parameters for contracts ,
-
eTRM - OKL Tables and Views
12.1.1
description: Translatable columns from OKL_XTL_SELL_INVS_B, per MLS standards ,
-
eTRM - OKL Tables and Views
12.2.2
description: Translatable columns from OKL_XTL_SELL_INVS_B, per MLS standards ,