Search Results program_version_number
Overview
IGSBV_PRG_UK_STAT_COST_CENTRES is a read-only base view owned by the APPS schema in the Oracle E-Business Suite Student System (IGS) product family. It exposes United Kingdom statutory cost centre detail for academic programs, and is intended primarily to support HESA (Higher Education Statistics Agency) statutory returns and related regulatory reporting. The view is defined as a thin projection over the program cost centre entity and is declared WITH READ ONLY, meaning no DML is permitted against the view under any circumstances; all maintenance must be performed against the underlying base table.
Because the view carries no transformation logic, no joins, and no derivations, it functions as a stable public interface over a narrower physical table. It presents one row per program cost centre assignment. Downstream reports, extracts, and integration programs — particularly HESA submission files — can be written against this view rather than the base table, insulating them from internal column restructuring in IGS. The view does not appear in the ETRM 12.2.2 metadata with an explicit owner or documented referenced base objects, so column-level semantics must be inferred from the view text and standard IGS conventions.
Underlying Base Objects
The view is defined over a single base object: IGS_HE_ST_PROG_CC. Although the ETRM metadata lists no referenced base objects, the view text is unambiguous and states:
FROM IGS_HE_ST_PROG_CC PC WITH READ ONLY
The base table stores program cost centre records keyed by the surrogate identifier HE_PROG_CC_ID. The view renames this primary key to HESA_STATS_PROGRAM_CC_ID and prefixes the remaining business columns with PROGRAM_ to make the HESA reporting context explicit. The relationship is strictly one-to-one: every row in the view corresponds to exactly one row in IGS_HE_ST_PROG_CC, with no filtering predicate applied in the view definition. Consequently, the row count and cardinality of the view equal those of the base table, and any row-level security present on the base table is inherited if the view is queried directly by a user with privileges on the underlying object.
Key Columns
- HESA_STATS_PROGRAM_CC_ID — Surrogate primary key sourced from
HE_PROG_CC_ID; uniquely identifies the program cost centre record. - PROGRAM_CODE — Sourced from
COURSE_CD; identifies the program of study to which the cost centre assignment belongs. - PROGRAM_VERSION_NUMBER — Sourced from
VERSION_NUMBER; distinguishes successive versions of the same program code. This is the column most commonly sought when users search for the program version in UK statistics extracts, and it is the qualifier that makes (PROGRAM_CODE,PROGRAM_VERSION_NUMBER) a meaningful composite key. - PROGRAM_COST_CENTRE — Sourced from
COST_CENTRE; the UK statutory cost centre code (typically a three-character HESA cost centre value) assigned to the program. - PROGRAM_SUBJECT — Sourced from
SUBJECT; the subject classification associated with the cost centre line. - PROGRAM_COST_CENTRE_SUBJ_PROP — Sourced from
PROPORTION; the proportion of the program apportioned to that cost centre and subject combination. Values across a program normally sum to one. - Audit columns —
CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE; standard EBS WHO columns inherited unchanged from the base table.
Common Use Cases and Queries
Typical usage is in HESA statutory extracts, cost centre apportionment validation, and reconciliation of program subject splits for a given academic period. A representative query retrieving all cost centre splits for a program version is:
SELECT program_code, program_version_number, program_cost_centre, program_subject, program_cost_centre_subj_prop FROM apps.igsbv_prg_uk_stat_cost_centres WHERE program_code = :code AND program_version_number = :version;SELECT program_cost_centre, SUM(program_cost_centre_subj_prop) FROM apps.igsbv_prg_uk_stat_cost_centres GROUP BY program_cost_centre;— used to reconcile apportioned proportions by cost centre.SELECT COUNT(*) FROM apps.igsbv_prg_uk_stat_cost_centres WHERE program_cost_centre IS NULL;— used to identify incomplete statutory data ahead of a submission.
Because the view is read-only and unfiltered, it should not be relied upon for row-level authorisation; any restriction required by reporting consumers must be applied through the query predicate or through EBS grants and responsibilities on the base object.
-
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: 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_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: 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_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: 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: 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: 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: 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: 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: 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: 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: IGSBV_UK_PRG_OFR_OPT_UNIT_SETS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_UK_PRG_OFR_OPT_UNIT_SETS, object_name:IGSBV_UK_PRG_OFR_OPT_UNIT_SETS, status:VALID, product: IGS - Student System , description: Base View for Program Offering Option Unit Set HESA Details , implementation_dba_data: APPS.IGSBV_UK_PRG_OFR_OPT_UNIT_SETS ,
-
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_HIGH_EDU_PRG_STAGES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_HIGH_EDU_PRG_STAGES, object_name:IGSFV_HIGH_EDU_PRG_STAGES, status:VALID, product: IGS - Student System , description: This is a full 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.IGSFV_HIGH_EDU_PRG_STAGES ,
-
View: IGSFV_HESA_EXT_RUN_DAT_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_HESA_EXT_RUN_DAT_LINES, object_name:IGSFV_HESA_EXT_RUN_DAT_LINES, status:VALID, product: IGS - Student System , description: Full View for HESA extract data , implementation_dba_data: APPS.IGSFV_HESA_EXT_RUN_DAT_LINES ,
-
View: IGSFV_UK_PRG_OFR_OPT_ORG_UNITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_UK_PRG_OFR_OPT_ORG_UNITS, object_name:IGSFV_UK_PRG_OFR_OPT_ORG_UNITS, status:VALID, product: IGS - Student System , description: Full View for Program Offering Option Unit Set HESA Details - Organizations , implementation_dba_data: APPS.IGSFV_UK_PRG_OFR_OPT_ORG_UNITS ,
-
View: IGSFV_POOUS_HESA_COST_CENTRES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_POOUS_HESA_COST_CENTRES, object_name:IGSFV_POOUS_HESA_COST_CENTRES, status:VALID, product: IGS - Student System , description: Full business view to allow queries on Program HESA Cost Center Details , implementation_dba_data: APPS.IGSFV_POOUS_HESA_COST_CENTRES ,
-
View: IGSBV_PROGRAM_UK_STATISTICS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PROGRAM_UK_STATISTICS, object_name:IGSBV_PROGRAM_UK_STATISTICS, status:VALID, product: IGS - Student System , description: Base View for UK Statistics Program Details , implementation_dba_data: APPS.IGSBV_PROGRAM_UK_STATISTICS ,
-
View: IGS_PR_ACAD_PROGRAM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_ACAD_PROGRAM_V, object_name:IGS_PR_ACAD_PROGRAM_V, status:VALID, product: IGS - Student System , description: This view contains the details Student Program Attempts, containing statistics information including GPA and Credit Point figures. , implementation_dba_data: APPS.IGS_PR_ACAD_PROGRAM_V ,
-
View: IGSBV_ST_PROG_ATT_HESA_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_ST_PROG_ATT_HESA_DETAILS, object_name:IGSBV_ST_PROG_ATT_HESA_DETAILS, status:VALID, product: IGS - Student System , description: Base View for Student Program Attempt HESA Details , implementation_dba_data: APPS.IGSBV_ST_PROG_ATT_HESA_DETAILS ,
-
View: IGSBV_PGM_OFR_PAT_ADM_DT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PGM_OFR_PAT_ADM_DT, object_name:IGSBV_PGM_OFR_PAT_ADM_DT, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGSBV_PGM_OFR_PAT_ADM_DT ,
-
View: IGSFV_AV_ADVANCED_STANDING
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AV_ADVANCED_STANDING, object_name:IGSFV_AV_ADVANCED_STANDING, status:VALID, product: IGS - Student System , description: Describes advanced standing. , implementation_dba_data: APPS.IGSFV_AV_ADVANCED_STANDING ,
-
View: IGSFV_PGM_OFR_PAT_ADM_PERD
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PGM_OFR_PAT_ADM_PERD, object_name:IGSFV_PGM_OFR_PAT_ADM_PERD, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGSFV_PGM_OFR_PAT_ADM_PERD ,
-
View: IGSBV_PGM_OFR_PAT_ADM_PERD
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PGM_OFR_PAT_ADM_PERD, object_name:IGSBV_PGM_OFR_PAT_ADM_PERD, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGSBV_PGM_OFR_PAT_ADM_PERD ,
-
View: IGSBV_PGM_OFR_ADM_PAT_RESTRCTN
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PGM_OFR_ADM_PAT_RESTRCTN, object_name:IGSBV_PGM_OFR_ADM_PAT_RESTRCTN, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGSBV_PGM_OFR_ADM_PAT_RESTRCTN ,
-
View: IGSBV_AV_ADVANCED_STANDING
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AV_ADVANCED_STANDING, object_name:IGSBV_AV_ADVANCED_STANDING, status:VALID, product: IGS - Student System , description: Describs Advance Standings , implementation_dba_data: APPS.IGSBV_AV_ADVANCED_STANDING ,
-
View: IGSBV_AV_ADV_STND_UNIT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AV_ADV_STND_UNIT, object_name:IGSBV_AV_ADV_STND_UNIT, status:VALID, product: IGS - Student System , description: Describes a unit granted as advanced standing. , implementation_dba_data: APPS.IGSBV_AV_ADV_STND_UNIT ,
-
View: IGSBV_AV_ADV_STND_UNIT_LEVEL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AV_ADV_STND_UNIT_LEVEL, object_name:IGSBV_AV_ADV_STND_UNIT_LEVEL, status:VALID, product: IGS - Student System , description: Describes the number of advanced standing credit points granted to a student at a given level. , implementation_dba_data: APPS.IGSBV_AV_ADV_STND_UNIT_LEVEL ,
-
View: IGSFV_PGM_OFR_ADM_PAT_RESTRCTN
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PGM_OFR_ADM_PAT_RESTRCTN, object_name:IGSFV_PGM_OFR_ADM_PAT_RESTRCTN, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGSFV_PGM_OFR_ADM_PAT_RESTRCTN ,
-
View: IGSFV_PGM_OFR_PAT_ADM_DT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PGM_OFR_PAT_ADM_DT, object_name:IGSFV_PGM_OFR_PAT_ADM_DT, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGSFV_PGM_OFR_PAT_ADM_DT ,
-
View: IGSBV_HGR_ED_PR_TY_UNT_LEVELS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_HGR_ED_PR_TY_UNT_LEVELS, object_name:IGSBV_HGR_ED_PR_TY_UNT_LEVELS, status:VALID, product: IGS - Student System , description: This is the base 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.IGSBV_HGR_ED_PR_TY_UNT_LEVELS ,
-
View: IGSFV_PGM_OFR_PATTERN_ADM_PERD
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PGM_OFR_PATTERN_ADM_PERD, object_name:IGSFV_PGM_OFR_PATTERN_ADM_PERD, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGSFV_PGM_OFR_PATTERN_ADM_PERD ,
-
View: IGSBV_AS_SUA_REFERENCE_CODES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AS_SUA_REFERENCE_CODES, object_name:IGSBV_AS_SUA_REFERENCE_CODES, status:VALID, product: IGS - Student System , description: Student Unit Attempt Reference Codes , implementation_dba_data: APPS.IGSBV_AS_SUA_REFERENCE_CODES ,
-
View: IGSFV_AS_SUA_REFERENCE_CODES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AS_SUA_REFERENCE_CODES, object_name:IGSFV_AS_SUA_REFERENCE_CODES, status:VALID, product: IGS - Student System , description: Student Unit Attempt Reference Codes , implementation_dba_data: APPS.IGSFV_AS_SUA_REFERENCE_CODES ,
-
View: IGSFV_UK_PRG_OFR_OPT_UNIT_SETS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_UK_PRG_OFR_OPT_UNIT_SETS, object_name:IGSFV_UK_PRG_OFR_OPT_UNIT_SETS, status:VALID, product: IGS - Student System , description: Full View for Program Offering Option Unit Set HESA Details , implementation_dba_data: APPS.IGSFV_UK_PRG_OFR_OPT_UNIT_SETS ,
-
View: IGSFV_PROGRAM_UK_STATISTICS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PROGRAM_UK_STATISTICS, object_name:IGSFV_PROGRAM_UK_STATISTICS, status:VALID, product: IGS - Student System , description: Full View for UK Statistics Program Details , implementation_dba_data: APPS.IGSFV_PROGRAM_UK_STATISTICS ,
-
View: IGSBV_AS_SU_ATMPT_OUTCOMES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AS_SU_ATMPT_OUTCOMES, object_name:IGSBV_AS_SU_ATMPT_OUTCOMES, status:VALID, product: IGS - Student System , description: Describes a student unit attempt outcome , implementation_dba_data: APPS.IGSBV_AS_SU_ATMPT_OUTCOMES ,
-
View: IGSBV_AS_SU_ATMPT_AST_ITEMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AS_SU_ATMPT_AST_ITEMS, object_name:IGSBV_AS_SU_ATMPT_AST_ITEMS, status:VALID, product: IGS - Student System , description: Describes assessment item allocated to student unit attempt, either manually or by unit's default assessment items. , implementation_dba_data: APPS.IGSBV_AS_SU_ATMPT_AST_ITEMS ,
-
View: IGSFV_AV_ADV_STND_UNIT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AV_ADV_STND_UNIT, object_name:IGSFV_AV_ADV_STND_UNIT, status:VALID, product: IGS - Student System , description: Describes a unit granted as advanced standing. , implementation_dba_data: APPS.IGSFV_AV_ADV_STND_UNIT ,
-
View: IGSFV_AS_SU_ATMPT_OUTCOMES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AS_SU_ATMPT_OUTCOMES, object_name:IGSFV_AS_SU_ATMPT_OUTCOMES, status:VALID, product: IGS - Student System , description: Describes a student unit attempt outcome , implementation_dba_data: APPS.IGSFV_AS_SU_ATMPT_OUTCOMES ,
-
View: IGSFV_AV_ADV_STND_UNIT_LEVEL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AV_ADV_STND_UNIT_LEVEL, object_name:IGSFV_AV_ADV_STND_UNIT_LEVEL, status:VALID, product: IGS - Student System , description: Describes the number of advanced standing credit points granted to a student at a given level. , implementation_dba_data: APPS.IGSFV_AV_ADV_STND_UNIT_LEVEL ,
-
View: IGSFV_AS_SU_ATMPT_AST_ITEMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AS_SU_ATMPT_AST_ITEMS, object_name:IGSFV_AS_SU_ATMPT_AST_ITEMS, status:VALID, product: IGS - Student System , description: Describes assessment item allocated to student unit attempt, either manually or by unit's default assessment items. , implementation_dba_data: APPS.IGSFV_AS_SU_ATMPT_AST_ITEMS ,
-
View: IGSFV_ST_PROG_ATT_HESA_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ST_PROG_ATT_HESA_DETAILS, object_name:IGSFV_ST_PROG_ATT_HESA_DETAILS, status:VALID, product: IGS - Student System , description: Full View for Student Program Attempt HESA Details , implementation_dba_data: APPS.IGSFV_ST_PROG_ATT_HESA_DETAILS ,