Search Results cc_version_num
Overview
APPS.IGC_CC_HEADER_VERSION_V is a version-aware view over the commitment control (CC) header data model in Oracle E-Business Suite. It presents the current effective version of each commitment control document together with its historical versions, resolving version selection through the IGC_CC_VERSION_VIEW_PKG package. In Oracle EBS 12.1.1 and 12.2.2, this view serves as the reporting and integration surface for commitment control headers, allowing external reports, forms, and interfaces to obtain a consistent, version-qualified snapshot of a CC document without directly navigating the header and header-history tables.
The view is owned by APPS and is commonly accessed through a synonym or direct APPS qualification. Its principal identifier is CC_HEADER_ID, the column most frequently referenced in lookups, joins, and API calls against commitment control documents.
Underlying Base Objects
The view is defined over the following documented base objects:
- IGC_CC_HEADERS and IGC_CC_HEADERS_ALL (synonyms over the transactional header and its multi-org variant)
- IGC_CC_HEADER_HISTORY and IGC_CC_HEADER_HISTORY_ALL (synonyms over the historical header records)
- IGC_CC_VERSION_VIEW_PKG (package supplying GET_VERSION_NUM, which determines the version threshold used to filter eligible records)
- FND_USER (synonym) and HR_EMPLOYEES (view), joined to resolve preparer and owner names
- HR_GENERAL, HR_PERSON_NAME, and HR_SECURITY (packages) supporting employee name resolution and security
- FND_PROFILE (package), typically used for organizational or profile-driven filtering
The view text performs a UNION between current headers and historical headers. The current branch selects rows whose CC_HEADER_ID appears in IGC_CC_HEADERS_ALL with CC_VERSION_NUM at or above the version returned by IGC_CC_VERSION_VIEW_PKG.GET_VERSION_NUM, minus those whose minimum qualifying history version would duplicate them. The history branch contributes the corresponding historical rows from IGC_CC_HEADER_HISTORY_ALL. Outer joins to FND_USER and HR_EMPLOYEES (aliased fndu/hr and ofndu/ohr) resolve the preparer and owner person names.
Key Columns
- CC_HEADER_ID — Primary identifier of the commitment control header; the anchor for joins to lines, distributions, and history.
- ORG_ID — Operating unit context for multi-org security and reporting.
- CC_TYPE, CC_NUM, CC_REF_NUM — Document type, document number, and reference number.
- CC_VERSION_NUM — Version of the commitment control document; drives the version-aware filtering logic.
- PARENT_HEADER_ID — Self-referencing pointer to a parent document, where applicable.
- CC_STATE, CC_CTRL_STATUS, CC_ENCMBRNC_STATUS, CC_APPRVL_STATUS — Workflow state and control, encumbrance, and approval statuses.
- VENDOR_ID, VENDOR_SITE_ID, VENDOR_CONTACT_ID, TERM_ID, LOCATION_ID — Supplier, site, contact, payment term, and location references.
- SET_OF_BOOKS_ID, CC_ACCT_DATE — Ledger and accounting date context.
- CC_START_DATE, CC_END_DATE, CC_DESC — Validity window and description of the commitment.
- CC_OWNER_USER_ID, full_name; CC_PREPARER_USER_ID, full_name — Owner and preparer user identifiers with resolved employee names.
- CURRENCY_CODE, CONVERSION_TYPE, CONVERSION_DATE, CONVERSION_RATE — Currency and conversion attributes.
- CC_CURRENT_USER_ID, WF_ITEM_TYPE, WF_ITEM_KEY — Current workflow actor and workflow item linkage.
- ATTRIBUTE1–ATTRIBUTE15, CONTEXT — Descriptive flexfield context and segments.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATED_BY, CREATION_DATE — Standard audit columns.
- CC_GUARANTEE_FLAG — Indicator of guarantee treatment on the commitment.
Common Use Cases and Queries
Typical usage includes commitment control reporting, version history review, workflow status monitoring, and integration lookups keyed by CC_HEADER_ID. A representative query retrieves the current version for a given document:
- SELECT cc_header_id, cc_num, cc_version_num, cc_state, cc_apprvl_status FROM apps.igc_cc_header_version_v WHERE cc_header_id = :p_cc_header_id;
- SELECT cc_header_id, cc_num, cc_version_num, cc_owner_user_id FROM apps.igc_cc_header_version_v WHERE org_id = :p_org_id AND cc_state = 'APPROVED';
- SELECT v.cc_header_id, v.cc_version_num, v.cc_ctrl_status FROM apps.igc_cc_header_version_v v WHERE v.cc_header_id IN (SELECT cc_header_id FROM apps.igc_cc_lines WHERE cc_line_id = :p_line_id);
Because the view combines live and historical records and applies version filtering via IGC_CC_VERSION_VIEW_PKG, queries should always constrain on CC_HEADER_ID or another selective predicate and consider ORG_ID for multi-org environments to ensure correct results.
-
VIEW: APPS.IGC_CC_HEADER_VERSION_V
12.1.1
-
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.IGC_CC_MC_HEADER_HISTORY#
12.2.2
-
VIEW: APPS.IGC_CC_HEADER_VERSION_V
12.2.2
-
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.IGC_CC_ARC_MC_HEADER_HIST#
12.2.2
-
VIEW: IGC.IGC_CC_ARC_HEADER_HIST_ALL#
12.2.2
-
VIEW: IGC.IGC_CC_HEADERS_ALL#
12.2.2
-
VIEW: IGC.IGC_CC_INTERFACE#
12.2.2
-
VIEW: IGC.IGC_CC_ARC_HEADERS_ALL#
12.2.2
-
VIEW: IGC.IGC_CC_HEADERS_OBS#
12.2.2
-
VIEW: IGC.IGC_CC_HEADER_HISTORY_OBS#
12.2.2
-
VIEW: IGC.IGC_CC_ARC_HEADERS_OBS#
12.2.2
-
VIEW: IGC.IGC_CC_HEADERS_INTERFACE_OBS#
12.2.2
-
VIEW: IGC.IGC_CC_ARC_HEADER_HIST_OBS#
12.2.2
-
VIEW: IGC.IGC_CC_HEADER_HISTORY_ALL#
12.2.2
-
TABLE: IGC.IGC_CC_HEADER_HISTORY_OBS
12.1.1
owner:IGC, object_type:TABLE, object_name:IGC_CC_HEADER_HISTORY_OBS, status:VALID,
-
VIEW: IGC.IGC_CC_HEADERS_INTERFACE_ALL#
12.2.2
-
TABLE: IGC.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,
-
TABLE: IGC.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,
-
TABLE: IGC.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,
-
TABLE: IGC.IGC_CC_HEADER_HISTORY_OBS
12.2.2
owner:IGC, object_type:TABLE, object_name:IGC_CC_HEADER_HISTORY_OBS, status:VALID,
-
TABLE: IGC.IGC_CC_ARC_HEADER_HIST_OBS
12.1.1
owner:IGC, object_type:TABLE, object_name:IGC_CC_ARC_HEADER_HIST_OBS, status:VALID,
-
TABLE: IGC.IGC_CC_ARC_HEADER_HIST_OBS
12.2.2
owner:IGC, object_type:TABLE, object_name:IGC_CC_ARC_HEADER_HIST_OBS, status:VALID,
-
TABLE: IGC.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,
-
VIEW: IGC.IGC_CC_ARC_MC_HEADER_HIST#
12.2.2
owner:IGC, object_type:VIEW, object_name:IGC_CC_ARC_MC_HEADER_HIST#, status:VALID,
-
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.IGC_CC_MC_HEADER_HISTORY#
12.2.2
owner:IGC, object_type:VIEW, object_name:IGC_CC_MC_HEADER_HISTORY#, status:VALID,
-
VIEW: APPS.IGC_CC_INTERFACE_V
12.2.2
-
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 ,
-
VIEW: APPS.IGC_CC_INTERFACE_V
12.1.1
-
VIEW: APPS.IGC_CC_SLA_BFLOW_PRIOR_V
12.2.2
owner:APPS, object_type:VIEW, object_name:IGC_CC_SLA_BFLOW_PRIOR_V, status:VALID,
-
TABLE: IGC.IGC_CC_ARC_HEADER_HIST_ALL
12.1.1
owner:IGC, object_type:TABLE, object_name:IGC_CC_ARC_HEADER_HIST_ALL, status:VALID,
-
TABLE: IGC.IGC_CC_HEADER_HISTORY_ALL
12.1.1
owner:IGC, object_type:TABLE, object_name:IGC_CC_HEADER_HISTORY_ALL, status:VALID,
-
VIEW: APPS.IGC_CC_SLA_BFLOW_PRIOR_V
12.1.1
owner:APPS, object_type:VIEW, object_name:IGC_CC_SLA_BFLOW_PRIOR_V, status:VALID,
-
TABLE: IGC.IGC_CC_HEADER_HISTORY_ALL
12.2.2
owner:IGC, object_type:TABLE, object_name:IGC_CC_HEADER_HISTORY_ALL, status:VALID,
-
TABLE: IGC.IGC_CC_ARC_HEADER_HIST_ALL
12.2.2
owner:IGC, object_type:TABLE, object_name:IGC_CC_ARC_HEADER_HIST_ALL, status:VALID,
-
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_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_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_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 ,
-
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 ,
-
VIEW: IGC.IGC_CC_ARC_HEADERS_ALL#
12.2.2
owner:IGC, object_type:VIEW, object_name:IGC_CC_ARC_HEADERS_ALL#, status:VALID,
-
VIEW: IGC.IGC_CC_HEADERS_INTERFACE_OBS#
12.2.2
owner:IGC, object_type:VIEW, object_name:IGC_CC_HEADERS_INTERFACE_OBS#, status:VALID,
-
TABLE: IGC.IGC_CC_HEADERS_INTERFACE_OBS
12.2.2
owner:IGC, object_type:TABLE, object_name:IGC_CC_HEADERS_INTERFACE_OBS, status:VALID,
-
TABLE: IGC.IGC_CC_ARC_HEADERS_OBS
12.2.2
owner:IGC, object_type:TABLE, object_name:IGC_CC_ARC_HEADERS_OBS, status:VALID,
-
VIEW: IGC.IGC_CC_ARC_HEADER_HIST_ALL#
12.2.2
owner:IGC, object_type:VIEW, object_name:IGC_CC_ARC_HEADER_HIST_ALL#, status:VALID,