Search Results igs_ad_appl_eval
Overview
The IGS_AD_APPL_EVAL table is a core data object within the Oracle E-Business Suite (EBS) Student System (IGS) module, specifically for versions 12.1.1 and 12.2.2. It functions as the central repository for managing the assignment and evaluation results of personnel tasked with reviewing and scoring student applications. The table's primary role is to maintain the relationship between an application, the assigned evaluator, and the qualitative or quantitative ratings they provide. This data is fundamental to the admissions workflow, enabling structured evaluation processes, tracking reviewer assignments, and consolidating assessment outcomes for decision-making.
Key Information Stored
The table stores the linkage between an application instance and its evaluators. The primary identifier is the APPL_EVAL_ID. Critical foreign key columns define its relationships: PERSON_ID, ADMISSION_APPL_NUMBER, NOMINATED_COURSE_CD, and SEQUENCE_NUMBER together link to a specific application record in IGS_AD_PS_APPL_INST_ALL. The EVALUATOR_ID column references the HZ_PARTIES table to identify the individual performing the evaluation. For storing assessment results, the table uses RATING_TYPE_ID (linking to IGS_AD_CODE_CLASSES for the rating category), RATING_SCALE_ID (linking to IGS_AD_RATING_SCALES for the defined scale), and RATING_VALUES_ID (linking to IGS_AD_RS_VALUES for the specific score or value selected from the scale).
Common Use Cases and Queries
A primary use case is generating reports on evaluator workload and application status. Administrators may query to find all applications assigned to a specific evaluator or to identify applications awaiting evaluation. Another critical scenario is compiling evaluation summaries for an admissions committee, which involves aggregating ratings from multiple evaluators per application. Common SQL patterns include joining to application and party details to produce readable reports.
- Listing all evaluators and their assigned applications:
SELECT a.evaluator_id, p.party_name, i.* FROM igs_ad_appl_eval a JOIN igs_ad_ps_appl_inst_all i ON a.person_id=i.person_id AND a.admission_appl_number=i.admission_appl_number JOIN hz_parties p ON a.evaluator_id = p.party_id; - Finding the average rating for a specific application:
SELECT AVG(rv.numeric_value) FROM igs_ad_appl_eval a JOIN igs_ad_rs_values rv ON a.rating_values_id = rv.rating_values_id WHERE a.admission_appl_number = 1001;
Related Objects
The IGS_AD_APPL_EVAL table is centrally connected to several key objects via documented foreign key relationships, primarily serving as the child table.
- IGS_AD_PS_APPL_INST_ALL: The primary parent table. The join is on the composite key (PERSON_ID, ADMISSION_APPL_NUMBER, NOMINATED_COURSE_CD, SEQUENCE_NUMBER). This links the evaluation to the specific application instance.
- HZ_PARTIES: Links via EVALUATOR_ID to identify the person or entity acting as the evaluator.
- IGS_AD_CODE_CLASSES: Links via RATING_TYPE_ID to classify the type of rating being recorded.
- IGS_AD_RATING_SCALES: Links via RATING_SCALE_ID to reference the master definition of the evaluation scale used.
- IGS_AD_RS_VALUES: Links via RATING_VALUES_ID to the specific score or value assigned from the referenced rating scale.
-
Table: 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, product: IGS - Student System , description: Holds details of evaluators assigned to various applications , implementation_dba_data: IGS.IGS_AD_APPL_EVAL ,
-
Table: IGS_AD_APPL_EVAL
12.2.2
product: IGS - Student System (Obsolete) , description: Holds details of 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
-
APPS.IGS_AD_APPL_EVAL_PKG dependencies on IGS_AD_APPL_EVAL
12.1.1
-
APPS.IGS_AD_ASSIGN_EVAL_AI_PKG dependencies on IGS_AD_APPL_EVAL
12.1.1
-
APPS.IGS_AD_ASSIGN_EVAL_AI_PKG dependencies on IGS_AD_APPL_EVAL
12.1.1
-
APPS.IGS_AD_INT_RECONSIDER dependencies on IGS_AD_APPL_EVAL
12.1.1
-
APPS.IGS_AD_VAL_ACAI_FTR_OFFER dependencies on IGS_AD_APPL_EVAL
12.1.1
-
APPS.IGS_AD_ASSIGN_EVAL_AI_PKG SQL Statements
12.1.1
-
APPS.IGS_AD_APPL_EVAL_PKG SQL Statements
12.1.1
-
APPS.IGS_AD_ASSIGN_EVAL_AI_PKG dependencies on IGS_AD_APPL_EVAL_S
12.1.1
-
APPS.IGS_AD_ASSIGN_EVAL_AI_PKG dependencies on IGS_AD_OU_STAT
12.1.1
-
APPS.IGS_AD_APPL_EVAL_PKG dependencies on IGS_AD_APPL_EVAL_S
12.1.1
-
SYNONYM: APPS.IGS_AD_APPL_EVAL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_AD_APPL_EVAL, status:VALID,
-
APPS.IGS_AD_APPL_EVAL_PKG dependencies on IGS_AD_APPL_EVAL_PKG
12.1.1
-
APPS.IGS_RATINGS_PUB SQL Statements
12.1.1
-
APPS.IGS_AD_APPL_EVAL_PKG dependencies on WF_DIRECTORY
12.1.1
-
VIEW: APPS.IGS_AD_APPL_EVAL_V
12.1.1
-
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,
-
Table: IGS_AD_RS_VALUES
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_RS_VALUES, object_name:IGS_AD_RS_VALUES, status:VALID, product: IGS - Student System , description: Holds details about rating scale values , implementation_dba_data: IGS.IGS_AD_RS_VALUES ,
-
Table: IGS_AD_RS_VALUES
12.2.2
product: IGS - Student System (Obsolete) , description: Holds details about rating scale values , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_AD_RATING_SCALES
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_RATING_SCALES, object_name:IGS_AD_RATING_SCALES, status:VALID, product: IGS - Student System , description: Holds rating scales used by evaluators to rate applications , implementation_dba_data: IGS.IGS_AD_RATING_SCALES ,
-
Table: IGS_AD_RATING_SCALES
12.2.2
product: IGS - Student System (Obsolete) , description: Holds rating scales used by evaluators to rate applications , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_AD_APPL_EVAL_PKG dependencies on IGS_SC_GEN_001
12.1.1
-
PACKAGE: APPS.IGS_AD_ASSIGN_EVAL_AI_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGS_AD_ASSIGN_EVAL_AI_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_APPL_EVAL_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_APPL_EVAL_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_APPL_EVAL_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_RATINGS_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_RATINGS_PUB, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_ASSIGN_EVAL_AI_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_ASSIGN_EVAL_AI_PKG, status:VALID,
-
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 ,
-
PACKAGE BODY: APPS.IGS_AD_ASSIGN_EVAL_AI_PKG
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 ,
-
Table: IGS_AD_PS_APPL_INST_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: Holds the request for program entry for an admission period , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_AD_CODE_CLASSES
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_CODE_CLASSES, object_name:IGS_AD_CODE_CLASSES, status:VALID, product: IGS - Student System , description: Holds information about different codes, class to which code belongs, and description , implementation_dba_data: IGS.IGS_AD_CODE_CLASSES ,
-
Table: IGS_AD_PS_APPL_INST_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_PS_APPL_INST_ALL, object_name:IGS_AD_PS_APPL_INST_ALL, status:VALID, product: IGS - Student System , description: Holds the request for program entry for an admission period , implementation_dba_data: IGS.IGS_AD_PS_APPL_INST_ALL ,
-
PACKAGE BODY: APPS.IGS_AD_INT_RECONSIDER
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_INT_RECONSIDER, status:VALID,
-
Table: IGS_AD_CODE_CLASSES
12.2.2
product: IGS - Student System (Obsolete) , description: Holds information about different codes, class to which code belongs, and description , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_AD_VAL_ACAI_FTR_OFFER
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_VAL_ACAI_FTR_OFFER, status:VALID,
-
APPS.IGS_AD_INT_RECONSIDER dependencies on IGS_AD_APPL
12.1.1
-
PACKAGE BODY: APPS.IGS_RATINGS_PUB
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_VAL_ACAI_FTR_OFFER dependencies on IGS_AD_APPL
12.1.1
-
APPS.IGS_AD_APPL_EVAL_PKG dependencies on IGS_GE_MSG_STACK
12.1.1
-
APPS.IGS_AD_APPL_EVAL_PKG dependencies on FND_MESSAGE
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
Table: HZ_PARTIES
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_PARTIES, object_name:HZ_PARTIES, status:VALID, product: AR - Receivables , description: Information about parties such as organizations, people, and groups , implementation_dba_data: AR.HZ_PARTIES ,
-
Table: HZ_PARTIES
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_PARTIES, object_name:HZ_PARTIES, status:VALID, product: AR - Receivables , description: Information about parties such as organizations, people, and groups , implementation_dba_data: AR.HZ_PARTIES ,