Search Results evaluator_id
Overview
The IGS_AD_APPL_EVAL table is a core data object within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2, specifically for the Admissions (IGS) module. It functions as the central repository for managing the assignment and outcomes of evaluators tasked with reviewing student admission applications. The table's primary role is to track which evaluator (person) is assigned to a specific application, record the evaluation results—including ratings and comments—and log the timeline of the assignment and evaluation process. This data is critical for automating and auditing the application review workflow, ensuring accountability, and supporting decision-making for admissions committees.
Key Information Stored
The table stores a comprehensive set of attributes for each evaluator-application assignment. Key columns include a unique system identifier (APPL_EVAL_ID) and the composite foreign key linking to a specific application instance (PERSON_ID, ADMISSION_APPL_NUMBER, NOMINATED_COURSE_CD, SEQUENCE_NUMBER). Crucially for the user's search, the EVALUATOR_ID column stores the person ID of the assigned evaluator. The table captures the method of assignment (ASSIGN_TYPE), relevant dates (ASSIGN_DATE, EVALUATION_DATE), and the evaluation results through foreign keys to rating lookup tables (RATING_TYPE_ID, RATING_VALUES_ID) and free-text comments (RATING_NOTES).
Common Use Cases and Queries
A primary use case is generating reports on evaluator workload or performance, such as listing all applications assigned to a specific evaluator. The existence of a non-unique index (IGS_AD_APPL_EVAL_N4) on the EVALUATOR_ID column alongside the application key columns indicates this is a common query pattern for performance optimization.
- Find all evaluations by a specific evaluator:
SELECT * FROM igs.igs_ad_appl_eval WHERE evaluator_id = <person_id>; - List pending evaluations (assigned but not completed):
SELECT evaluator_id, person_id, admission_appl_number FROM igs.igs_ad_appl_eval WHERE evaluation_date IS NULL; - Report on evaluation ratings and comments for an application:
SELECT eval.evaluator_id, eval.rating_notes, eval.evaluation_date FROM igs.igs_ad_appl_eval eval WHERE eval.person_id = <applicant_id> AND eval.admission_appl_number = <app_number>;
Related Objects
The table maintains several key relationships within the Admissions schema, primarily through foreign key constraints inferred from its indexed columns. The primary key (APPL_EVAL_ID) is enforced by the IGS_AD_APPL_EVAL_PK index. The table is intricately linked to the main application entity, likely a table such as IGS_AD_APPL, via the composite columns (PERSON_ID, ADMISSION_APPL_NUMBER, NOMINATED_COURSE_CD, SEQUENCE_NUMBER). It references code lookup tables for ratings: IGS_AD_CODE_CLASSES (for RATING_TYPE_ID where code type is 'RATING_TYPE') and a presumed table for RATING_VALUES_ID. The EVALUATOR_ID and PERSON_ID columns are foreign keys to the person master table (e.g., PER_ALL_PEOPLE_F). The non-unique indexes (N1, N2, N3, N4, U2) document these relationships and optimize joins for queries involving evaluators, applications, and rating types.
-
TABLE: IGS.IGS_AD_APPL_EVAL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_APPL_EVAL, object_name:IGS_AD_APPL_EVAL, status:VALID,
-
VIEW: PON.PON_BID_HEADERS#
12.2.2
-
View: IGS_AD_APPL_EVAL_V
12.2.2
product: IGS - Student System (Obsolete) , description: Holds the details of the evaluators assigned to various applications , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_RATINGS_PUB dependencies on IGS_AD_APPL_EVAL
12.1.1
-
VIEW: APPS.IGS_AD_APPL_EVAL_V
12.1.1
-
APPS.IGS_RATINGS_PUB SQL Statements
12.1.1
-
View: IGS_AD_APPL_EVAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_APPL_EVAL_V, object_name:IGS_AD_APPL_EVAL_V, status:VALID, product: IGS - Student System , description: Holds the details of the evaluators assigned to various applications , implementation_dba_data: APPS.IGS_AD_APPL_EVAL_V ,
-
APPS.IGS_AD_ASSIGN_EVAL_AI_PKG dependencies on IGS_AD_APPL_ARP_V
12.1.1
-
APPS.IGS_AD_APPL_EVAL_PKG SQL Statements
12.1.1
-
APPS.IGS_AD_ASSIGN_EVAL_AI_PKG SQL Statements
12.1.1
-
APPS.IGS_AD_ASSIGN_EVAL_AI_PKG dependencies on IGS_AD_APL_REV_PRF_ALL
12.1.1
-
APPS.IGS_AD_APPL_EVAL_PKG dependencies on IGS_AD_APPL_EVAL
12.1.1
-
VIEW: APPS.IGS_AD_APPL_EVAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_APPL_EVAL_V, object_name:IGS_AD_APPL_EVAL_V, status:VALID,
-
APPS.IGS_AD_ASSIGN_EVAL_AI_PKG dependencies on IGS_AD_APPL_EVAL_PKG
12.1.1
-
VIEW: PON.PON_BID_HEADERS#
12.2.2
owner:PON, object_type:VIEW, object_name:PON_BID_HEADERS#, status:VALID,
-
APPS.IGS_AD_ASSIGN_EVAL_AI_PKG dependencies on IGS_AD_APL_REV_PRF
12.1.1
-
PACKAGE BODY: APPS.IGS_RATINGS_PUB
12.1.1
-
APPS.IGS_AD_ASSIGN_EVAL_AI_PKG dependencies on IGS_AD_APPL_ARP
12.1.1
-
TABLE: PON.PON_BID_HEADERS
12.2.2
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_BID_HEADERS, object_name:PON_BID_HEADERS, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_APPL_EVAL_PKG
12.1.1
-
APPS.IGS_AD_ASSIGN_EVAL_AI_PKG dependencies on IGS_AD_APPL_EVAL
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_ASSIGN_EVAL_AI_PKG
12.1.1
-
APPS.IGS_AD_VAL_ACAI_FTR_OFFER SQL Statements
12.1.1
-
APPS.IGS_AD_INT_RECONSIDER SQL Statements
12.1.1
-
APPS.PON_AUCTION_HEADERS_PKG SQL Statements
12.2.2
-
APPS.PON_AUCTION_HEADERS_PKG dependencies on PON_BID_HEADERS
12.2.2
-
APPS.PON_BID_DEFAULTING_PKG dependencies on PON_BID_HEADERS
12.2.2
-
APPS.PON_BID_DEFAULTING_PKG SQL Statements
12.2.2
-
APPS.PON_BID_DEFAULTING_PKG dependencies on PON_AUCTION_HEADERS_ALL
12.2.2
-
PACKAGE BODY: APPS.PON_AUCTION_HEADERS_PKG
12.2.2
-
PACKAGE BODY: APPS.PON_BID_DEFAULTING_PKG
12.2.2
-
PACKAGE BODY: APPS.IGS_AD_VAL_ACAI_FTR_OFFER
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_INT_RECONSIDER
12.1.1
-
eTRM - PON Tables and Views
12.2.2
description: Holds the debug statements for workflow processes ,
-
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'. ,