Search Results quarter_num
Overview
APPS.IGC_CBC_JE_LINES_BAL_ALL_V is a reporting view in the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 releases, owned by the APPS schema. It is part of the Grants Accounting / Contracts and Budgeting component of the Public Sector (IGC) product family. The view consolidates journal entry lines into period-level balances and enriches them with currency-converted balance figures retrieved dynamically at query time. Its primary role is to present aggregated debit, credit, and derived PTD (period-to-date), QTD (quarter-to-date), and YTD (year-to-date) balances for a given account combination, ledger, budget version, and accounting period.
Because the monetary balance columns are populated via calls to a package function rather than stored columns, the view is effectively an inquiry-oriented reporting construct. It enables inquiry forms, reports, and dashboards that need summarized balances without materializing them in a permanent table.
Underlying Base Objects
The view is defined over two documented base objects:
- IGC_CBC_JE_LINES (SYNONYM) — the principal data source supplying the raw journal entry line rows that the view aggregates. All grouping and summation occurs against this object.
- IGC_CBC_INQUIRY_PKG (PACKAGE) — the PL/SQL package whose GET_FC_BALANCES function is invoked three times within the view's SELECT list to compute the PTD, QTD, and YTD balances.
The view does not eliminate duplicates across sources; instead, it groups IGC_CBC_JE_LINES rows by period, quarter, ledger, encumbrance type, budget version, account combination, period year, and the actual flag.
Key Columns
- ACTUAL_FLAG — distinguishes actual vs. budget balances.
- SET_OF_BOOKS_ID — the ledger (set of books) identifier in 12.1.1 / 12.2.2 terminology.
- ENCUMBRANCE_TYPE_ID — identifies the encumbrance type for encumbrance balances.
- BUDGET_VERSION_ID — the budget version defining which budget the balances pertain to; supplied by the user's search term and passed directly to GET_FC_BALANCES.
- CODE_COMBINATION_ID — the account combination key.
- PERIOD_NAME, PERIOD_NUM, PERIOD_YEAR, QUARTER_NUM — period and calendar attributes used for grouping and for the PTD/QTD/YTD calculations.
- ENTERED_DR / ENTERED_CR — summed entered debit and credit amounts from IGC_CBC_JE_LINES.
- AMOUNT_TYPE, STATUS — returned via MIN() aggregation, capturing the minimum value across the grouped rows.
- PTD/QTD/YTD balance columns — calculated by IGC_CBC_INQUIRY_PKG.GET_FC_BALANCES using code_combination_id, set_of_books_id, budget_version_id, period_year, period_num, quarter_num, actual_flag, and encumbrance_type_id.
Common Use Cases and Queries
Typical uses include budget-vs-actual inquiry, encumbrance reporting, and grants funds-checking screens. The BUDGET_VERSION_ID column is frequently used as a filter, since it is a grouping key and a required argument to the balance function.
- Filtering balances for a specific budget version, ledger, and account combination to reconcile PTD/QTD/YTD figures.
- Joining to GL code combination and period views to translate IDs into descriptive account and period values.
- Comparing actual and budget rows by filtering the ACTUAL_FLAG column.
Sample SQL:
SELECT period_year, period_name, budget_version_id, code_combination_id, SUM(entered_dr), SUM(entered_cr) FROM apps.igc_cbc_je_lines_bal_all_v WHERE budget_version_id = :p_version AND set_of_books_id = :p_ledger AND code_combination_id = :p_ccid GROUP BY period_year, period_name, budget_version_id, code_combination_id;SELECT DISTINCT budget_version_id FROM apps.igc_cbc_je_lines_bal_all_v ORDER BY budget_version_id;
Because the PTD/QTD/YTD columns invoke a packaged function, queries should minimize returned row counts and bind the grouping columns to reduce function-execution overhead.
-
VIEW: APPS.IGC_CBC_JE_LINES_BAL_ALL_V
12.1.1
-
VIEW: APPS.IGC_CBC_JE_LINES_BAL_ALL_V
12.2.2
-
VIEW: APPS.ISC_MSC_BIS_QUARTERS_V
12.1.1
-
VIEW: APPS.BIL_TX_PERIOD_NAME_V
12.1.1
-
View: IGC_CBC_JE_LINES_BAL_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGC_CBC_JE_LINES_BAL_ALL_V, object_name:IGC_CBC_JE_LINES_BAL_ALL_V, status:VALID, product: IGC - Contract Commitment , implementation_dba_data: APPS.IGC_CBC_JE_LINES_BAL_ALL_V ,
-
View: IGC_CBC_JE_LINES_BAL_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGC_CBC_JE_LINES_BAL_ALL_V, object_name:IGC_CBC_JE_LINES_BAL_ALL_V, status:VALID, product: IGC - Contract Commitment , implementation_dba_data: APPS.IGC_CBC_JE_LINES_BAL_ALL_V ,
-
VIEW: IGC.IGC_CBC_INTERFACE_EXCEPTIONS#
12.2.2
-
VIEW: APPS.PA_REP_QUARTER_PA_V
12.1.1
-
VIEW: APPS.PA_REP_QUARTER_GL_V
12.1.1
-
VIEW: APPS.PA_REP_QUARTER_PA_V
12.2.2
-
VIEW: APPS.PA_REP_QUARTER_GL_V
12.2.2
-
VIEW: APPS.CN_PAY_PERIODS_V
12.1.1
-
VIEW: GL.GL_OASIS_SUMMARY_DATA#
12.2.2
-
View: PA_REP_QUARTER_PA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_QUARTER_PA_V, object_name:PA_REP_QUARTER_PA_V, status:VALID, product: PA - Projects , description: PA_REP_QUARTER_PA_V is a view to get PA quarter numbers , implementation_dba_data: APPS.PA_REP_QUARTER_PA_V ,
-
VIEW: APPS.CN_PAY_PERIODS_V
12.2.2
-
View: PA_REP_QUARTER_GL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_QUARTER_GL_V, object_name:PA_REP_QUARTER_GL_V, status:VALID, product: PA - Projects , description: PA_REP_QUARTER_GL_V is a view to get GL quarter numbers , implementation_dba_data: APPS.PA_REP_QUARTER_GL_V ,
-
VIEW: APPS.IGC_CBC_JE_LINES_BAL_PTD_V
12.2.2
-
VIEW: GL.GL_PERIODS#
12.2.2
-
MATERIALIZED VIEW: APPS.HRI_TIME_CAL_DAY_MV
12.2.2
-
VIEW: APPS.IGC_CBC_JE_LINES_BAL_PTD_V
12.1.1
-
View: PA_REP_QUARTER_PA_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_QUARTER_PA_V, object_name:PA_REP_QUARTER_PA_V, status:VALID, product: PA - Projects , description: PA_REP_QUARTER_PA_V is a view to get PA quarter numbers , implementation_dba_data: APPS.PA_REP_QUARTER_PA_V ,
-
VIEW: CN.CN_PERIOD_QUOTAS_ALL#
12.2.2
-
View: PA_REP_QUARTER_GL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_QUARTER_GL_V, object_name:PA_REP_QUARTER_GL_V, status:VALID, product: PA - Projects , description: PA_REP_QUARTER_GL_V is a view to get GL quarter numbers , implementation_dba_data: APPS.PA_REP_QUARTER_GL_V ,
-
VIEW: CN.CN_PERIOD_STATUSES_ALL#
12.2.2
-
VIEW: MSC.MSC_ST_BIS_PERIODS#
12.2.2
-
VIEW: GL.GL_XFR_PERIODS#
12.2.2
-
VIEW: MSC.MSC_BIS_PERIODS#
12.2.2
-
VIEW: GL.GL_PERIOD_STATUSES#
12.2.2
-
VIEW: PA.PA_ALLOC_TXN_DETAILS#
12.2.2
-
View: IGC_CBC_JE_LINES_BAL_PTD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGC_CBC_JE_LINES_BAL_PTD_V, object_name:IGC_CBC_JE_LINES_BAL_PTD_V, status:VALID, product: IGC - Contract Commitment , implementation_dba_data: APPS.IGC_CBC_JE_LINES_BAL_PTD_V ,
-
View: IGC_CBC_JE_LINES_BAL_PTD_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGC_CBC_JE_LINES_BAL_PTD_V, object_name:IGC_CBC_JE_LINES_BAL_PTD_V, status:VALID, product: IGC - Contract Commitment , implementation_dba_data: APPS.IGC_CBC_JE_LINES_BAL_PTD_V ,
-
APPS.PJI_TIME_C SQL Statements
12.1.1
-
VIEW: IGC.IGC_CBC_ARCHIVE_JE_LINES#
12.2.2
-
VIEW: APPS.PA_REP_QUARTER_CAL_V
12.2.2
-
VIEW: APPS.PA_REP_QUARTER_CAL_V
12.1.1
-
View: PA_REP_QUARTER_CAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_QUARTER_CAL_V, object_name:PA_REP_QUARTER_CAL_V, status:VALID, product: PA - Projects , description: PA_REP_QUARTER_CAL_V is a view to get calendar quarter numbers , implementation_dba_data: APPS.PA_REP_QUARTER_CAL_V ,
-
View: PA_REP_QUARTER_CAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_QUARTER_CAL_V, object_name:PA_REP_QUARTER_CAL_V, status:VALID, product: PA - Projects , description: PA_REP_QUARTER_CAL_V is a view to get calendar quarter numbers , implementation_dba_data: APPS.PA_REP_QUARTER_CAL_V ,
-
APPS.PJI_TIME_C SQL Statements
12.2.2
-
View: AMW_GL_PERIODS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_GL_PERIODS_V, object_name:AMW_GL_PERIODS_V, status:VALID, product: AMW - Internal Controls Manager , description: Stores Information of General Ledger Periods , implementation_dba_data: APPS.AMW_GL_PERIODS_V ,
-
VIEW: APPS.AMW_GL_PERIODS_V
12.1.1
-
View: GL_PERIOD_STATUSES_NAME_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_PERIOD_STATUSES_NAME_V, object_name:GL_PERIOD_STATUSES_NAME_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_PERIOD_STATUSES_NAME_V ,
-
View: AMW_GL_PERIODS_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Stores Information of General Ledger Periods , implementation_dba_data: Not implemented in this database ,
-
View: PMI_GL_CALENDAR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMI_GL_CALENDAR_V, object_name:PMI_GL_CALENDAR_V, status:VALID, product: PMI - Process Manufacturing Intelligence , description: View to link GL Calendar to OPM Company , implementation_dba_data: APPS.PMI_GL_CALENDAR_V ,
-
View: PMI_GL_CALENDAR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMI_GL_CALENDAR_V, object_name:PMI_GL_CALENDAR_V, status:VALID, product: PMI - Process Manufacturing Intelligence (Obsolete) , description: View to link GL Calendar to OPM Company , implementation_dba_data: APPS.PMI_GL_CALENDAR_V ,
-
VIEW: IGC.IGC_CBC_JE_LINES#
12.2.2
-
View: GL_PERIOD_STATUSES_NAME_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_PERIOD_STATUSES_NAME_V, object_name:GL_PERIOD_STATUSES_NAME_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_PERIOD_STATUSES_NAME_V ,
-
VIEW: APPS.GL_PERIOD_STATUSES_NAME_V
12.1.1
-
VIEW: IGI.IGI_DOS_TRX_DEST#
12.2.2
-
VIEW: IGI.IGI_DOS_TRX_SOURCES#
12.2.2
-
VIEW: APPS.CN_SRP_PERIOD_QUOTAS_QUART_V
12.1.1