Search Results college_choice
Overview
IGSFV_AD_ACT_ASSESSMENTS is a read-only Oracle EBS view owned by the APPS schema and defined over the Student Systems assessment tables. It consolidates assessment record data captured against the ACT standardized test identifier into a single, denormalized reporting structure. In Oracle Student Systems, the ACT assessment is one of several admissions test records that feed applicant and prospect data into the admissions pipeline. The view flattens the parent assessment row together with selected person alternate identifier information, producing one row per assessment record qualified by an ACT identifier.
The view is intended for reporting, extracts, and third-party interfacing rather than for transaction entry. Because the DDL is created WITH READ ONLY, no DML may be issued against it; any data maintenance must be performed against the underlying base table. The view is commonly used within EBS reporting layers, Discoverer worksheets, and custom interfaces where a stable, pre-joined projection of ACT assessment data is required. The local_identifier column, referenced by the search that surfaced this object, exposes the institutionally assigned local identifier associated with the assessment record.
Underlying Base Objects
The view is defined over two objects:
- IGS_AD_ACT_ASSESSMENTS (alias ACTAS) — the driving table, containing the ACT assessment rows themselves, including test type, test date, batch, biographical data, high school attributes, scale score totals, college choice, norms type, release information, and audit columns.
- IGS_PE_ALT_PERS_ID (alias PEA) — the alternate person identifier table, restricted by the predicate
PEA.PERSON_ID_TYPE(+) = 'ACTID'.
The join is written as an outer join (indicated by the (+) notation, which remains valid in EBS 12.1.1 and 12.2.2 for views not yet migrated to ANSI syntax). The join condition normalizes the ACT identifier by stripping a leading hyphen:
DECODE(SUBSTR(ACTAS.ACT_IDENTIFIER,1,1),'-',SUBSTR(ACTAS.ACT_IDENTIFIER,2), ACTAS.ACT_IDENTIFIER) = PEA.API_PERSON_ID (+)
This ensures that an ACT identifier stored with a leading hyphen prefix still resolves to the corresponding alternate person identifier record. Where no matching ACTID row exists, the outer join returns null for the person identifier columns, which causes PERSON_IDENTIFIER (aliased from PEA.PE_PERSON_ID) to be null.
Key Columns
- PERSON_IDENTIFIER — the person identifier resolved from
IGS_PE_ALT_PERS_IDfor the 'ACTID' identifier type; null if no alternate identifier exists. - REPORTING_YEAR, TEST_TYPE, TEST_DATE_TXT — assessment period and test classification data.
- ACT_IDENTIFIER, ACT_BATCH_ID, INTERFACE_TRANSFER_DATE — the external test identifier, the inbound batch, and the date the record was transferred through the interface.
- LOCAL_IDENTIFIER — the local identifier carried on the assessment row, typically the institution- or agency-assigned student reference used to reconcile the ACT record with the student's own record.
- Biographical columns — LAST_NAME, FIRST_NAME, MIDDLE_INITIAL, GENDER, and DATE_OF_BIRTH_TXT.
- Address columns — STREET_ADDRESS, CITY, STATE_CODE, STATE_ABBREVIATION, ZIP_CODE, HOME_PHONE.
- Academic and score columns — GRADE_LEVEL, HIGH_SCHOOL_CODE, HIGH_SCHOOL_AVERAGE, HIGH_SCHOOL_GRADUATION, SUM_OF_SCALE_SCORES, CORRECTED_REPORT_INDICATOR, COLLEGE_CHOICE, COLLEGE_CODE, RELEASE, NORMS_TYPE.
- Audit columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE.
Common Use Cases and Queries
Typical scenarios include reconciling inbound ACT assessment feeds against institutional local identifiers, producing admissions test score extracts, and validating that each assessment resolved to a person record. To list unresolved assessments, query for a null person identifier:
SELECT act_identifier, local_identifier, last_name, first_name FROM igsfv_ad_act_assessments WHERE person_identifier IS NULL;SELECT reporting_year, local_identifier, sum_of_scale_scores FROM igsfv_ad_act_assessments WHERE reporting_year = :year ORDER BY local_identifier;SELECT a.local_identifier, a.college_choice, a.corrected_report_indicator FROM igsfv_ad_act_assessments a WHERE a.interface_transfer_date >= :from_date;
All queries are read-only; no insert, update, or delete is permitted against the view.
-
VIEW: APPS.IGSFV_AD_ACT_ASSESSMENTS
12.1.1
-
View: IGSFV_AD_ACT_ASSESSMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AD_ACT_ASSESSMENTS, object_name:IGSFV_AD_ACT_ASSESSMENTS, status:VALID, product: IGS - Student System , description: ACT assessment details of persons with Reporting Year, Test Date and Test Type , implementation_dba_data: APPS.IGSFV_AD_ACT_ASSESSMENTS ,
-
View: IGSFV_AD_ACT_ASSESSMENTS
12.2.2
product: IGS - Student System (Obsolete) , description: ACT assessment details of persons with Reporting Year, Test Date and Test Type , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_AD_ACT_ASSESSMENTS
12.2.2
product: IGS - Student System (Obsolete) , description: ACT assessment details of persons with Reporting Year, Test Date and Test Type , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_AD_ACT_ASSESSMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AD_ACT_ASSESSMENTS, object_name:IGSBV_AD_ACT_ASSESSMENTS, status:VALID, product: IGS - Student System , description: ACT assessment details of persons with Reporting Year, Test Date and Test Type , implementation_dba_data: APPS.IGSBV_AD_ACT_ASSESSMENTS ,
-
VIEW: APPS.IGSBV_AD_ACT_ASSESSMENTS
12.1.1
-
VIEW: APPS.IGSBV_AD_ACT_ASSESSMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AD_ACT_ASSESSMENTS, object_name:IGSBV_AD_ACT_ASSESSMENTS, status:VALID,
-
TABLE: IGS.IGS_AD_ACT_ASSESSMENTS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_ACT_ASSESSMENTS, object_name:IGS_AD_ACT_ASSESSMENTS, status:VALID,
-
VIEW: APPS.IGSFV_AD_ACT_ASSESSMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AD_ACT_ASSESSMENTS, object_name:IGSFV_AD_ACT_ASSESSMENTS, 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'. ,