Search Results dr_cr_meaning




Overview

IGC_CBC_SUMMARY_TEMPLATE_FCL_V is an Oracle E-Business Suite 12.1.1 / 12.2.2 view owned by the APPS schema. It belongs to the IGC (Contract Commitment) product family and serves as the presentation-layer data source for the CBC Funds Check Level form. The view consolidates configuration records that define how budgetary funds checks are performed against commitments, joining GL summary template definitions with IGC-specific CBC summary template overrides. It is registered as a VALID object in EBS and is intended for read-only consumption by forms and reports rather than direct DML.

The view's primary purpose is to expose summary template attributes in a human-readable form by resolving otherwise opaque coded values through GL_LOOKUPS. Status codes, account category codes, funds check level codes, and debit/credit indicators are all translated into their lookup meanings, allowing the Funds Check Level setup form to display descriptive text instead of raw codes. This makes the view a critical bridge between the technical definition stored in GL_SUMMARY_TEMPLATES and the user-facing configuration experience within the IGC module.

Underlying Base Objects

The view is defined over the following documented base objects:

Notably, the ETRM-documented base object listing shows DUAL (SYNONYM) as a referenced object, reflecting the lookup joins in the underlying SQL. In Oracle EBS 12.2.2 the view continues to reference the edition-based GL_LOOKUPS and GL_SUMMARY_TEMPLATES objects, so it resolves consistently under the online patching (adop) architecture.

Key Columns

Common Use Cases and Queries

The view supports Funds Check Level form rendering, template audits, and reconciliation between GL and IGC summary definitions. Typical queries include:

  • Listing active templates with resolved statuses:
    SELECT template_id, template_name, summary_status, funds_check_level_code, sbc_funds_check_meaning FROM igc_cbc_summary_template_fcl_v WHERE status = 'A';
  • Identifying IGC overrides:
    SELECT template_name, cbc_override FROM igc_cbc_summary_template_fcl_v WHERE cbc_override = 'Y';
  • Auditing funds check level usage per budget:
    SELECT funding_budget_name, sbc_funds_check_meaning, COUNT(*) FROM igc_cbc_summary_template_fcl_v GROUP BY funding_budget_name, sbc_funds_check_meaning;

Because the view is read-only and aggregates lookup translations, it is unsuitable for insert or update operations; modifications must target the underlying GL_SUMMARY_TEMPLATES or IGC_CBC_SUMMARY_TEMPLATES tables directly.