Search Results igs_ad_panel_dtls
Overview
The IGS_AD_PANEL_DTLS table is a core data object within the Oracle E-Business Suite's Student System (IGS), specifically in the Admissions module. Its primary function is to manage the detailed assignment of individual application instances to interview or review panels. This table serves as the junction point, linking an applicant's specific course application to a scheduled panel event, thereby enabling the structured evaluation and decision-making process for admissions. It is important to note that the IGS product line is marked as "Obsolete" in the provided ETRM documentation, indicating it is a legacy component. Furthermore, the metadata explicitly states it was "Not implemented in this database," suggesting potential variability in its deployment across different EBS instances or versions.
Key Information Stored
The table stores the critical linkages and outcomes for panel reviews. Its structure is defined by a primary key, PANEL_DTLS_ID, and a series of foreign keys that establish its relationships within the admissions data model. Key columns include identifiers for the application instance (PERSON_ID, ADMISSION_APPL_NUMBER, NOMINATED_COURSE_CD, SEQUENCE_NUMBER), which together uniquely identify an applicant's submission for a specific program. It also holds the PANEL_CODE to link to the parent panel definition, and logistical details such as LOCATION_CD and ROOM_ID for the interview venue. Crucially, it records the panel's assessment via FINAL_DECISION_CODE and FINAL_DECISION_TYPE, which classify the outcome of the review (e.g., Accept, Reject, Waitlist).
Common Use Cases and Queries
This table is central to operational reporting and process tracking for admissions panels. Common use cases include generating schedules of which applicants are assigned to which panels, tracking the status and final decisions of panel reviews, and auditing the panel assignment history. A typical query might join IGS_AD_PANEL_DTLS with IGS_AD_PS_APPL_INST_ALL to list all applicants assigned to a specific panel, including their personal and application details, along with the panel's location and decision.
SELECT pad.PANEL_CODE, pad.LOCATION_CD, ai.PERSON_ID, ai.NOMINATED_COURSE_CD, pad.FINAL_DECISION_CODE FROM IGS_AD_PANEL_DTLS pad JOIN IGS_AD_PS_APPL_INST_ALL ai ON pad.PERSON_ID = ai.PERSON_ID AND pad.ADMISSION_APPL_NUMBER = ai.ADMISSION_APPL_NUMBER AND pad.NOMINATED_COURSE_CD = ai.NOMINATED_COURSE_CD AND pad.SEQUENCE_NUMBER = ai.SEQUENCE_NUMBER WHERE pad.PANEL_CODE = '&PANEL_CODE';
Another critical report would aggregate final decision statistics by panel or by course to evaluate panel outcomes.
Related Objects
As indicated by its foreign keys, IGS_AD_PANEL_DTLS is a central hub connected to several key tables in the Admissions schema:
- IGS_AD_PS_APPL_INST_ALL: The source table for the application instance being reviewed.
- IGS_AD_INTVW_PNLS: The parent table defining the panel (e.g., date, time, panel type).
- IGS_AD_LOCATION_ALL & IGS_AD_ROOM_ALL: Provide details on the interview venue.
- IGS_AD_CODE_CLASSES: Validates the FINAL_DECISION_CODE and FINAL_DECISION_TYPE.
- IGS_AD_PNL_HIS_DTLS & IGS_AD_PNMEMBR_DTLS: Child tables that likely store historical changes to panel details and the assignment of specific members to evaluate this application, respectively.
-
Table: IGS_AD_PANEL_DTLS
12.2.2
product: IGS - Student System (Obsolete) , description: Table that holds the details about the application instances assigned to a panel , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AD_PANEL_DTLS_V
12.2.2
product: IGS - Student System (Obsolete) , description: View of IGS_AD_PANEL_DTLS. Shows the Application instances assigned for a panel along with the Panel Interview location and decision details , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_AD_PNL_HIS_DTLS
12.2.2
product: IGS - Student System (Obsolete) , description: This is an Audit history table, that holds the information about the panel decision changes , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_AD_INTVW_PNLS
12.2.2
product: IGS - Student System (Obsolete) , description: Table that holds information about the screening or interview panels that have been created , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_APPL_PANEL_DETAILS
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_AD_PNMEMBR_DTLS
12.2.2
product: IGS - Student System (Obsolete) , description: The table that holds the information about the members assigned to a panel instance , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_AD_ROOM_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: Contains room records , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_INTERVIEW_PANEL_HISTDTLS
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_PANEL_MEMBER_NOTES
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_APPL_PANEL_DETAILS
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_AD_LOCATION_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: Describes available geographic locations at which programs and units may be offered or taught , implementation_dba_data: Not implemented in this database ,
-
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 ,
-
View: IGS_AD_SCRN_INT_PANEL_DTLS_V
12.2.2
product: IGS - Student System (Obsolete) , description: View to show the Panel Details such as Application Instances, Interview Location details and Final Decision details, along with the Panel Type, for a given panel. , implementation_dba_data: Not implemented in this database ,
-
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 ,
-
View: IGS_AD_PNMEMBR_DTLS_V
12.2.2
product: IGS - Student System (Obsolete) , description: View of IGS_AD_PNMEMBR_DTLS. Shows the Application instances assigned for a panel member along with the Panel member Interview location and decision details. , implementation_dba_data: Not implemented in this database ,