Search Results cost_centre
Overview
The IGS.IGS_HE_ST_UV_CC_ALL table is a core data structure within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 environments, specifically designed for the Higher Education Statistics Agency (HESA) reporting framework in the UK. Its primary role is to store detailed unit cost center mappings for statistical reporting. The table is flagged as 'Obsolete' in the provided metadata, indicating it is part of a legacy data model that may have been superseded in later application versions or patches. It functions as a junction table, linking academic units (with specific versions) to the financial cost centers and subjects responsible for their delivery, including the proportional contribution of each center.
Key Information Stored
The table's columns are designed to capture the essential dimensions of unit cost allocation. The HESA_ST_UV_CC_ID serves as the unique, system-generated primary key for each record. The academic unit is identified by the combination of UNIT_CD and VERSION_NUMBER. The financial and subject dimensions are captured by COST_CENTRE and SUBJECT, respectively. A critical business attribute is the PROPORTION column, which stores the numeric value representing the fractional contribution (e.g., 0.5 for 50%) of the specified cost center and subject towards the total cost of the unit version. Standard WHO (Who, When, How) columns track audit information, and the ORG_ID supports multi-organization architecture (MOAC).
Common Use Cases and Queries
The primary use case is generating statutory HESA returns that require a breakdown of unit costs by financial and academic responsibility. Common queries involve aggregating proportions for a given unit or cost center. A typical reporting pattern would join this table to the unit definition table to pull descriptive unit names.
- Retrieve all cost center allocations for a specific unit:
SELECT UNIT_CD, VERSION_NUMBER, COST_CENTRE, SUBJECT, PROPORTION FROM IGS.IGS_HE_ST_UV_CC_ALL WHERE UNIT_CD = 'MATH101' AND VERSION_NUMBER = 1; - Verify total proportional allocation for a unit version sums to 1 (100%):
SELECT UNIT_CD, VERSION_NUMBER, SUM(PROPORTION) AS TOTAL_PROP FROM IGS.IGS_HE_ST_UV_CC_ALL GROUP BY UNIT_CD, VERSION_NUMBER HAVING SUM(PROPORTION) != 1; - Standard data extraction for interface or reporting:
SELECT HESA_ST_UV_CC_ID, UNIT_CD, VERSION_NUMBER, COST_CENTRE, SUBJECT, PROPORTION, CREATION_DATE FROM IGS.IGS_HE_ST_UV_CC_ALL WHERE ORG_ID = :p_org_id;
Related Objects
Based on the provided relationship data, this table has defined dependencies within the IGS schema. It is the child table in a foreign key relationship, ensuring referential integrity to the master unit version definition.
- Primary Key: The table is uniquely identified by the constraint
IGS_HE_ST_UV_CC_ALL_PKon theHESA_ST_UV_CC_IDcolumn. - Foreign Key (References): The table references
IGS.IGS_PS_UNIT_VER_ALLvia theUNIT_CDcolumn (and implicitlyVERSION_NUMBER), ensuring that every cost center record is associated with a valid, existing academic unit version. - Unique Indexes: Two unique indexes enforce business rules:
IGS_HE_ST_UV_CC_ALL_U1on the primary key andIGS_HE_ST_UV_CC_ALL_U2on the combination ofUNIT_CD,VERSION_NUMBER,COST_CENTRE, andSUBJECT, preventing duplicate allocations.
-
TABLE: IGS.IGS_HE_ST_UV_CC_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_HE_ST_UV_CC_ALL, object_name:IGS_HE_ST_UV_CC_ALL, status:VALID,
-
TABLE: IGS.IGS_HE_EN_SUSA_CC
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_HE_EN_SUSA_CC, object_name:IGS_HE_EN_SUSA_CC, status:VALID,
-
TABLE: IGS.IGS_HE_PROG_OU_CC
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_HE_PROG_OU_CC, object_name:IGS_HE_PROG_OU_CC, status:VALID,
-
TABLE: IGS.IGS_HE_ST_PROG_CC
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_HE_ST_PROG_CC, object_name:IGS_HE_ST_PROG_CC, status:VALID,
-
TABLE: IGS.IGS_HE_OU_CC
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_HE_OU_CC, object_name:IGS_HE_OU_CC, status:VALID,
-
TABLE: IGS.IGS_HE_ST_SPA_CC
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_HE_ST_SPA_CC, object_name:IGS_HE_ST_SPA_CC, status:VALID,
-
TABLE: IGS.IGS_HE_POOUS_OU_CC
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_HE_POOUS_OU_CC, object_name:IGS_HE_POOUS_OU_CC, status:VALID,
-
VIEW: APPS.PAY_AU_ASG_PAY_RUNS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_AU_ASG_PAY_RUNS_V, object_name:PAY_AU_ASG_PAY_RUNS_V, status:VALID,
-
View: IGS_HE_POOUS_OU_CC_V
12.2.2
product: IGS - Student System (Obsolete) , description: A new view to replace the existing cost center table at year of program level to allow users to record org unit details along with the cost center details for a year of program , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_HE_UNT_OU_CC
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_HE_UNT_OU_CC, object_name:IGS_HE_UNT_OU_CC, status:VALID,
-
View: IGS_HE_OU_CC_V
12.2.2
product: IGS - Student System (Obsolete) , description: A new view to hold HESA cost center, subject and proportion details defined for an organizational unit , implementation_dba_data: Not implemented in this database ,
-
View: IGS_HE_OU_CC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_OU_CC_V, object_name:IGS_HE_OU_CC_V, status:VALID, product: IGS - Student System , description: A new view to hold HESA cost center, subject and proportion details defined for an organizational unit , implementation_dba_data: APPS.IGS_HE_OU_CC_V ,
-
VIEW: APPS.IGS_HE_POOUS_OU_CC_V
12.1.1
-
View: IGS_HE_POOUS_OU_CC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_POOUS_OU_CC_V, object_name:IGS_HE_POOUS_OU_CC_V, status:VALID, product: IGS - Student System , description: A new view to replace the existing cost center table at year of program level to allow users to record org unit details along with the cost center details for a year of program , implementation_dba_data: APPS.IGS_HE_POOUS_OU_CC_V ,
-
VIEW: APPS.IGS_HE_OU_CC_V
12.1.1
-
APPS.IGS_HE_OU_CC_PKG dependencies on IGS_HE_OU_CC
12.1.1
-
View: IGS_HE_PROG_OU_CC_V
12.2.2
product: IGS - Student System (Obsolete) , description: A new view to replace the existing cost center table at program level to allow users to record org unit details along with the cost center details for a program/version , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_HE_EN_SUSA_CC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_EN_SUSA_CC_V, object_name:IGS_HE_EN_SUSA_CC_V, status:VALID,
-
APPS.IGS_HE_ST_SPA_CC_PKG dependencies on IGS_HE_ST_SPA_CC
12.1.1
-
View: IGS_HE_PROG_OU_CC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_PROG_OU_CC_V, object_name:IGS_HE_PROG_OU_CC_V, status:VALID, product: IGS - Student System , description: A new view to replace the existing cost center table at program level to allow users to record org unit details along with the cost center details for a program/version , implementation_dba_data: APPS.IGS_HE_PROG_OU_CC_V ,
-
View: IGS_HE_UNT_OU_CC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_UNT_OU_CC_V, object_name:IGS_HE_UNT_OU_CC_V, status:VALID, product: IGS - Student System , description: A new view to replace the existing cost center table at unit level to allow users to record org unit details along with the cost center details for a unit/version , implementation_dba_data: APPS.IGS_HE_UNT_OU_CC_V ,
-
VIEW: APPS.PAY_AU_ASG_PAY_RUNS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_AU_ASG_PAY_RUNS_V, object_name:PAY_AU_ASG_PAY_RUNS_V, status:VALID,
-
VIEW: APPS.IGS_HE_ST_UV_CC
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_ST_UV_CC, object_name:IGS_HE_ST_UV_CC, status:VALID,
-
APPS.IGS_HE_POOUS_OU_CC_PKG dependencies on IGS_HE_POOUS_OU_CC
12.1.1
-
VIEW: APPS.IGS_HE_PROG_OU_CC_V
12.1.1
-
View: IGS_HE_UNT_OU_CC_V
12.2.2
product: IGS - Student System (Obsolete) , description: A new view to replace the existing cost center table at unit level to allow users to record org unit details along with the cost center details for a unit/version , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_HE_PROG_OU_CC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_PROG_OU_CC_V, object_name:IGS_HE_PROG_OU_CC_V, status:VALID,
-
VIEW: APPS.IGS_HE_UNT_OU_CC_V
12.1.1
-
VIEW: APPS.IGS_HE_POOUS_OU_CC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_POOUS_OU_CC_V, object_name:IGS_HE_POOUS_OU_CC_V, status:VALID,
-
VIEW: APPS.IGS_HE_ST_PROG_CC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_ST_PROG_CC_V, object_name:IGS_HE_ST_PROG_CC_V, status:VALID,
-
APPS.IGS_HE_EXTRACT_FIELDS_PKG dependencies on IGS_HE_UNT_OU_CC
12.1.1
-
VIEW: APPS.IGS_HE_ST_SPA_CC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_ST_SPA_CC_V, object_name:IGS_HE_ST_SPA_CC_V, status:VALID,
-
VIEW: APPS.IGS_HE_OU_CC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_OU_CC_V, object_name:IGS_HE_OU_CC_V, status:VALID,
-
TABLE: IGS.IGS_HE_POOUS_CC_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_HE_POOUS_CC_ALL, object_name:IGS_HE_POOUS_CC_ALL, status:VALID,
-
VIEW: APPS.IGS_HE_ST_UNC_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_ST_UNC_DTLS_V, object_name:IGS_HE_ST_UNC_DTLS_V, status:VALID,
-
VIEW: APPS.IGS_HE_POOUS_CC
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_POOUS_CC, object_name:IGS_HE_POOUS_CC, status:VALID,
-
APPS.IGS_HE_PROG_OU_CC_PKG SQL Statements
12.1.1
-
View: IGS_HE_POUS_CC_DTL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_POUS_CC_DTL_V, object_name:IGS_HE_POUS_CC_DTL_V, status:VALID, product: IGS - Student System , description: Program Offering Cost Center Details , implementation_dba_data: APPS.IGS_HE_POUS_CC_DTL_V ,
-
APPS.IGS_HE_EXTRACT_FIELDS_PKG dependencies on IGS_PS_TCH_RESP
12.1.1
-
VIEW: APPS.IGS_HE_POUS_CC_DTL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_POUS_CC_DTL_V, object_name:IGS_HE_POUS_CC_DTL_V, status:VALID,
-
VIEW: APPS.IGS_HE_UNT_OU_CC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_UNT_OU_CC_V, object_name:IGS_HE_UNT_OU_CC_V, status:VALID,
-
Lookup Type: PROCESS_EVENT_TYPE
12.2.2
product: PER - Human Resources , meaning: PROCESS_EVENT_TYPE , description: Process Event Change Types ,
-
Lookup Type: PROCESS_EVENT_TYPE
12.1.1
product: PER - Human Resources , meaning: PROCESS_EVENT_TYPE , description: Process Event Change Types ,
-
View: IGS_HE_ST_UNC_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_ST_UNC_DTLS_V, object_name:IGS_HE_ST_UNC_DTLS_V, status:VALID, product: IGS - Student System , description: Hesa Unit Cost center Details , implementation_dba_data: APPS.IGS_HE_ST_UNC_DTLS_V ,
-
APPS.IGS_HE_OU_CC_PKG SQL Statements
12.1.1
-
APPS.IGS_HE_POOUS_OU_CC_PKG SQL Statements
12.1.1
-
View: IGS_HE_ST_SPA_CC_V
12.2.2
product: IGS - Student System (Obsolete) , description: Hesa Cost center details defined at Student Program Attempt Level , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_HE_ST_SPA_CC_PKG SQL Statements
12.1.1
-
APPS.IGS_HE_EN_SUSA_CC_PKG SQL Statements
12.1.1
-
View: IGS_HE_ST_SPA_CC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_ST_SPA_CC_V, object_name:IGS_HE_ST_SPA_CC_V, status:VALID, product: IGS - Student System , description: Hesa Cost center details defined at Student Program Attempt Level , implementation_dba_data: APPS.IGS_HE_ST_SPA_CC_V ,