Search Results igs_pr_acad_load_v
Overview
IGS_PR_ACAD_LOAD_V is a reporting view owned by the APPS schema in the Oracle E-Business Suite Student System (IGS) product family. It exposes the academic standing of a student program attempt within a specific load calendar, combining both period (term) and cumulative statistics. The view is documented as returning "the details of a Student Program Attempt within a Load Calendar with cumulative and period statistics." Its primary role is to give reporting, integration, and inquiry users a single denormalized source for GPA and credit-point measures without having to call the underlying IGS_PR_ACAD_DETAILS PL/SQL functions directly. This is particularly relevant for users searching on fields such as term_earned_cp, since that column is computed and surfaced by this view.
Underlying Base Objects
The view is defined over several base tables that supply the student program attempt, course version, and calendar context:
- HZ_PARTIES — party master, providing PARTY_NUMBER as PERSON_NUMBER.
- IGS_EN_STDNT_PS_ATT — the student program attempt, supplying PERSON_ID, COURSE_CD, and VERSION_NUMBER.
- IGS_PS_VER — the course version, joined on COURSE_CD and VERSION_NUMBER to yield COURSE_TYPE via the associated CRV alias.
- IGS_CA_INST — calendar instance, used twice (CI for the load calendar and CI2 for the academic calendar).
- IGS_CA_INST_REL, IGS_CA_TYPE, IGS_CA_STAT — calendar relationships, calendar type, and calendar status used to filter and qualify the calendars.
The GPA and credit-point columns are not stored values; they are derived at query time by calling functions in the IGS_PR_ACAD_DETAILS package (for example GET_LOAD_EARNED_CP, GET_LOAD_ATTEMPTED_CP, GET_LOAD_GPA, and their cumulative counterparts). The ETRM metadata does not list the view as having documented base objects, so the joins above should be confirmed against the deployed view text in the target environment.
Key Columns
- PERSON_NUMBER / PERSON_ID — identifier of the student.
- COURSE_CD / COURSE_TYPE — the program course and its type.
- LOAD_CAL_TYPE, LOAD_CI_SEQUENCE_NUMBER, LOAD_DESCRIPTION — the load calendar context.
- TERM_GPA, TERM_GPA_CP, TERM_GPA_QP — period GPA and its credit-point and quality-point contributions.
- TERM_EARNED_CP — credit points earned in the load period, the column referenced by the term_earned_cp search.
- TERM_ATTEMPTED_CP — credit points attempted in the period.
- CUM_GPA, CUM_GPA_CP, CUM_GPA_QP, CUM_EARNED_CP, CUM_ATTEMPTED_CP — the cumulative equivalents across the academic career.
ACAD_DESCRIPTION and ACAD_ALTERNATE_CODE describe the academic calendar instance (CI2), while LOAD_START_DT and LOAD_END_DT bound the load period.
Common Use Cases and Queries
Typical usage includes student academic transcripts, progression checks, and integrations that feed GPA or earned-credit analytics. A representative query for earned credit points in a load period is:
SELECT person_number, course_cd, load_cal_type, load_ci_sequence_number, term_earned_cp, term_attempted_cp, cum_earned_cp, cum_gpa FROM apps.igs_pr_acad_load_v WHERE person_number = :p_person;- Reporting cumulative earned credit points for a program:
SELECT person_number, course_cd, cum_earned_cp, cum_gpa FROM apps.igs_pr_acad_load_v ORDER BY person_number; - Progression or eligibility checks comparing TERM_EARNED_CP against TERM_ATTEMPTED_CP for a given load calendar.
Because the derived columns invoke PL/SQL functions per row, performance-sensitive extracts should restrict rows by person, course, or load calendar rather than scanning the full view. Access is normally granted through the APPS schema, and callers should validate any function-based columns against the target release (12.1.1 or 12.2.2) since the IGS_PR_ACAD_DETAILS package logic governs their return values.
-
View: IGS_PR_ACAD_LOAD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_ACAD_LOAD_V, object_name:IGS_PR_ACAD_LOAD_V, status:VALID, product: IGS - Student System , description: This view contains the details of a Student Program Attempt within a Load Calendar with cumulative and period statistics. , implementation_dba_data: APPS.IGS_PR_ACAD_LOAD_V ,
-
View: IGS_PR_ACAD_LOAD_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view contains the details of a Student Program Attempt within a Load Calendar with cumulative and period statistics. , implementation_dba_data: Not implemented in this database ,
-
SYNONYM: APPS.IGS_PS_PRG_UNIT_REL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_PS_PRG_UNIT_REL, status:VALID,
-
PACKAGE BODY: APPS.IGS_AS_TRNCMT_LGCY_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AS_TRNCMT_LGCY_PUB, status:VALID,
-
PACKAGE: APPS.IGS_PR_ACAD_DETAILS
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGS_PR_ACAD_DETAILS, status:VALID,
-
APPS.IGS_AS_TRNCMT_LGCY_PUB SQL Statements
12.1.1
-
VIEW: APPS.IGS_PR_ACAD_LOAD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_ACAD_LOAD_V, object_name:IGS_PR_ACAD_LOAD_V, status:VALID,
-
SYNONYM: APPS.IGS_CA_INST_REL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_CA_INST_REL, status:VALID,
-
SYNONYM: APPS.IGS_CA_STAT
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_CA_STAT, status:VALID,
-
VIEW: APPS.IGS_CA_TEACH_TO_LOAD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CA_TEACH_TO_LOAD_V, object_name:IGS_CA_TEACH_TO_LOAD_V, status:VALID,
-
SYNONYM: APPS.IGS_CA_TYPE
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_CA_TYPE, status:VALID,
-
VIEW: APPS.IGS_PS_VER
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_VER, object_name:IGS_PS_VER, status:VALID,
-
VIEW: APPS.IGS_PS_UNIT_VER
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_VER, object_name:IGS_PS_UNIT_VER, status:VALID,
-
APPS.IGS_AS_TRNCMT_LGCY_PUB dependencies on IGS_PR_ACAD_LOAD_V
12.1.1
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.IGS_CA_INST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CA_INST, object_name:IGS_CA_INST, status:VALID,
-
VIEW: APPS.IGS_EN_SU_ATTEMPT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_SU_ATTEMPT, object_name:IGS_EN_SU_ATTEMPT, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.IGS_AS_TRNCMT_LGCY_PUB
12.1.1
-
VIEW: APPS.IGS_EN_STDNT_PS_ATT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_STDNT_PS_ATT, object_name:IGS_EN_STDNT_PS_ATT, status:VALID,
-
APPS.IGS_AS_TRNCMT_LGCY_PUB dependencies on IGS_CA_INST
12.1.1
-
SYNONYM: APPS.HZ_PARTIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTIES, status:VALID,
-
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'. ,
-
12.1.1 DBA Data
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'. ,