Search Results numeric_grade
Overview
APPS.IGSFV_AD_ACT_STATS_HIGHSCH is a read-only Oracle EBS view that exposes high school admissions test statistics maintained in the Admissions module of Oracle Student System (the IGS product family). The view is a filtered presentation of the IGS_AD_ACT_STATISTICS table, restricted to rows where STATISTIC_TYPE equals 'HIGH_SCHOOL'. It consolidates admissions test data — reporting year, ACT/test identifier, test type, test date, statistic category, and both numeric and earned grades — into a single reporting surface suitable for admissions evaluation, prospect tracking, and integration extracts.
The "V" in the view name (IGSFV) and the WITH READ ONLY clause confirm that this object is intended strictly for query and reporting. It is not a maintenance surface; data must be inserted or updated through the underlying admissions tables or their APIs. Because the view joins person-identity data, it supports linkage of test statistics to a person record, making it useful for student/prospect reporting and downstream integration.
Underlying Base Objects
Although the ETRM metadata lists no documented base objects, the view text reveals its two source tables:
- IGS_AD_ACT_STATISTICS (alias ACTST) — the primary admissions statistics table, filtered on
ACTST.STATISTIC_TYPE = 'HIGH_SCHOOL'. - IGS_PE_ALT_PERS_ID (alias PEA) — the alternate person identifier table, joined via an outer join (
PEA.API_PERSON_ID(+) = ...) restricted toPEA.PERSON_ID_TYPE(+) = 'ACTID'.
The join matches the test identifier (ACT_IDENTIFIER) against the alternate person identifier, after stripping a leading hyphen via DECODE(SUBSTR(...),'-',SUBSTR(...,2),...). Because it is an outer join, statistics rows without a matching ACTID identifier are retained with a NULL PERSON_IDENTIFIER. No other base objects are documented; derived columns such as _LA: attributes are lookup references resolved by the application layer rather than additional tables.
Key Columns
- PERSON_IDENTIFIER (PEA.PE_PERSON_ID) — the person's internal identifier; NULL when no ACTID match exists.
- REPORTING_YEAR — the academic/reporting year the statistic belongs to.
- ACT_IDENTIFIER — the admissions test identifier; a leading hyphen is significant for the join logic.
- TEST_TYPE — classification of the test.
- TEST_DATE_TXT — the test date held in text form.
- STATISTIC_CATEGORY_CODE — code for the statistic category, resolved through the IGS_LOOKUP_VALUES lookup type
ACT_STATISTIC_CATEGORY(the_LA:STATISTIC_CATEGORYand_LA:STATISTIC_CATEGORY_DESCcolumns expose lookup MEANING and DESCRIPTION). - NUMERIC_GRADE — the numerical grade value for the statistic; directly relevant to the search term "numeric_grade" and central to score-based analysis.
- COURSE_STATUS and GRADE_EARNED — completion status and grade achieved.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE — standard audit columns.
Common Use Cases and Queries
Typical uses include admissions score review, prospect population analysis by reporting year, and extracts that must reconcile numeric grades against earned grades. A representative query retrieving numeric grades for a given person:
SELECT person_identifier,
reporting_year,
act_identifier,
statistic_category_code,
numeric_grade,
grade_earned
FROM apps.igsfv_ad_act_stats_highsch
WHERE numeric_grade IS NOT NULL
ORDER BY reporting_year, act_identifier;
Analysts frequently aggregate statistics by reporting year or filter by the resolved lookup meaning via the _LA columns. Because the object is read-only, all such queries are safe for concurrent reporting and integration consumption.
-
VIEW: APPS.IGSFV_AD_ACT_STATS_HIGHSCH
12.1.1
-
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.IGSBV_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
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'. ,