Search Results program_title
Overview
IGSBV_HIGH_EDU_PRG_GRP_MEMBERS is a read-only base view owned by the APPS schema in the Oracle E-Business Suite Student System (IGS) product family. It describes the programs that are members of a program grouping within the higher education data model. The view joins program membership records to program version definitions and program group definitions, exposing a denormalized result set that combines the program code, version number, membership group code, program title, and the descriptive text of the owning group.
The object is designated VALID and carries the implementation status of a base view, meaning it is intended as a reporting and integration layer rather than as a maintenance interface. Its WHERE clause is permanently bound, so consumers cannot modify the join semantics; the view is effectively a fixed projection over the partitioned IGS tables. This makes it a stable, low-risk data source for concurrent programs, BI Publisher reports, and inbound interface validation logic. In ETRM documentation the object is catalogued with a documented column list but no separately enumerated referenced base objects, so the authoritative join definition is the view text itself.
The program_title column, which is the term most frequently used in searches, is populated from the title attribute of the program version rather than from the program catalog, allowing reporting to distinguish versions of the same program by their published title. Because the view is read-only, no IGS DML is possible through it, and it should never be used as a substitute for the underlying enrollment or application tables.
Underlying Base Objects
Although the ETRM metadata records no referenced base objects, the view text identifies three source objects joined in a classic inner-join pattern:
- IGS_PS_GRP_MBR (aliased GRM) — the program group membership table, supplying COURSE_CD, VERSION_NUMBER, COURSE_GROUP_CD, and the standard WHO audit columns.
- IGS_PS_VER_ALL (aliased VE) — the program version view/table, supplying TITLE, which is aliased to PROGRAM_TITLE.
- IGS_PS_GRP_ALL (aliased GRA) — the program group definition, supplying DESCRIPTION, aliased to PROGRAM_GROUP_DESCRIPTION.
The join predicates require exact equality on COURSE_CD and VERSION_NUMBER between GRM and VE, and on COURSE_GROUP_CD between GRM and GRA. Because these are inner joins, a membership row survives only when both the program version and the program group exist in the respective ALL objects. The ALL suffix implies these sources are themselves union-based views over their _ALL and _T (translation) base tables, so the view resolves titles and descriptions from the session-appropriate language. No outer joins or inline subqueries are used, and the WITH READ ONLY clause guarantees that no DML will be accepted.
Consumers should expect the view to inherit the standard partitioning and security characteristics of the IGS program tables; the joining structure has no explicit organization or operating unit filter, so security must be applied by the calling product.
Key Columns
- PROGRAM_CODE — the course or program code (GRM.COURSE_CD), the primary identifier of the program in the membership record.
- PROGRAM_VERSION_NUMBER — the version of the program referenced by the membership, required for correct joins to version-specific data.
- PROGRAM_GROUP_CODE — the code of the grouping to which the program belongs.
- PROGRAM_TITLE — the descriptive title of the specific program version (VE.TITLE), the column of primary interest to report authors searching on program_title.
- PROGRAM_GROUP_DESCRIPTION — the long description of the owning group (GRA.DESCRIPTION).
- WHO columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, and LAST_UPDATE_DATE, inherited from the membership table and usable for audit and incremental extract logic.
Common Use Cases and Queries
Typical uses include generating lists of programs belonging to a grouping for prospectus or validation reporting, validating membership before opening enrollments, and extracting titles for display in interfaces.
List membership with titles:
- SELECT program_code, program_version_number, program_group_code, program_title FROM igsbv_high_edu_prg_grp_members ORDER BY program_group_code, program_code;
Search for a program by title:
- SELECT program_code, program_version_number, program_group_code, program_title FROM igsbv_high_edu_prg_grp_members WHERE UPPER(program_title) LIKE UPPER('%&SEARCH%');
Group listing with descriptions:
- SELECT program_group_code, program_group_description, COUNT(*) member_count FROM igsbv_high_edu_prg_grp_members GROUP BY program_group_code, program_group_description;
Incremental extract:
- SELECT program_code, program_title, last_update_date FROM igsbv_high_edu_prg_grp_members WHERE last_update_date >= :since_date;
Because the view is read-only and language-sensitive through IGS_PS_VER_ALL and IGS_PS_GRP_ALL, reports should run under the intended language session, and any changes to membership must be made against IGS_PS_GRP_MBR and its supporting tables rather than through this view.
-
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_PROG_CAL_OFFERINGS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PROG_CAL_OFFERINGS, object_name:IGSBV_PROG_CAL_OFFERINGS, status:VALID, product: IGS - Student System , description: This entity describes the offerings for a program calendar containing details of Program Code, calendar instance details and minimum / guaranteed assessment score. , implementation_dba_data: APPS.IGSBV_PROG_CAL_OFFERINGS ,
-
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: 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: IGS_PS_OCCUP_TITLES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_OCCUP_TITLES_V, object_name:IGS_PS_OCCUP_TITLES_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_OCCUP_TITLES_V ,
-
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_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_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_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_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: IGS_AD_KEY_ACAD_IND_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_KEY_ACAD_IND_V, object_name:IGS_AD_KEY_ACAD_IND_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_KEY_ACAD_IND_V ,
-
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_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: 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_AS_XSLISTSEP_ADI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_XSLISTSEP_ADI_V, object_name:IGS_AS_XSLISTSEP_ADI_V, status:VALID, product: IGS - Student System , description: Assessment Crosslisted Student List WebADI View , implementation_dba_data: APPS.IGS_AS_XSLISTSEP_ADI_V ,
-
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_HESA_ADMISSION_DETAIL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ST_HESA_ADMISSION_DETAIL, object_name:IGSFV_ST_HESA_ADMISSION_DETAIL, status:VALID, product: IGS - Student System , description: Full business view to allow queries on Student Admission Application HESA Details. , implementation_dba_data: APPS.IGSFV_ST_HESA_ADMISSION_DETAIL ,
-
View: IGS_AS_SLIST_ADI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SLIST_ADI_V, object_name:IGS_AS_SLIST_ADI_V, status:VALID, product: IGS - Student System , description: Assessment Student List WebADI View , implementation_dba_data: APPS.IGS_AS_SLIST_ADI_V ,
-
View: IGSFV_ST_PROG_ATT_UCAS_TARIFF
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ST_PROG_ATT_UCAS_TARIFF, object_name:IGSFV_ST_PROG_ATT_UCAS_TARIFF, status:VALID, product: IGS - Student System , description: Full business view to allow queries on Student Program Attempt UCAS Tariff HESA Details. , implementation_dba_data: APPS.IGSFV_ST_PROG_ATT_UCAS_TARIFF ,
-
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_PROG_CAL_OFFERINGS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PROG_CAL_OFFERINGS, object_name:IGSFV_PROG_CAL_OFFERINGS, status:VALID, product: IGS - Student System , description: This entity describes the offerings for a program calendar containing details of Program Code, calendar instance details and minimum / guaranteed assessment score. , implementation_dba_data: APPS.IGSFV_PROG_CAL_OFFERINGS ,
-
View: IGS_AD_RVGR_PROG_CD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_RVGR_PROG_CD_V, object_name:IGS_AD_RVGR_PROG_CD_V, status:VALID, product: IGS - Student System , description: View where all Application Review Group Include Exclude related information will be recorded for Program Of Study review profile group. , implementation_dba_data: APPS.IGS_AD_RVGR_PROG_CD_V ,
-
View: IGSBV_PROGRAM_OFFERINGS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PROGRAM_OFFERINGS, object_name:IGSBV_PROGRAM_OFFERINGS, status:VALID, product: IGS - Student System , description: This is a base view, which describes an offerings of a university program within a calendar type. , implementation_dba_data: APPS.IGSBV_PROGRAM_OFFERINGS ,
-
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: IGS_AS_XSLISTCOM_ADI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_XSLISTCOM_ADI_V, object_name:IGS_AS_XSLISTCOM_ADI_V, status:VALID, product: IGS - Student System , description: Assessment Crosslisted Student List WebADI View , implementation_dba_data: APPS.IGS_AS_XSLISTCOM_ADI_V ,
-
View: IGSBV_PR_COHORT_INST_RANKS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PR_COHORT_INST_RANKS, object_name:IGSBV_PR_COHORT_INST_RANKS, status:VALID, product: IGS - Student System , description: Stores Cohort instance details , implementation_dba_data: APPS.IGSBV_PR_COHORT_INST_RANKS ,
-
View: IGSFV_PROGRAM_OFFERINGS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PROGRAM_OFFERINGS, object_name:IGSFV_PROGRAM_OFFERINGS, status:VALID, product: IGS - Student System , description: This is a full view, which describes an offerings of a university program within a calendar type. , implementation_dba_data: APPS.IGSFV_PROGRAM_OFFERINGS ,
-
View: IGSBV_PR_STDNT_PRG_PROGRAMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PR_STDNT_PRG_PROGRAMS, object_name:IGSBV_PR_STDNT_PRG_PROGRAMS, status:VALID, product: IGS - Student System , description: Describes the programs a student will be suspended, expelled or excluded from when a student progression outcome is applied. , implementation_dba_data: APPS.IGSBV_PR_STDNT_PRG_PROGRAMS ,
-
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: IGSFV_STUD_PRG_PRE_ENROLLMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_STUD_PRG_PRE_ENROLLMENTS, object_name:IGSFV_STUD_PRG_PRE_ENROLLMENTS, status:VALID, product: IGS - Student System , description: This entity describes enrollment which will occur or has occurred for student program attempt , implementation_dba_data: APPS.IGSFV_STUD_PRG_PRE_ENROLLMENTS ,
-
View: IGSFV_STD_PRG_SPL_REQUIREMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_STD_PRG_SPL_REQUIREMENTS, object_name:IGSFV_STD_PRG_SPL_REQUIREMENTS, status:VALID, product: IGS - Student System , description: This entity describes a student's satisfaction of a special requirement within a nominated student program attempt. For example, first-aid certificate. , implementation_dba_data: APPS.IGSFV_STD_PRG_SPL_REQUIREMENTS ,
-
View: IGSBV_AS_ANONYMOUS_ID_PROGS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AS_ANONYMOUS_ID_PROGS, object_name:IGSBV_AS_ANONYMOUS_ID_PROGS, status:VALID, product: IGS - Student System , description: Holds the person with the assigned Anonymous ID for the Method PROGRAM. , implementation_dba_data: APPS.IGSBV_AS_ANONYMOUS_ID_PROGS ,
-
View: IGSFV_AS_ANONYMOUS_ID_PROGS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AS_ANONYMOUS_ID_PROGS, object_name:IGSFV_AS_ANONYMOUS_ID_PROGS, status:VALID, product: IGS - Student System , description: Holds the person with the assigned Anonymous ID for the Method PROGRAM. , implementation_dba_data: APPS.IGSFV_AS_ANONYMOUS_ID_PROGS ,
-
View: IGSBV_HIGHER_EDU_PRG_AWARDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_HIGHER_EDU_PRG_AWARDS, object_name:IGSBV_HIGHER_EDU_PRG_AWARDS, status:VALID, product: IGS - Student System , description: This is the base view which describes the award to students on completion of the program. The allowance has been made for zero to many awards per program. , implementation_dba_data: APPS.IGSBV_HIGHER_EDU_PRG_AWARDS ,
-
View: IGSBV_PR_STDNT_PR_OU
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PR_STDNT_PR_OU, object_name:IGSBV_PR_STDNT_PR_OU, status:VALID, product: IGS - Student System , description: Describes Student Progression Rule Check , implementation_dba_data: APPS.IGSBV_PR_STDNT_PR_OU ,
-
View: IGSFV_STUDENT_PRG_AWARD_AIMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_STUDENT_PRG_AWARD_AIMS, object_name:IGSFV_STUDENT_PRG_AWARD_AIMS, status:VALID, product: IGS - Student System , description: This view provides the information about the targeted awards for each student program attempt. , implementation_dba_data: APPS.IGSFV_STUDENT_PRG_AWARD_AIMS ,
-
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_STU_PRG_CNCTRN_ATTEMPT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_STU_PRG_CNCTRN_ATTEMPT, object_name:IGSBV_STU_PRG_CNCTRN_ATTEMPT, status:VALID, product: IGS - Student System , description: Describes student's attempt at program unit set , implementation_dba_data: APPS.IGSBV_STU_PRG_CNCTRN_ATTEMPT ,
-
View: IGSFV_HR_ED_PR_CATEGORIZATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_HR_ED_PR_CATEGORIZATIONS, object_name:IGSFV_HR_ED_PR_CATEGORIZATIONS, status:VALID, product: IGS - Student System , description: This is the full view which describes the categories that are applied to a program. There can be multiple categories for each program. , implementation_dba_data: APPS.IGSFV_HR_ED_PR_CATEGORIZATIONS ,
-
View: IGSBV_HR_ED_PR_CATEGORIZATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_HR_ED_PR_CATEGORIZATIONS, object_name:IGSBV_HR_ED_PR_CATEGORIZATIONS, status:VALID, product: IGS - Student System , description: This is the base view which describes the categories that are applied to a program. There can be multiple categories for each program. , implementation_dba_data: APPS.IGSBV_HR_ED_PR_CATEGORIZATIONS ,
-
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_PR_SDT_PR_RU_CK
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PR_SDT_PR_RU_CK, object_name:IGSFV_PR_SDT_PR_RU_CK, status:VALID, product: IGS - Student System , description: Describes Student Progression Rule Check , implementation_dba_data: APPS.IGSFV_PR_SDT_PR_RU_CK ,
-
View: IGSBV_PROG_CALENDAR_OFFERINGS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PROG_CALENDAR_OFFERINGS, object_name:IGSBV_PROG_CALENDAR_OFFERINGS, status:VALID, product: IGS - Student System , description: This is a base view , which describes the instances of a calendar type in that a particular program is on offer. , implementation_dba_data: APPS.IGSBV_PROG_CALENDAR_OFFERINGS ,
-
View: IGSBV_STUD_PRG_PRE_ENROLLMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_STUD_PRG_PRE_ENROLLMENTS, object_name:IGSBV_STUD_PRG_PRE_ENROLLMENTS, status:VALID, product: IGS - Student System , description: This entity describes enrollment which will occur or has occurred for student program attempt , implementation_dba_data: APPS.IGSBV_STUD_PRG_PRE_ENROLLMENTS ,
-
View: IGSBV_STUDENT_PRG_AWARD_AIMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_STUDENT_PRG_AWARD_AIMS, object_name:IGSBV_STUDENT_PRG_AWARD_AIMS, status:VALID, product: IGS - Student System , description: This view provides the information about the targeted awards for each student program attempt. , implementation_dba_data: APPS.IGSBV_STUDENT_PRG_AWARD_AIMS ,