Search Results cc_version_num
Overview
IGC_CC_HEADER_VERSION_V is an APPS-owned database view in the Oracle E-Business Suite Contract Commitment (IGC) module. It presents the current and historical versions of contract commitment headers, exposing a consolidated, version-aware picture of commitment records that would otherwise require complex joins across active and history tables. In Oracle EBS 12.1.1 and 12.2.2, the view is marked VALID and is used primarily as a reporting and integration interface rather than as a transactional entry point.
The core purpose of the view is to answer the recurring business question: "which version of a contract commitment header is currently effective?" It resolves this by comparing header versions against a version threshold returned by IGC_CC_VERSION_VIEW_PKG.GET_VERSION_NUM and by excluding the earliest qualifying history row for each header. The result is a set-based representation of effective commitment header versions, suitable for concurrent programs, Discoverer reports, and custom PL/SQL consumers within the IGC schema.
Underlying Base Objects
The view is defined over both transactional tables and HR/FND security objects. The documented referenced base objects are:
- IGC_CC_HEADERS / IGC_CC_HEADERS_ALL — current contract commitment header records.
- IGC_CC_HEADER_HISTORY / IGC_CC_HEADER_HISTORY_ALL — versioned historical snapshots of commitment headers.
- IGC_CC_VERSION_VIEW_PKG — package supplying the version number threshold used to filter effective versions.
- FND_USER — resolves preparer and owner user identifiers.
- HR_EMPLOYEES, HR_PERSON_NAME, HR_GENERAL, HR_SECURITY — resolve full names and support HR security predicates.
- FND_PROFILE — supplies profile option values referenced during resolution.
A UNION ALL combines the active header source with the history source. An inline subquery on CC_HEADER_ID restricts rows to versions at or above the package-supplied version number and subtracts the earliest qualifying history row per header, preventing duplicate effective versions.
Key Columns
- CC_HEADER_ID — primary key of the contract commitment header.
- ORG_ID — operating unit identifier for multi-org security.
- CC_TYPE, CC_NUM, CC_REF_NUM — commitment classification, document number, and reference number.
- CC_VERSION_NUM — the version of this header snapshot.
- PARENT_HEADER_ID — links a header to its parent commitment.
- CC_STATE, CC_CTRL_STATUS, CC_ENCMBRNC_STATUS, CC_APPRVL_STATUS — workflow and lifecycle status indicators.
- VENDOR_ID, VENDOR_SITE_ID, VENDOR_CONTACT_ID — supplier and contact references.
- TERM_ID, LOCATION_ID, SET_OF_BOOKS_ID — payment terms, location, and ledger context.
- CC_ACCT_DATE, CC_START_DATE, CC_END_DATE — accounting and effective date ranges.
- CC_OWNER_USER_ID with OHR.FULL_NAME, and CC_PREPARER_USER_ID with HR.FULL_NAME — ownership and preparation identifiers with resolved employee names.
- CURRENCY_CODE, CONVERSION_TYPE, CONVERSION_DATE, CONVERSION_RATE — currency conversion context.
- WF_ITEM_TYPE, WF_ITEM_KEY — Workflow linkage for the approval process.
- ATTRIBUTE1–ATTRIBUTE15 and CONTEXT — descriptive flexfield segments.
Common Use Cases and Queries
The view is commonly used for audits, version-comparison reporting, and integration extracts. A representative query retrieving effective commitment headers for a specific operating unit is:
- Active version report: SELECT CC_NUM, CC_VERSION_NUM, CC_STATE, CC_APPRVL_STATUS, CURRENCY_CODE FROM IGC_CC_HEADER_VERSION_V WHERE ORG_ID = :p_org_id AND CC_VERSION_NUM = (SELECT MAX(CC_VERSION_NUM) FROM IGC_CC_HEADER_VERSION_V WHERE CC_HEADER_ID = ...);
- Owner workload analysis: SELECT FULL_NAME, COUNT(*) FROM IGC_CC_HEADER_VERSION_V GROUP BY FULL_NAME;
- Workflow-status integration: selecting WF_ITEM_TYPE and WF_ITEM_KEY for commitment approval tracking.
- Version history auditing: comparing consecutive CC_VERSION_NUM rows for the same CC_HEADER_ID.
Because HR security predicates are applied through the underlying HR packages, queries should respect operating unit and HR security contexts. The view is read-only; all maintenance occurs against IGC_CC_HEADERS and IGC_CC_HEADER_HISTORY directly.
-
View: IGC_CC_HEADER_VERSION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGC_CC_HEADER_VERSION_V, object_name:IGC_CC_HEADER_VERSION_V, status:VALID, product: IGC - Contract Commitment , implementation_dba_data: APPS.IGC_CC_HEADER_VERSION_V ,
-
View: IGC_CC_HEADER_VERSION_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGC_CC_HEADER_VERSION_V, object_name:IGC_CC_HEADER_VERSION_V, status:VALID, product: IGC - Contract Commitment , implementation_dba_data: APPS.IGC_CC_HEADER_VERSION_V ,
-
View: IGC_CC_INTERFACE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGC_CC_INTERFACE_V, object_name:IGC_CC_INTERFACE_V, status:VALID, product: IGC - Contract Commitment , implementation_dba_data: APPS.IGC_CC_INTERFACE_V ,
-
View: IGC_CC_INTERFACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGC_CC_INTERFACE_V, object_name:IGC_CC_INTERFACE_V, status:VALID, product: IGC - Contract Commitment , implementation_dba_data: APPS.IGC_CC_INTERFACE_V ,
-
Table: IGC_CC_MC_HEADER_HISTORY
12.2.2
owner:IGC, object_type:TABLE, fnd_design_data:IGC.IGC_CC_MC_HEADER_HISTORY, object_name:IGC_CC_MC_HEADER_HISTORY, status:VALID, product: IGC - Contract Commitment , description: Multiple reporting currency versions for contracts , implementation_dba_data: IGC.IGC_CC_MC_HEADER_HISTORY ,
-
Table: IGC_CC_ARC_MC_HEADER_HIST
12.1.1
owner:IGC, object_type:TABLE, fnd_design_data:IGC.IGC_CC_ARC_MC_HEADER_HIST, object_name:IGC_CC_ARC_MC_HEADER_HIST, status:VALID, product: IGC - Contract Commitment , description: Multiple reporting currency table for contracts to be archived , implementation_dba_data: IGC.IGC_CC_ARC_MC_HEADER_HIST ,
-
Table: IGC_CC_MC_HEADER_HISTORY
12.1.1
owner:IGC, object_type:TABLE, fnd_design_data:IGC.IGC_CC_MC_HEADER_HISTORY, object_name:IGC_CC_MC_HEADER_HISTORY, status:VALID, product: IGC - Contract Commitment , description: Multiple reporting currency versions for contracts , implementation_dba_data: IGC.IGC_CC_MC_HEADER_HISTORY ,
-
Table: IGC_CC_ARC_MC_HEADER_HIST
12.2.2
owner:IGC, object_type:TABLE, fnd_design_data:IGC.IGC_CC_ARC_MC_HEADER_HIST, object_name:IGC_CC_ARC_MC_HEADER_HIST, status:VALID, product: IGC - Contract Commitment , description: Multiple reporting currency table for contracts to be archived , implementation_dba_data: IGC.IGC_CC_ARC_MC_HEADER_HIST ,
-
Table: IGC_CC_ARC_HEADER_HIST
12.1.1
product: IGC - Contract Commitment , description: Contract versions to be archived , implementation_dba_data: Not implemented in this database ,
-
Table: IGC_CC_ARC_HEADER_HIST
12.2.2
product: IGC - Contract Commitment , description: Contract versions to be archived , implementation_dba_data: Not implemented in this database ,
-
Table: IGC_CC_HEADER_HISTORY
12.1.1
product: IGC - Contract Commitment , description: Contract versions , implementation_dba_data: Not implemented in this database ,
-
Table: IGC_CC_HEADER_HISTORY
12.2.2
product: IGC - Contract Commitment , description: Contract versions , implementation_dba_data: Not implemented in this database ,
-
View: IGC_CC_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGC_CC_HEADERS_V, object_name:IGC_CC_HEADERS_V, status:VALID, product: IGC - Contract Commitment , implementation_dba_data: APPS.IGC_CC_HEADERS_V ,
-
View: IGC_CC_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGC_CC_HEADERS_V, object_name:IGC_CC_HEADERS_V, status:VALID, product: IGC - Contract Commitment , implementation_dba_data: APPS.IGC_CC_HEADERS_V ,