Search Results grade_earned
Overview
IGSFV_AD_ACT_STATS_HIGHSCH is a read-only Oracle EBS view owned by the APPS schema within the IGS (Student System) product. It exposes ACT statistical test component and category details for records whose statistic type is classified as High School. The view is designed for institutions that load ACT assessment data into Oracle Student System and need to report on high school-level statistical components, grade outcomes, and course status alongside the person identifier returned by ACT.
As a reporting and integration object, the view flattens the ACT statistics data into a set of columns that are directly usable in concurrent programs, BI Publisher reports, OBIEE/OTBI style extracts, and custom PL/SQL. It also carries the standard Oracle Forms multi-language "_LA:" pseudocolumns so that statistics category codes can be automatically translated to their meaningful lookup descriptions.
Underlying Base Objects
The view is defined over two objects in the APPS schema:
- IGS_AD_ACT_STATISTICS ACTST — the primary table holding ACT statistical test components, reporting year, test type and date, statistic category, numeric grade, course status, grade earned, and audit columns.
- IGS_PE_ALT_PERS_ID PEA — an outer-joined alternate person identifier table used to resolve the ACT identifier to a person.
The join is an outer join (the (+) operator on PEA), and the join condition uses a DECODE to strip a leading hyphen from ACT_IDENTIFIER before matching it against PEA.API_PERSON_ID. Only rows where STATISTIC_TYPE equals 'HIGH_SCHOOL' are returned, and the view is created WITH READ ONLY, so it cannot be used for DML.
Key Columns
- PERSON_IDENTIFIER — the person id derived from the matched ACT identifier.
- REPORTING_YEAR — the ACT reporting year for the statistic.
- ACT_IDENTIFIER — the ACT identifier, used as the linkage key to the alternate person id.
- TEST_TYPE, TEST_DATE_TXT — descriptive attributes of the test.
- STATISTIC_CATEGORY_CODE — the raw statistic category code, with translatable columns _LA:STATISTIC_CATEGORY and _LA:STATISTIC_CATEGORY_DESC.
- NUMERIC_GRADE, COURSE_STATUS, GRADE_EARNED — the numeric score, the course standing, and the grade awarded. GRADE_EARNED is the column most commonly searched for by users, since it holds the final performance outcome recorded against the high school ACT statistic.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE — standard audit tracking.
Common Use Cases and Queries
Typical scenarios include validating ACT high school grade loads, feeding downstream analytics, and pre-admission review. A representative query follows:
- Retrieve grade earned by identifier:
SELECT person_identifier, reporting_year, act_identifier, grade_earned, numeric_grade FROM igsfv_ad_act_stats_highsch WHERE act_identifier = :id; - Report all grades for a reporting year:
SELECT reporting_year, statistic_category_code, grade_earned FROM igsfv_ad_act_stats_highsch WHERE reporting_year = :yr; - Exclude blanks:
SELECT * FROM igsfv_ad_act_stats_highsch WHERE grade_earned IS NOT NULL;
Because the view returns only high school type statistics, queries should target this view rather than the base statistics table when high school filtering is required.
-
View: IGSFV_AD_ACT_STATS_HIGHSCH
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AD_ACT_STATS_HIGHSCH, object_name:IGSFV_AD_ACT_STATS_HIGHSCH, status:VALID, product: IGS - Student System , description: ACT Statistical Test Components and category details for type as High School , implementation_dba_data: APPS.IGSFV_AD_ACT_STATS_HIGHSCH ,
-
VIEW: APPS.IGSFV_AD_ACT_STATS_HIGHSCH
12.1.1
-
View: IGSBV_AD_ACT_STATS_HIGHSCH
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AD_ACT_STATS_HIGHSCH, object_name:IGSBV_AD_ACT_STATS_HIGHSCH, status:VALID, product: IGS - Student System , description: ACT Statistical Test Components and category details for type as High School , implementation_dba_data: APPS.IGSBV_AD_ACT_STATS_HIGHSCH ,
-
View: IGSFV_AD_ACT_STATS_HIGHSCH
12.2.2
product: IGS - Student System (Obsolete) , description: ACT Statistical Test Components and category details for type as High School , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_AD_ACT_STATS_HIGHSCH
12.2.2
product: IGS - Student System (Obsolete) , description: ACT Statistical Test Components and category details for type as High School , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSBV_AD_ACT_STATS_HIGHSCH
12.1.1
-
VIEW: APPS.IGSBV_AD_ACT_STATS_HIGHSCH
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AD_ACT_STATS_HIGHSCH, object_name:IGSBV_AD_ACT_STATS_HIGHSCH, status:VALID,
-
VIEW: APPS.IGSFV_AD_ACT_STATS_HIGHSCH
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AD_ACT_STATS_HIGHSCH, object_name:IGSFV_AD_ACT_STATS_HIGHSCH, status:VALID,
-
TABLE: IGS.IGS_AD_ACT_STATISTICS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_ACT_STATISTICS, object_name:IGS_AD_ACT_STATISTICS, 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'. ,