Search Results irregularity_code_name
Overview
IGS_AD_TST_RSLT_DTLS_V is a reporting and integration view owned by the APPS schema in the Oracle EBS Student System (IGS) product family. It exposes admissions test result detail records in a denormalized, presentation-ready form, resolving foreign key identifiers into their descriptive equivalents and flattening the transactional detail table for downstream consumption. The view is valid in Oracle EBS 12.1.1 and 12.2.2 and is intended for use by concurrent programs, OBIEE/XML Publisher reports, and interface extracts where a single row per test result detail line is required, enriched with the segment name, segment type, segment group, and irregularity code description.
The object plays a supporting role in admissions processing: it lets functional users and developers avoid re-implementing the joins between test result details, test segments, and code classes, and it delivers a stable column list suitable for external test score file imports and score reporting.
Underlying Base Objects
The view definition is a three-table join. The driving table is IGS_AD_TST_RSLT_DTLS (aliased TRD), which stores the individual score and percentile lines for a test result. It is inner-joined to IGS_AD_TEST_SEGMENTS (aliased TS) on TEST_SEGMENT_ID, meaning only detail rows with a valid segment are returned. It is outer-joined to IGS_AD_CODE_CLASSES (aliased CC) on CC.CODE_ID (+) = TRD.IRREGULARITY_CODE_ID, so a row is still returned even when no irregularity code is assigned; the irregularity code name is then null.
The documented referenced base objects are IGS_AD_TST_RSLT_DTLS, IGS_AD_TEST_SEGMENTS, and IGS_AD_CODE_CLASSES. Because the view exposes TRD.ROWID as ROW_ID, it is not directly updateable through the ROW_ID column in the usual sense; DML should target IGS_AD_TST_RSLT_DTLS directly.
Key Columns
- ROW_ID — the ROWID of the underlying IGS_AD_TST_RSLT_DTLS row, useful for back-referencing the base record.
- TST_RSLT_DTLS_ID — primary key of the test result detail line.
- TEST_RESULTS_ID — foreign key to the parent test result header, used to group detail lines belonging to one test event.
- TEST_SEGMENT_ID / TEST_SEGMENT_NAME / SEGMENT_TYPE / SEGMENT_GROUP — identify the sub-section of the test (for example, verbal or quantitative), its classification, and the group to which it belongs.
- TEST_SCORE, PERCENTILE, NATIONAL_PERCENTILE, STATE_PERCENTILE, PERCENTILE_YEAR_RANK — the reported score and comparative ranking measures, including lower and upper score band bounds (SCORE_BAND_LOWER, SCORE_BAND_UPPER).
- IRREGULARITY_CODE_ID / IRREGULARITY_CODE_NAME — identifies and describes any irregularity or exception flagged against the score. Because the join is outer, IRREGULARITY_CODE_NAME is null when IRREGULARITY_CODE_ID is null.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1 through ATTRIBUTE20 — the standard EBS descriptive flexfield columns, carrying additional client-specific admissions data.
- Audit columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN.
Common Use Cases and Queries
A typical use is to report test results grouped by segment with irregularity codes flagged. Because the user query concerned irregularity_code_id, the following pattern is common:
- Filtering all detail rows for a given test result:
SELECT test_segment_name, test_score, percentile, irregularity_code_name FROM igs_ad_tst_rslt_dtls_v WHERE test_results_id = :p_results_id; - Identifying lines with an irregularity assigned:
SELECT tst_rslt_dtls_id, test_segment_name, irregularity_code_id, irregularity_code_name FROM igs_ad_tst_rslt_dtls_v WHERE irregularity_code_id IS NOT NULL; - Looking up a code description by joining back to the code classes table or filtering on irregularity_code_id for a specific value.
- Extracting score bands and percentile data for XML Publisher test score reports or inbound score file validation, using the flexfield attributes to carry external file metadata.
Before using the view, verify that the IGS admissions tables are populated for the operating unit in scope and that the outer-joined code classes row is expected to exist for any flagged irregularity.
-
View: IGS_AD_TST_RSLT_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_TST_RSLT_DTLS_V, object_name:IGS_AD_TST_RSLT_DTLS_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_TST_RSLT_DTLS_V ,
-
View: IGS_AD_TST_RSLT_DTLS_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AD_TST_RSLT_DTLS_V
12.1.1
-
VIEW: APPS.IGS_AD_TST_RSLT_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_TST_RSLT_DTLS_V, object_name:IGS_AD_TST_RSLT_DTLS_V, status:VALID,
-
VIEW: APPS.IGSFV_AD_PER_TST_RSLT_DTLS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AD_PER_TST_RSLT_DTLS, object_name:IGSFV_AD_PER_TST_RSLT_DTLS, status:VALID,
-
View: IGSFV_AD_PER_TST_RSLT_DTLS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AD_PER_TST_RSLT_DTLS, object_name:IGSFV_AD_PER_TST_RSLT_DTLS, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGSFV_AD_PER_TST_RSLT_DTLS ,
-
View: IGSFV_AD_PER_TST_RSLT_DTLS
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
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'. ,