Search Results oss_costcn
Overview
The view APPS.IGS_HE_EN_SUSA_CC_V is a reporting and integration object within the Oracle E-Business Suite student system, specifically the Higher Education (HE) module of Oracle Student System (OSS). It presents cost centre allocation records associated with student unit set attempts (SUSA), linking student enrolment data to institutional cost centre definitions. The view is defined over the base table IGS_HE_EN_SUSA_CC and enriches each row with descriptive values resolved from two additional lookup sources, IGS_HE_CODE_VALUES and IGS_PS_FLD_OF_STUDY_ALL.
Its primary role is to expose denormalised, human-readable data for reporting. Rather than requiring report authors to join to code lookup tables themselves, the view resolves the cost centre description and the field-of-study (subject) description inline. The column OSS_COSTCN is the code type used to look up cost centre descriptions in IGS_HE_CODE_VALUES, which corresponds directly to the user search term "oss_costcn". This makes the view a convenient source for costing, funding, and statutory return reporting.
Underlying Base Objects
The documented view definition references the following objects:
IGS_HE_EN_SUSA_CC— the primary driving table, aliased asA. This holds the HE student unit set attempt cost centre allocation records, including the cost centre, subject, proportion, and audit columns.IGS_HE_CODE_VALUES— referenced in a scalar subquery to resolveCOST_CENTRE_DESCusingCODE_TYPE = 'OSS_COSTCN'and matchingVALUE = A.COST_CENTRE. This provides the descriptive text for each cost centre code.IGS_PS_FLD_OF_STUDY_ALL— referenced in a scalar subquery to resolveSUBJECT_DESCby matchingFIELD_OF_STUDY = A.SUBJECT. This supplies the descriptive name of the field of study associated with the subject code.
The view does not persist data; it derives its content at query time from these base objects. The two descriptive columns are resolved via correlated scalar subqueries, so their values reflect the current state of the underlying lookup tables.
Key Columns
ROW_ID— theROWIDof the base table row, allowing unique identification.HE_SUSA_CC_ID— the primary identifier of the cost centre allocation record.PERSON_ID— the student (person) identifier to whom the allocation relates.COURSE_CD— the course code associated with the enrolment.UNIT_SET_CD— the unit set (programme/module grouping) code.SEQUENCE_NUMBER— a sequencing value for multiple allocation rows.COST_CENTRE— the raw cost centre code stored on the base record.COST_CENTRE_DESC— the resolved description fromIGS_HE_CODE_VALUES(code typeOSS_COSTCN).SUBJECT— the field-of-study code.SUBJECT_DESC— the resolved field-of-study description.PROPORTION— the proportion of the allocation attributed to this cost centre/subject combination.CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE,LAST_UPDATE_LOGIN— standard EBS audit columns.
Common Use Cases and Queries
The view is typically used for costing and funding reporting, verifying that cost centre allocations are correctly resolved to descriptions, and feeding downstream extracts. A representative query retrieves allocations for a student with their descriptive values:
SELECT person_id, course_cd, cost_centre, cost_centre_desc, subject_desc, proportion FROM apps.igs_he_en_susa_cc_v WHERE person_id = :p_person_id;- Reporting by cost centre:
SELECT cost_centre, cost_centre_desc, COUNT(*) FROM apps.igs_he_en_susa_cc_v GROUP BY cost_centre, cost_centre_desc; - Filtering invalid codes: rows where
COST_CENTRE_DESC IS NULLindicate a cost centre code that has no matchingOSS_COSTCNentry inIGS_HE_CODE_VALUES, which is a useful data-quality check.
Because the descriptive columns are scalar subqueries, large extracts may benefit from a direct join to the lookup tables for performance. The view remains the authoritative, documented interface for this cost centre allocation data.
-
VIEW: APPS.IGS_HE_EN_SUSA_CC_V
12.1.1
-
VIEW: APPS.IGS_HE_ST_UNC_DTLS_V
12.1.1
-
VIEW: APPS.IGS_HE_ST_SPA_CC_V
12.1.1
-
VIEW: APPS.IGS_HE_POUS_CC_DTL_V
12.1.1
-
VIEW: APPS.IGS_HE_POOUS_OU_CC_V
12.1.1
-
VIEW: APPS.IGS_HE_UNT_OU_CC_V
12.1.1
-
VIEW: APPS.IGS_HE_ST_PROG_CC_V
12.1.1
-
VIEW: APPS.IGSFV_ORG_HESA_COST_CENTRES
12.1.1
-
VIEW: APPS.IGSFV_UNIT_STAT_COST_CENTRES
12.1.1
-
VIEW: APPS.IGSFV_PROG_HESA_COST_CENTRES
12.1.1
-
VIEW: APPS.IGS_HE_OU_CC_V
12.1.1
-
VIEW: APPS.IGSFV_PRG_UK_STAT_COST_CENTRES
12.1.1
-
VIEW: APPS.IGSFV_ST_PROG_ATT_COST_CENTRES
12.1.1
-
VIEW: APPS.IGS_HE_PROG_OU_CC_V
12.1.1
-
VIEW: APPS.IGSFV_UNIT_HESA_COST_CENTRES
12.1.1
-
VIEW: APPS.IGSFV_ST_UNIT_SET_ATT_COST_CNT
12.1.1
-
View: IGS_HE_ST_UNC_DTLS_V
12.2.2
product: IGS - Student System (Obsolete) , description: Hesa Unit Cost center Details , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSFV_POOUS_HESA_COST_CENTRES
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 ,
-
VIEW: APPS.IGSFV_PRG_OFR_OPT_COST_CENTRES
12.1.1
-
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: 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 ,
-
View: 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, product: IGS - Student System , description: Hesa Cost center details defined at Program Level , implementation_dba_data: APPS.IGS_HE_ST_PROG_CC_V ,
-
View: IGSFV_UNIT_STAT_COST_CENTRES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_UNIT_STAT_COST_CENTRES, object_name:IGSFV_UNIT_STAT_COST_CENTRES, status:VALID, product: IGS - Student System , description: Full View for UK Statistics Unit Cost Center Details , implementation_dba_data: APPS.IGSFV_UNIT_STAT_COST_CENTRES ,
-
View: IGSFV_ORG_HESA_COST_CENTRES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ORG_HESA_COST_CENTRES, object_name:IGSFV_ORG_HESA_COST_CENTRES, status:VALID, product: IGS - Student System , description: Full business view to allow queries on Org Unit HESA Cost Center Details , implementation_dba_data: APPS.IGSFV_ORG_HESA_COST_CENTRES ,
-
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_POUS_CC_DTL_V
12.2.2
product: IGS - Student System (Obsolete) , description: Program Offering Cost Center Details , implementation_dba_data: Not implemented in this database ,
-
View: IGS_HE_ST_PROG_CC_V
12.2.2
product: IGS - Student System (Obsolete) , description: Hesa Cost center details defined at Program Level , implementation_dba_data: Not implemented in this database ,
-
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 ,
-
View: IGSFV_UNIT_STAT_COST_CENTRES
12.2.2
product: IGS - Student System (Obsolete) , description: Full View for UK Statistics Unit Cost Center Details , implementation_dba_data: Not implemented in this database ,
-
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 ,
-
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 ,
-
View: IGSFV_UNIT_HESA_COST_CENTRES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_UNIT_HESA_COST_CENTRES, object_name:IGSFV_UNIT_HESA_COST_CENTRES, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGSFV_UNIT_HESA_COST_CENTRES ,
-
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: IGSFV_ORG_HESA_COST_CENTRES
12.2.2
product: IGS - Student System (Obsolete) , description: Full business view to allow queries on Org Unit HESA Cost Center Details , implementation_dba_data: Not implemented in this database ,
-
View: 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, product: IGS - Student System , description: Hesa Cost center details defined at Student Unit Set Attempt Level , implementation_dba_data: APPS.IGS_HE_EN_SUSA_CC_V ,
-
View: IGS_HE_EN_SUSA_CC_V
12.2.2
product: IGS - Student System (Obsolete) , description: Hesa Cost center details defined at Student Unit Set Attempt Level , implementation_dba_data: Not implemented in this database ,
-
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: 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: IGSFV_PRG_UK_STAT_COST_CENTRES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PRG_UK_STAT_COST_CENTRES, object_name:IGSFV_PRG_UK_STAT_COST_CENTRES, status:VALID, product: IGS - Student System , description: Full View for UK Statistics Program Cost Center Details , implementation_dba_data: APPS.IGSFV_PRG_UK_STAT_COST_CENTRES ,
-
View: IGSFV_PROG_HESA_COST_CENTRES
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_UNIT_HESA_COST_CENTRES
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
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: IGSFV_ST_PROG_ATT_COST_CENTRES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ST_PROG_ATT_COST_CENTRES, object_name:IGSFV_ST_PROG_ATT_COST_CENTRES, status:VALID, product: IGS - Student System , description: Full business view to allow queries on Student Program Attempt Cost Center HESA details. , implementation_dba_data: APPS.IGSFV_ST_PROG_ATT_COST_CENTRES ,
-
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: 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: IGSFV_ST_UNIT_SET_ATT_COST_CNT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ST_UNIT_SET_ATT_COST_CNT, object_name:IGSFV_ST_UNIT_SET_ATT_COST_CNT, status:VALID, product: IGS - Student System , description: Full business view to allow queries on Student Unit Set Attempt Cost Center HESA Details. , implementation_dba_data: APPS.IGSFV_ST_UNIT_SET_ATT_COST_CNT ,
-
View: IGSFV_ST_PROG_ATT_COST_CENTRES
12.2.2
product: IGS - Student System (Obsolete) , description: Full business view to allow queries on Student Program Attempt Cost Center HESA details. , implementation_dba_data: Not implemented in this database ,
-
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: 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 ,