Search Results act_statistic_category
Overview
IGSFV_AD_ACT_STATS_TEST is a read-only Oracle EBS view in the APPS schema that exposes ACT (American College Testing) admission test statistics recorded against person records in the Oracle Student System / Recruiting and Admissions module. The view is defined with the WITH READ ONLY clause, meaning it is intended strictly for query, reporting, and integration consumption rather than for DML. Its role is to flatten the ACT test statistics stored on the base entity IGS_AD_ACT_STATISTICS into a person-centric, denormalized result set suitable for reporting on standardized admission test performance.
The view name suggests it is a "test" or development-phase variant of the production ACT statistics view (the _TEST suffix). The user search term act_statistic_category is directly relevant: the view joins the ACT_STATISTIC_CATEGORY lookup type to resolve the meaning and description of each statistic category, making the coded category values human-readable in reports.
Underlying Base Objects
The documented view text references two base tables:
- IGS_AD_ACT_STATISTICS (alias ACTST) — the primary fact table holding ACT test statistics. The view filters this table to rows where
STATISTIC_TYPE = 'TEST'. - IGS_PE_ALT_PERS_ID (alias PEA) — the alternate person identifier table, joined with an outer join (
(+)) on person identifier type'ACTID'to resolve the ACT identifier back to the internalPE_PERSON_ID.
Two additional tables appear inside a scalar subquery used to derive SEGMENT_GROUP: IGS_LOOKUP_VALUES (alias LKP) and IGS_AD_TEST_SEGMENTS (alias TSG). These are correlated within the SELECT list rather than joined at the top level. The ETRM metadata lists no separately documented "referenced base objects," so the base object relationships are inferred from the embedded view SQL.
Key Columns
- PERSON_IDENTIFIER — the internal
PE_PERSON_IDof the person the statistic belongs to. - SEGMENT_GROUP — derived via the correlated subquery, mapping the statistic category and test type to a test segment group.
- REPORTING_YEAR, ACT_IDENTIFIER, TEST_TYPE, TEST_DATE_TXT — identifying context for each ACT test record.
TEST_TYPEvalues decode to labels such as ACT-DANTES, ACT-INTERNATIONAL, ACT-INSTITUTION, ACT-RESIDUAL, ACT-STATE, ACT-ARRANGED, and ACT-NATIONAL. - STATISTIC_CATEGORY_CODE — the raw lookup code stored on the base table.
- _LA:STATISTIC_CATEGORY / _LA:STATISTIC_CATEGORY_DESC — flexfield-style descriptive columns that resolve the category code to its MEANING and DESCRIPTION via the
ACT_STATISTIC_CATEGORYlookup type, directly serving the act_statistic_category search intent. - SCORE, NATIONAL_NORM, DESCRIPTION — the measured ACT score, the corresponding national norm, and free-text remarks.
- CREATED_BY / CREATION_DATE / LAST_UPDATED_BY / LAST_UPDATE_DATE — standard audit columns carried from the base table.
Common Use Cases and Queries
This view is typically used for admission reporting on ACT scores, especially when the statistic category must be presented by its descriptive meaning. A representative query retrieving test statistics for a person follows:
- SELECT person_identifier, reporting_year, test_type, statistic_category_code, "_LA:STATISTIC_CATEGORY", score, national_norm FROM apps.igsfv_ad_act_stats_test WHERE statistic_category_code = '&category';
- Filter on
reporting_yearandtest_typeto produce year-by-year ACT trend reports per applicant. - Join to
PER_ALL_PEOPLE_Fonperson_identifierto enrich results with student name and biographical detail. - Because the view is read-only, use it for extraction into reporting schemas or BI Publisher data templates rather than as a DML target.
The _TEST suffix warrants verification against the corresponding production view before relying on it for live reporting in a 12.1.1 or 12.2.2 environment.
-
Lookup Type: ACT_STATISTIC_CATEGORY
12.2.2
product: IGS - Student System (Obsolete) , meaning: Act Statistic Category , description: Act Statistic Category ,
-
Lookup Type: ACT_STATISTIC_CATEGORY
12.1.1
product: IGS - Student System , meaning: Act Statistic Category , description: Act Statistic Category ,
-
VIEW: APPS.IGSFV_AD_ACT_STATS_TEST
12.1.1
-
VIEW: APPS.IGSBV_AD_ACT_STATS_TEST
12.1.1
-
VIEW: APPS.IGSBV_AD_ACT_STATS_SUBSCORE
12.1.1
-
VIEW: APPS.IGSFV_AD_ACT_STATS_SUBSCORE
12.1.1
-
View: IGSFV_AD_ACT_STATS_TEST
12.2.2
product: IGS - Student System (Obsolete) , description: ACT Statistical Test Components and category details for type as Test , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_AD_ACT_STATS_SUBSCORE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AD_ACT_STATS_SUBSCORE, object_name:IGSFV_AD_ACT_STATS_SUBSCORE, status:VALID, product: IGS - Student System , description: ACT Statistical Test Components and category details for type as Sub Test , implementation_dba_data: APPS.IGSFV_AD_ACT_STATS_SUBSCORE ,
-
View: IGSBV_AD_ACT_STATS_TEST
12.2.2
product: IGS - Student System (Obsolete) , description: ACT Statistical Test Components and category details for type as Test , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_AD_ACT_STATS_SUBSCORE
12.2.2
product: IGS - Student System (Obsolete) , description: ACT Statistical Test Components and category details for type as Sub Test , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_AD_ACT_STATS_SUBSCORE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AD_ACT_STATS_SUBSCORE, object_name:IGSBV_AD_ACT_STATS_SUBSCORE, status:VALID, product: IGS - Student System , description: ACT Statistical Test Components and category details for type as Sub Test , implementation_dba_data: APPS.IGSBV_AD_ACT_STATS_SUBSCORE ,
-
View: IGSFV_AD_ACT_STATS_TEST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AD_ACT_STATS_TEST, object_name:IGSFV_AD_ACT_STATS_TEST, status:VALID, product: IGS - Student System , description: ACT Statistical Test Components and category details for type as Test , implementation_dba_data: APPS.IGSFV_AD_ACT_STATS_TEST ,
-
View: IGSBV_AD_ACT_STATS_TEST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AD_ACT_STATS_TEST, object_name:IGSBV_AD_ACT_STATS_TEST, status:VALID, product: IGS - Student System , description: ACT Statistical Test Components and category details for type as Test , implementation_dba_data: APPS.IGSBV_AD_ACT_STATS_TEST ,
-
View: IGSFV_AD_ACT_STATS_SUBSCORE
12.2.2
product: IGS - Student System (Obsolete) , description: ACT Statistical Test Components and category details for type as Sub Test , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_AD_ACT_ASSESSMENTS_PKG SQL Statements
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_ACT_ASSESSMENTS_PKG
12.1.1
-
APPS.IGS_AD_ACT_ASSESSMENTS_PKG dependencies on IGS_LOOKUP_VALUES
12.1.1
-
APPS.IGS_AD_ACT_ASSESSMENTS_PKG dependencies on IGS_AD_ACT_ASSESSMENTS
12.1.1