Search Results statistic_category_code
Overview
The IGSFV_AD_ACT_STATS_ACCOMP view is a read-only reporting object owned by the APPS schema within the Oracle E-Business Suite IGS (Student System) product family. Its stated purpose, as documented in the ETRM metadata, is to present ACT Statistical Test Components and category details for type Accomplishments. In practical terms, the view exposes a filtered subset of the ACT statistical test data, restricted to records whose STATISTIC_TYPE equals 'ACCOMPLISHMENT'. This restriction distinguishes the view from the broader underlying statistics table, which may hold several statistic types. The view is defined WITH READ ONLY, meaning it is intended strictly for querying and reporting; no DML operations are permitted against it. It is commonly embedded in Oracle Forms, concurrent program outputs, and custom BI Publisher reports that summarize applicant or student accomplishment scores by reporting year.
Underlying Base Objects
The view is defined over two documented base objects:
- IGS_AD_ACT_STATISTICS (aliased
ACTST) — the primary source of statistic records, including reporting year, ACT identifier, test type, statistic category, and score. - IGS_PE_ALT_PERS_ID (aliased
PEA) — the alternate person identifier table, joined via an outer join to resolve the ACT person identifier to a PE person identifier.
The join predicate uses PEA.API_PERSON_ID (+) = DECODE(SUBSTR(ACTST.ACT_IDENTIFIER,1,1),'-', SUBSTR(ACTST.ACT_IDENTIFIER,2), ACTST.ACT_IDENTIFIER) and additionally constrains PEA.PERSON_ID_TYPE(+) = 'ACTID'. The DECODE/SUBSTR logic strips a leading hyphen from the ACT identifier where present before matching. The outer-join notation ((+)) ensures that accomplishment records are returned even when no matching alternate person identifier exists.
Key Columns
- PERSON_IDENTIFIER — the PE person identifier resolved from the alternate identifier join.
- REPORTING_YEAR — the year to which the statistical accomplishment pertains; this is the column most frequently referenced in user searches.
- ACT_IDENTIFIER — the ACT test/record identifier.
- TEST_TYPE — the type of ACT test associated with the record.
- TEST_DATE_TXT — the textual test date.
- STATISTIC_CATEGORY_CODE and the descriptive _LA:STATISTIC_CATEGORY / _LA:STATISTIC_CATEGORY_DESC — the category of the statistic, with lookup-based meaning and description resolved via
IGS_LOOKUP_VALUESfor theACT_STATISTIC_CATEGORYlookup type. - SCORE — the recorded statistical score.
- Audit columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE.
Common Use Cases and Queries
The view is typically queried to report accomplishment statistics for a given reporting year, optionally restricted by person or category. A representative query follows:
SELECT person_identifier,
reporting_year,
act_identifier,
statistic_category_code,
score
FROM apps.igsfv_ad_act_stats_accomp
WHERE reporting_year = 2023
ORDER BY person_identifier, statistic_category_code;
Because the view already filters to STATISTIC_TYPE = 'ACCOMPLISHMENT', callers need not reapply that predicate. The reporting year filter is the most common selection criterion, reflecting the user search term. Joins back to IGS_PE_ALT_PERS_ID or person tables may be added when additional demographic detail is required, noting that the view's own person resolution is an outer join. Finally, since the object is read-only, all usage should be limited to SELECT statements within reports, data extracts, and integration payloads.
-
View: IGSFV_AD_ACT_STATS_ACCOMP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AD_ACT_STATS_ACCOMP, object_name:IGSFV_AD_ACT_STATS_ACCOMP, status:VALID, product: IGS - Student System , description: ACT Statistical Test Components and category details for type Accomplishments , implementation_dba_data: APPS.IGSFV_AD_ACT_STATS_ACCOMP ,
-
View: IGSBV_AD_ACT_STATS_ACCOMP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AD_ACT_STATS_ACCOMP, object_name:IGSBV_AD_ACT_STATS_ACCOMP, status:VALID, product: IGS - Student System , description: ACT Statistical Test Components and category details for type Accomplishments , implementation_dba_data: APPS.IGSBV_AD_ACT_STATS_ACCOMP ,
-
View: IGSBV_AD_ACT_STATS_PREDIC
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AD_ACT_STATS_PREDIC, object_name:IGSBV_AD_ACT_STATS_PREDIC, status:VALID, product: IGS - Student System , description: ACT Statistical Test Components and category details for type as predicted , implementation_dba_data: APPS.IGSBV_AD_ACT_STATS_PREDIC ,
-
View: IGSFV_AD_ACT_STATS_PREDIC
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AD_ACT_STATS_PREDIC, object_name:IGSFV_AD_ACT_STATS_PREDIC, status:VALID, product: IGS - Student System , description: ACT Statistical Test Components and category details for type as predicted , implementation_dba_data: APPS.IGSFV_AD_ACT_STATS_PREDIC ,
-
View: IGSFV_AD_ACT_STATS_INTEREST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AD_ACT_STATS_INTEREST, object_name:IGSFV_AD_ACT_STATS_INTEREST, status:VALID, product: IGS - Student System , description: ACT Statistical Test Components and category details for type as Interest , implementation_dba_data: APPS.IGSFV_AD_ACT_STATS_INTEREST ,
-
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: 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_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_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_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_INTEREST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AD_ACT_STATS_INTEREST, object_name:IGSBV_AD_ACT_STATS_INTEREST, status:VALID, product: IGS - Student System , description: ACT Statistical Test Components and category details for type as Interest , implementation_dba_data: APPS.IGSBV_AD_ACT_STATS_INTEREST ,
-
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 ,