Search Results statistic_category_code
Overview
The view IGSBV_AD_ACT_STATS_PREDIC belongs to the IGS – Student System product family within Oracle E-Business Suite. It is catalogued in the ETRM metadata as an obsolete object, and the documentation explicitly records that it is not implemented in the database against which the reference material was captured. Functionally, the view exposes ACT (American College Testing) statistical test components together with their associated category details, filtered to records whose statistical type is 'PREDICTED'. In other words, it presents predicted ACT statistical outcomes — percentile rank, grade point average, and probability — joined to the person identifier of the student.
Within the Oracle EBS 12.1.1 / 12.2.2 reporting landscape, such a view served as a read-only presentation layer over the Student System tables, intended to support institutional reporting on standardized test prediction data. The WITH READ ONLY clause confirms the object is query-only and cannot be used for DML. Because the view is obsolete, it should be treated as a legacy component that may be absent from a fresh 12.2.2 installation, and any dependent custom report should be validated against the target instance before use.
Underlying Base Objects
The view definition references two base objects. The primary source is IGS_AD_ACT_STATISTICS (aliased ACTST), which stores ACT statistical test component records. The secondary source is IGS_PE_ALT_PERS_ID (aliased PEA), which holds alternate person identifiers — in this case the ACT identifier used to cross-reference the student.
The join is an outer join (PEA.API_PERSON_ID (+)) on a decoded key: the leading hyphen of ACT_IDENTIFIER is stripped before comparison, and the join is further constrained by PEA.PERSON_ID_TYPE(+) = 'ACTID'. The metadata lists no documented referenced base objects, and the owner is not specified, which is consistent with its obsolete status.
Key Columns
- PERSON_IDENTIFIER — the primary person key from
PEA.PE_PERSON_ID; this is the column most directly relevant to the user's search for person_identifier. - REPORTING_YEAR — the reporting year associated with the ACT statistic.
- ACT_IDENTIFIER — the ACT test identifier; leading hyphens are stripped during the join.
- TEST_TYPE and TEST_DATE_TXT — the test type and its textual test date.
- STATISTIC_CATEGORY_CODE — the raw lookup code for the statistic category.
- _LA:STATISTIC_CATEGORY and _LA:STATISTIC_CATEGORY_DESC — translated lookup meanings sourced from
IGS_LOOKUP_VALUESagainst theACT_STATISTIC_CATEGORYlookup type. - PERCENTILE_RANK, GRADE_POINT_AVERAGE, PROBABILITY — the predicted statistical measures.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE — standard audit columns.
Common Use Cases and Queries
Typical use is institutional reporting on predicted ACT statistics keyed by person identifier. A representative query is:
SELECT person_identifier,
reporting_year,
act_identifier,
percentile_rank,
grade_point_average,
probability
FROM igsbv_ad_act_stats_predic
WHERE reporting_year = :year;
Because PERSON_IDENTIFIER derives from an outer join, callers should account for possible null values where no matching ACTID alternate identifier exists. Given the obsolete designation and the "not implemented" note, any query should first verify object existence via ALL_VIEWS before being deployed in a 12.1.1 or 12.2.2 environment.
-
View: IGSBV_AD_ACT_STATS_PREDIC
12.2.2
product: IGS - Student System (Obsolete) , description: ACT Statistical Test Components and category details for type as predicted , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_AD_ACT_STATS_INTEREST
12.2.2
product: IGS - Student System (Obsolete) , description: ACT Statistical Test Components and category details for type as Interest , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_AD_ACT_STATS_INTEREST
12.2.2
product: IGS - Student System (Obsolete) , description: ACT Statistical Test Components and category details for type as Interest , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_AD_ACT_STATS_PREDIC
12.2.2
product: IGS - Student System (Obsolete) , description: ACT Statistical Test Components and category details for type as predicted , implementation_dba_data: Not implemented in this database ,
-
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: 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_ACCOMP
12.2.2
product: IGS - Student System (Obsolete) , description: ACT Statistical Test Components and category details for type Accomplishments , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_AD_ACT_STATS_ACCOMP
12.2.2
product: IGS - Student System (Obsolete) , description: ACT Statistical Test Components and category details for type Accomplishments , 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_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.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 ,