Search Results hesa_prog_cc_id
Overview
IGSFV_PROG_HESA_COST_CENTRES is a read-only Oracle EBS view owned by the APPS schema and delivered as part of the IGS (Student System) product family. It presents Higher Education Statistics Agency (HESA) cost centre assignments for academic programmes, joining programme definitions to their organisational unit and cost centre coding. The view is designed for statutory HESA reporting, where institutions must return the apportionment of teaching activity across recognised cost centres. Because the view is defined WITH READ ONLY, it is intended purely for query and extraction, not for maintenance.
The user search term hesa_prog_cc_id corresponds directly to the HESA_PROG_CC_ID column, the primary surrogate identifier sourced from the base table IGS_HE_PROG_OU_CC. This identifier is the key reference used in integration extracts and downstream reporting pipelines.
Underlying Base Objects
The view is defined over two documented base objects:
- IGS_HE_PROG_OU_CC (alias PCC) — the driving table holding the HESA programme/organisation unit/cost centre relationship, including the cost centre code, subject, and proportion.
- IGS_PS_VER_ALL (alias PRG) — the programme version view supplying programme title, short title, abbreviation, and version details. The join is an outer join (
PRG.COURSE_CD(+) = PCC.COURSE_CD AND PRG.VERSION_NUMBER(+) = PCC.VERSION_NUMBER), so cost centre rows are retained even where no matching programme version exists.
Three scalar subqueries enrich the result set: HZ_PARTIES joined to IGS_PE_HZ_PARTIES resolves the organisational unit description; IGS_HE_CODE_VALUES supplies the cost centre description for code type OSS_COSTCN; and IGS_PS_FLD_OF_STUDY supplies the subject description.
Key Columns
- HESA_PROG_CC_ID — unique identifier for the programme cost centre record; the anchoring key for extracts.
- PROGRAM_CODE / PROGRAM_VERSION_NUMBER — the programme (course) code and academic version to which the cost centre applies.
- PROGRAM_TITLE, PROGRAM_SHORT_TITLE, PROGRAM_ABBREVIATION — descriptive programme attributes from IGS_PS_VER_ALL.
- ORG_UNIT_CODE / ORG_UNIT_DESC — the organisational unit responsible for the programme and its resolved party name.
- PROGRAM_COST_CENTRE / PROGRAM_COST_CENTRE_DESC — the HESA cost centre code and its decoded description.
- PROGRAM_SUBJ / PROGRAM_SUBJ_DESC — the field-of-study subject code and description.
- PROGRAM_COST_CENTRE_PROP — the proportion of activity attributed to the cost centre, essential for HESA apportionment.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE — standard audit columns.
Common Use Cases and Queries
Typical usage is HESA statutory returns, cost centre apportionment analysis, and data extracts feeding institutional data warehouses. A representative query retrieving the full cost centre profile for a programme:
SELECT hesa_prog_cc_id, program_code, program_version_number,
program_title, org_unit_desc, program_cost_centre,
program_cost_centre_desc, program_subj_desc,
program_cost_centre_prop
FROM igsfv_prog_hesa_cost_centres
WHERE program_code = :p_program_code;
To validate that cost centre proportions total correctly per programme version:
SELECT program_code, program_version_number,
SUM(program_cost_centre_prop) total_prop
FROM igsfv_prog_hesa_cost_centres
GROUP BY program_code, program_version_number
HAVING SUM(program_cost_centre_prop) <> 1;
Because IGSFV_PROG_HESA_COST_CENTRES is read-only and joins only seeded IGS and HZ objects, it can be queried safely in reporting schemas without risk of data modification.
-
View: IGSFV_PROG_HESA_COST_CENTRES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PROG_HESA_COST_CENTRES, object_name:IGSFV_PROG_HESA_COST_CENTRES, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGSFV_PROG_HESA_COST_CENTRES ,
-
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: IGSBV_PROG_HESA_COST_CENTRES
12.2.2
product: IGS - Student System (Obsolete) , description: Base business view to allow queries on Program HESA Cost Center Details , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_PROG_HESA_COST_CENTRES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PROG_HESA_COST_CENTRES, object_name:IGSBV_PROG_HESA_COST_CENTRES, status:VALID, product: IGS - Student System , description: Base business view to allow queries on Program HESA Cost Center Details , implementation_dba_data: APPS.IGSBV_PROG_HESA_COST_CENTRES ,
-
VIEW: APPS.IGSBV_PROG_HESA_COST_CENTRES
12.1.1
-
VIEW: APPS.IGSFV_PROG_HESA_COST_CENTRES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PROG_HESA_COST_CENTRES, object_name:IGSFV_PROG_HESA_COST_CENTRES, status:VALID,
-
VIEW: APPS.IGSFV_PROG_HESA_COST_CENTRES
12.1.1
-
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,
-
View: IGSFV_PROG_HESA_COST_CENTRES
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
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 ,
-
Table: 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, product: IGS - Student System , description: A new table 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: IGS.IGS_HE_PROG_OU_CC ,
-
VIEW: APPS.IGS_HE_PROG_OU_CC_V
12.1.1
-
Table: IGS_HE_PROG_OU_CC
12.2.2
product: IGS - Student System (Obsolete) , description: A new table 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.IGSBV_PROG_HESA_COST_CENTRES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PROG_HESA_COST_CENTRES, object_name:IGSBV_PROG_HESA_COST_CENTRES, status:VALID,
-
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,
-
APPS.IGS_HE_PROG_OU_CC_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_HE_PROG_OU_CC_PKG
12.1.1
-
APPS.IGS_HE_PROG_OU_CC_PKG dependencies on IGS_HE_PROG_OU_CC
12.1.1
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,