Search Results program_version_number
Overview
IGSBV_PROG_HESA_COST_CENTRES is a base business view within the Oracle E-Business Suite Student System (IGS) product family. It exposes Program HESA (Higher Education Statistics Agency) Cost Center detail records, providing a denormalized, read-only projection of the relationship between academic programs and the organizational cost centers to which they are attributed for statutory HESA reporting purposes. The view allows queries on Program HESA Cost Center Details and is documented as a base business view, meaning it is intended to serve as a foundational data source for downstream reporting views, concurrent programs, and extracts rather than as an end-user maintenance screen. In ETRM 12.2.2 documentation, the object is flagged as Obsolete, and the implementation notes state that it is not implemented in the documented database. The view text carries a WITH READ ONLY clause, enforcing that consumers can only query the data and cannot perform DML through the view.
Underlying Base Objects
The view is defined over a single underlying base table, IGS_HE_PROG_OU_CC, aliased as PCC in the view text. No additional referenced base objects are documented for this view in the ETRM metadata. The naming convention of the base table indicates its purpose: IGS (Student System), HE (Higher Education), PROG (Program), OU (Organizational Unit), and CC (Cost Centre). Each row in the base table represents the allocation of a program to one or more organizational units and cost centers, with a proportion indicating the share of the program attributed to each combination. Because the view selects directly from this table without joins, the columns of the view are essentially a renamed and stable interface over the underlying table, insulating dependent objects from physical column names such as COURSE_CD and ORG_UNIT_CD.
Key Columns
The view exposes a set of columns that identify the allocation and its audit attributes. Of particular relevance to the user's search on "program_code" is the COURSE_CD column from the base table, which is surfaced through the view as PROGRAM_CODE. This is the code identifying the academic program (course) to which the HESA cost center allocation applies.
- HESA_PROG_CC_ID — Surrogate primary key from IGS_HE_PROG_OU_CC uniquely identifying each program, organizational unit, and cost center allocation record.
- PROGRAM_CODE — The program (course) code, aliased from COURSE_CD, identifying the academic program.
- PROGRAM_VERSION_NUMBER — Version of the program record, supporting versioned program definitions.
- ORG_UNIT_CODE — The organizational unit (aliased from ORG_UNIT_CD) associated with the allocation.
- PROGRAM_COST_CENTRE — The HESA cost center code to which the program is attributed.
- PROGRAM_SUBJ — The subject classification associated with the program cost center allocation.
- PROGRAM_COST_CENTRE_PROP — The proportion of the program attributed to this cost center, typically expressed as a fraction or percentage.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE — Standard EBS audit columns recording row creation and modification.
Common Use Cases and Queries
The principal use case for this view is extracting or reporting program-to-cost-center allocations for HESA statutory returns and internal costing analysis. A reporting user searching by program code would typically filter on PROGRAM_CODE to retrieve all cost center splits for a specific program. A representative query is:
SELECT PROGRAM_CODE, PROGRAM_VERSION_NUMBER, ORG_UNIT_CODE, PROGRAM_COST_CENTRE, PROGRAM_SUBJ, PROGRAM_COST_CENTRE_PROP FROM IGSBV_PROG_HESA_COST_CENTRES WHERE PROGRAM_CODE = :program_code;— retrieves the cost center allocation profile for a given program.SELECT PROGRAM_COST_CENTRE, SUM(PROGRAM_COST_CENTRE_PROP) FROM IGSBV_PROG_HESA_COST_CENTRES GROUP BY PROGRAM_COST_CENTRE;— aggregates proportions to validate that allocations across programs reconcile to expected totals.SELECT DISTINCT PROGRAM_CODE FROM IGSBV_PROG_HESA_COST_CENTRES WHERE PROGRAM_COST_CENTRE = :cost_centre;— lists all programs attributed to a particular cost center.
Because the view is read-only and documented as obsolete and not implemented in the reference database, consumers on 12.1.1 or 12.2.2 environments where it is absent should verify availability before depending on it in custom concurrent programs or extracts, and should anticipate that replacement functionality may exist elsewhere in the Student System data model.
-
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: IGSFV_HIGH_EDU_PRG_GRP_MEMBERS
12.2.2
product: IGS - Student System (Obsolete) , description: This is a full view, which describes the programs that are members in a program grouping. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSBV_PRG_OFR_OPT_COST_CENTRES
12.1.1
-
View: IGSBV_UK_PRG_OFR_OPT_ORG_UNITS
12.2.2
product: IGS - Student System (Obsolete) , description: Base View for Program Offering Option Unit Set HESA Details - Organizations , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_HIGH_EDU_PRG_STAGES
12.2.2
product: IGS - Student System (Obsolete) , description: This is a base view, which describes program stages within a program version that are represented by a code. These stages are evaluated through relationships to rules within the rules sub-system and are measured through progression. , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_PRG_UK_STAT_COST_CENTRES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PRG_UK_STAT_COST_CENTRES, object_name:IGSBV_PRG_UK_STAT_COST_CENTRES, status:VALID, product: IGS - Student System , description: Base View for UK Statistics Program Cost Center Details , implementation_dba_data: APPS.IGSBV_PRG_UK_STAT_COST_CENTRES ,
-
View: IGSFV_HGR_ED_PR_TY_UNT_LEVELS
12.2.2
product: IGS - Student System (Obsolete) , description: This is the full view which describes the level of a unit within a particular university program type. This value will override the default value stored against the unit. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSBV_PRG_UK_STAT_COST_CENTRES
12.1.1
-
View: IGSBV_HIGH_EDU_PRG_GRP_MEMBERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_HIGH_EDU_PRG_GRP_MEMBERS, object_name:IGSBV_HIGH_EDU_PRG_GRP_MEMBERS, status:VALID, product: IGS - Student System , description: This is a base view, which describes the programs that are members in a program grouping. , implementation_dba_data: APPS.IGSBV_HIGH_EDU_PRG_GRP_MEMBERS ,
-
View: IGSBV_PRG_OFR_OPT_COST_CENTRES
12.2.2
product: IGS - Student System (Obsolete) , description: Base View for Program Offering Option Unit Set HESA Details - Cost Center Details , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSFV_HIGH_EDU_PRG_REFERENCES
12.1.1
-
View: IGSBV_UK_PRG_OFR_OPT_UNIT_SETS
12.2.2
product: IGS - Student System (Obsolete) , description: Base View for Program Offering Option Unit Set HESA Details , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_PROGRAM_UK_STATISTICS
12.2.2
product: IGS - Student System (Obsolete) , description: Base View for UK Statistics Program Details , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_PRG_UK_STAT_COST_CENTRES
12.2.2
product: IGS - Student System (Obsolete) , description: Base View for UK Statistics Program Cost Center Details , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_PRG_UK_STAT_COST_CENTRES
12.2.2
product: IGS - Student System (Obsolete) , description: Full View for UK Statistics Program Cost Center Details , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_POOUS_HESA_COST_CENTRES
12.2.2
product: IGS - Student System (Obsolete) , description: Base business view to allow queries on Program Offering Option Unit Set HESA Cost Center Details , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSFV_HIGH_EDU_PRG_GRP_MEMBERS
12.1.1
-
View: IGSBV_HIGH_EDU_PRG_GRP_MEMBERS
12.2.2
product: IGS - Student System (Obsolete) , description: This is a base view, which describes the programs that are members in a program grouping. , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_UK_PRG_OFR_OPT_ORG_UNITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_UK_PRG_OFR_OPT_ORG_UNITS, object_name:IGSBV_UK_PRG_OFR_OPT_ORG_UNITS, status:VALID, product: IGS - Student System , description: Base View for Program Offering Option Unit Set HESA Details - Organizations , implementation_dba_data: APPS.IGSBV_UK_PRG_OFR_OPT_ORG_UNITS ,
-
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.IGSBV_HIGH_EDU_PRG_REFERENCES
12.1.1
-
View: IGSBV_HIGH_EDU_PRG_OWNERSHIPS
12.2.2
product: IGS - Student System (Obsolete) , description: This is a base view, which describes the organizational units which own a program and the percentage of ownership division. , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_HIGH_EDU_PRG_REFERENCES
12.2.2
product: IGS - Student System (Obsolete) , description: This is a base view, which describes a reference code or codes that relates to the program. , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_PRG_OFR_OPT_COST_CENTRES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PRG_OFR_OPT_COST_CENTRES, object_name:IGSBV_PRG_OFR_OPT_COST_CENTRES, status:VALID, product: IGS - Student System , description: Base View for Program Offering Option Unit Set HESA Details - Cost Center Details , implementation_dba_data: APPS.IGSBV_PRG_OFR_OPT_COST_CENTRES ,
-
View: IGSBV_HIGH_EDU_PRG_OWNERSHIPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_HIGH_EDU_PRG_OWNERSHIPS, object_name:IGSBV_HIGH_EDU_PRG_OWNERSHIPS, status:VALID, product: IGS - Student System , description: This is a base view, which describes the organizational units which own a program and the percentage of ownership division. , implementation_dba_data: APPS.IGSBV_HIGH_EDU_PRG_OWNERSHIPS ,
-
View: IGSFV_HGR_ED_PR_TY_UNT_LEVELS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_HGR_ED_PR_TY_UNT_LEVELS, object_name:IGSFV_HGR_ED_PR_TY_UNT_LEVELS, status:VALID, product: IGS - Student System , description: This is the full view which describes the level of a unit within a particular university program type. This value will override the default value stored against the unit. , implementation_dba_data: APPS.IGSFV_HGR_ED_PR_TY_UNT_LEVELS ,
-
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: APPS.IGSBV_HIGH_EDU_PRG_STAGES
12.1.1
-
View: IGSFV_PRG_OFR_OPT_COST_CENTRES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PRG_OFR_OPT_COST_CENTRES, object_name:IGSFV_PRG_OFR_OPT_COST_CENTRES, status:VALID, product: IGS - Student System , description: Full View for Program Offering Option Unit Set HESA Details - Cost Center Details , implementation_dba_data: APPS.IGSFV_PRG_OFR_OPT_COST_CENTRES ,
-
VIEW: APPS.IGSBV_HIGH_EDU_PRG_GRP_MEMBERS
12.1.1
-
View: IGSBV_HESA_EXT_RUN_DAT_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_HESA_EXT_RUN_DAT_LINES, object_name:IGSBV_HESA_EXT_RUN_DAT_LINES, status:VALID, product: IGS - Student System , description: Base View for HESA extract data , implementation_dba_data: APPS.IGSBV_HESA_EXT_RUN_DAT_LINES ,
-
View: IGSFV_HIGH_EDU_PRG_REFERENCES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_HIGH_EDU_PRG_REFERENCES, object_name:IGSFV_HIGH_EDU_PRG_REFERENCES, status:VALID, product: IGS - Student System , description: This is a full view, which describes a reference code or codes that relates to the program. , implementation_dba_data: APPS.IGSFV_HIGH_EDU_PRG_REFERENCES ,
-
View: IGSFV_HIGH_EDU_PRG_GRP_MEMBERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_HIGH_EDU_PRG_GRP_MEMBERS, object_name:IGSFV_HIGH_EDU_PRG_GRP_MEMBERS, status:VALID, product: IGS - Student System , description: This is a full view, which describes the programs that are members in a program grouping. , implementation_dba_data: APPS.IGSFV_HIGH_EDU_PRG_GRP_MEMBERS ,
-
VIEW: APPS.IGSBV_HIGH_EDU_PRG_OWNERSHIPS
12.1.1
-
VIEW: APPS.IGSBV_UK_PRG_OFR_OPT_ORG_UNITS
12.1.1
-
View: IGSFV_HIGH_EDU_PRG_REFERENCES
12.2.2
product: IGS - Student System (Obsolete) , description: This is a full view, which describes a reference code or codes that relates to the program. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSFV_HGR_ED_PR_TY_UNT_LEVELS
12.1.1
-
View: IGSBV_HIGH_EDU_PRG_REFERENCES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_HIGH_EDU_PRG_REFERENCES, object_name:IGSBV_HIGH_EDU_PRG_REFERENCES, status:VALID, product: IGS - Student System , description: This is a base view, which describes a reference code or codes that relates to the program. , implementation_dba_data: APPS.IGSBV_HIGH_EDU_PRG_REFERENCES ,
-
VIEW: APPS.IGSFV_HIGH_EDU_PRG_OWNERSHIPS
12.1.1
-
View: IGSBV_HESA_EXT_RUN_DAT_LINES
12.2.2
product: IGS - Student System (Obsolete) , description: Base View for HESA extract data , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSFV_HIGH_EDU_PRG_STAGES
12.1.1
-
View: IGSFV_HIGH_EDU_PRG_OWNERSHIPS
12.2.2
product: IGS - Student System (Obsolete) , description: This is a full view, which describes the organizational units which own a program and the percentage of ownership division. , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_HIGH_EDU_PRG_OWNERSHIPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_HIGH_EDU_PRG_OWNERSHIPS, object_name:IGSFV_HIGH_EDU_PRG_OWNERSHIPS, status:VALID, product: IGS - Student System , description: This is a full view, which describes the organizational units which own a program and the percentage of ownership division. , implementation_dba_data: APPS.IGSFV_HIGH_EDU_PRG_OWNERSHIPS ,
-
View: IGSBV_POOUS_HESA_COST_CENTRES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_POOUS_HESA_COST_CENTRES, object_name:IGSBV_POOUS_HESA_COST_CENTRES, status:VALID, product: IGS - Student System , description: Base business view to allow queries on Program Offering Option Unit Set HESA Cost Center Details , implementation_dba_data: APPS.IGSBV_POOUS_HESA_COST_CENTRES ,
-
View: IGSBV_HIGH_EDU_PRG_STAGES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_HIGH_EDU_PRG_STAGES, object_name:IGSBV_HIGH_EDU_PRG_STAGES, status:VALID, product: IGS - Student System , description: This is a base view, which describes program stages within a program version that are represented by a code. These stages are evaluated through relationships to rules within the rules sub-system and are measured through progression. , implementation_dba_data: APPS.IGSBV_HIGH_EDU_PRG_STAGES ,
-
VIEW: APPS.IGSBV_UK_PRG_OFR_OPT_UNIT_SETS
12.1.1
-
VIEW: APPS.IGSBV_HIGH_EDU_PRG_GRP_MEMBERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_HIGH_EDU_PRG_GRP_MEMBERS, object_name:IGSBV_HIGH_EDU_PRG_GRP_MEMBERS, status:VALID,
-
View: IGSFV_PRG_OFR_OPT_COST_CENTRES
12.2.2
product: IGS - Student System (Obsolete) , description: Full View for Program Offering Option Unit Set HESA Details - Cost Center Details , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSBV_HESA_EXT_RUN_DAT_LINES
12.1.1