Search Results panel_dtls_id
Overview
The IGS_AD_PNL_HIS_DTLS table is a core audit and history tracking object within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2, specifically for the IGS (Oracle Student Management) product family. It functions as an audit history table designed to capture and persist a chronological record of changes made to panel decision details. Its primary role is to provide a non-volatile audit trail, enabling historical analysis, compliance reporting, and the reconstruction of decision state changes over time for admissions or academic review panels. The table's storage in the APPS_TS_TX_DATA tablespace and its structure underscore its purpose as a transactional history log.
Key Information Stored
The table stores a combination of business data and standard system metadata. The key business columns are PANEL_DTLS_ID, which links each history record to its associated panel details master record; HISTORY_DATE, which records the precise date of the change; and the pair FINAL_DECISION_CODE and FINAL_DECISION_TYPE, which together capture the specific decision state (e.g., "APPROVE", "REJECT") and its classification at the point of logging. The PANEL_DTLS_ID and HISTORY_DATE columns form the unique primary key (IGS_AD_PNL_HIS_DTLS_PK), ensuring a distinct record for each change event per panel detail. The table is also equipped with the full suite of standard WHO columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN) to track system-level audit information for each row's creation and modification.
Common Use Cases and Queries
This table is central to audit reporting and historical trend analysis for panel decisions. A common use case is generating a report showing the complete decision history for a specific application or case, tracing how the panel's final determination evolved. Another critical use is compliance auditing, providing evidence of when and what decisions were recorded. A typical query retrieves the history for a specific panel detail, often joined to master tables for contextual information:
- Retrieve Full History for a Panel Detail:
SELECT * FROM igs.igs_ad_pnl_his_dtls WHERE panel_dtls_id = :p_id ORDER BY history_date; - Report on Specific Decision Changes:
SELECT panel_dtls_id, history_date, final_decision_code FROM igs.igs_ad_pnl_his_dtls WHERE final_decision_type = 'FINAL' AND TRUNC(history_date) BETWEEN :p_start_date AND :p_end_date; - Identify Latest Decision per Detail:
SELECT panel_dtls_id, MAX(history_date) KEEP (DENSE_RANK LAST ORDER BY history_date) AS last_change_date FROM igs.igs_ad_pnl_his_dtls GROUP BY panel_dtls_id;
Related Objects
Based on the provided metadata, the IGS_AD_PNL_HIS_DTLS table is referenced by objects within the APPS schema, indicating its integration with the broader EBS application layer. The most significant relationship is implied by the PANEL_DTLS_ID column, which is a foreign key to a master panel details table (likely named IGS_AD_PNL_DTLS or similar), though this parent table is not explicitly listed in the dependencies excerpt. The existence of a non-unique index (IGS_AD_PNL_HIS_DTLS_N1) on FINAL_DECISION_CODE and FINAL_DECISION_TYPE facilitates performance for queries filtering on these decision attributes. Developers and report writers typically join this history table to its parent master table to enrich history records with full application or candidate context.
-
TABLE: IGS.IGS_AD_PNL_HIS_DTLS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_PNL_HIS_DTLS, object_name:IGS_AD_PNL_HIS_DTLS, status:VALID,
-
View: IGS_AD_PNL_HIS_DTLS_V
12.2.2
product: IGS - Student System (Obsolete) , description: View of IGS_AD_PNL_HIS_DTLS. Shows the Final Decision history of the panel. , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_AD_INT_RECONSIDER dependencies on IGS_AD_PNMEMBR_DTLS
12.1.1
-
View: IGS_AD_PNL_HIS_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PNL_HIS_DTLS_V, object_name:IGS_AD_PNL_HIS_DTLS_V, status:VALID, product: IGS - Student System , description: View of IGS_AD_PNL_HIS_DTLS. Shows the Final Decision history of the panel. , implementation_dba_data: APPS.IGS_AD_PNL_HIS_DTLS_V ,
-
TABLE: IGS.IGS_AD_PNMEMBR_NOTS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_PNMEMBR_NOTS, object_name:IGS_AD_PNMEMBR_NOTS, status:VALID,
-
VIEW: APPS.IGS_AD_PNMEMBR_NOTS_V
12.1.1
-
View: IGS_AD_PNMEMBR_NOTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PNMEMBR_NOTS_V, object_name:IGS_AD_PNMEMBR_NOTS_V, status:VALID, product: IGS - Student System , description: View of IGS_AD_PNMEMBR_NOTS. Shows the Panel Member Notes details. , implementation_dba_data: APPS.IGS_AD_PNMEMBR_NOTS_V ,
-
View: IGS_AD_PNMEMBR_NOTS_V
12.2.2
product: IGS - Student System (Obsolete) , description: View of IGS_AD_PNMEMBR_NOTS. Shows the Panel Member Notes details. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AD_PNL_HIS_DTLS_V
12.1.1
-
APPS.IGS_AD_PANEL_DTLS_PKG dependencies on IGS_AD_PNL_HIS_DTLS
12.1.1
-
VIEW: APPS.IGS_AD_PNMEMBR_NOTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PNMEMBR_NOTS_V, object_name:IGS_AD_PNMEMBR_NOTS_V, status:VALID,
-
APPS.IGS_AD_PNL_HIS_DTLS_PKG dependencies on IGS_AD_PNL_HIS_DTLS
12.1.1
-
APPS.IGS_AD_PNMEMBR_NOTS_PKG dependencies on IGS_AD_PNMEMBR_NOTS
12.1.1
-
VIEW: APPS.IGS_AD_PNL_HIS_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PNL_HIS_DTLS_V, object_name:IGS_AD_PNL_HIS_DTLS_V, status:VALID,
-
Table: IGS_AD_PNMEMBR_NOTS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_PNMEMBR_NOTS, object_name:IGS_AD_PNMEMBR_NOTS, status:VALID, product: IGS - Student System , description: Table that holds the details about the notes created by the members assigned to an application instance panel , implementation_dba_data: IGS.IGS_AD_PNMEMBR_NOTS ,
-
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 ,
-
APPS.IGS_AD_PNMEMBR_DTLS_PKG dependencies on IGS_AD_PNMEMBR_DTLS
12.1.1
-
Table: IGS_AD_PNMEMBR_DTLS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_PNMEMBR_DTLS, object_name:IGS_AD_PNMEMBR_DTLS, status:VALID, product: IGS - Student System , description: The table that holds the information about the members assigned to a panel instance , implementation_dba_data: IGS.IGS_AD_PNMEMBR_DTLS ,
-
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 ,
-
APPS.IGS_AD_PNMEMBR_NOTS_PKG SQL Statements
12.1.1
-
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_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 ,
-
Table: IGS_AD_PNL_HIS_DTLS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_PNL_HIS_DTLS, object_name:IGS_AD_PNL_HIS_DTLS, status:VALID, product: IGS - Student System , description: This is an Audit history table, that holds the information about the panel decision changes , implementation_dba_data: IGS.IGS_AD_PNL_HIS_DTLS ,
-
View: IGS_AD_PNMEMBR_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PNMEMBR_DTLS_V, object_name:IGS_AD_PNMEMBR_DTLS_V, status:VALID, product: IGS - Student System , 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: APPS.IGS_AD_PNMEMBR_DTLS_V ,
-
APPS.IGS_AD_PANEL_DTLS_PKG dependencies on IGS_AD_PANEL_DTLS
12.1.1
-
View: IGS_AD_SCRN_INT_PANEL_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_SCRN_INT_PANEL_DTLS_V, object_name:IGS_AD_SCRN_INT_PANEL_DTLS_V, status:VALID, product: IGS - Student System , 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: APPS.IGS_AD_SCRN_INT_PANEL_DTLS_V ,
-
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.IGS_AD_PNMEMBR_DTLS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_PNMEMBR_DTLS, object_name:IGS_AD_PNMEMBR_DTLS, status:VALID,
-
Table: IGS_AD_PNMEMBR_NOTS
12.2.2
product: IGS - Student System (Obsolete) , description: Table that holds the details about the notes created by the members assigned to an application instance panel , 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 ,
-
VIEW: APPS.IGS_AD_SCRN_INT_PANEL_DTLS_V
12.1.1
-
APPS.IGS_AD_PNL_HIS_DTLS_PKG SQL Statements
12.1.1
-
Table: IGS_AD_PANEL_DTLS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_PANEL_DTLS, object_name:IGS_AD_PANEL_DTLS, status:VALID, product: IGS - Student System , description: Table that holds the details about the application instances assigned to a panel , implementation_dba_data: IGS.IGS_AD_PANEL_DTLS ,
-
View: IGS_AD_PANEL_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PANEL_DTLS_V, object_name:IGS_AD_PANEL_DTLS_V, status:VALID, product: IGS - Student System , 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: APPS.IGS_AD_PANEL_DTLS_V ,
-
TABLE: IGS.IGS_AD_PANEL_DTLS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_PANEL_DTLS, object_name:IGS_AD_PANEL_DTLS, status:VALID,
-
APPS.IGS_AD_PNMEMBR_DTLS_PKG dependencies on IGS_AD_PANEL_DTLS
12.1.1
-
VIEW: APPS.IGS_AD_PANEL_DTLS_V
12.1.1
-
VIEW: APPS.IGS_AD_PNMEMBR_DTLS_V
12.1.1
-
APPS.IGS_AD_PANEL_DTLS_PKG dependencies on IGS_AD_PNL_HIS_DTLS_PKG
12.1.1
-
APPS.IGS_AD_PANEL_DTLS_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGS_AD_PNMEMBR_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PNMEMBR_DTLS_V, object_name:IGS_AD_PNMEMBR_DTLS_V, status:VALID,
-
APPS.IGS_AD_PNMEMBR_DTLS_PKG SQL Statements
12.1.1
-
APPS.IGS_AD_PANEL_DTLS_PKG dependencies on IGS_SC_GEN_001
12.1.1
-
VIEW: APPS.IGS_AD_SCRN_INT_PANEL_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_SCRN_INT_PANEL_DTLS_V, object_name:IGS_AD_SCRN_INT_PANEL_DTLS_V, status:VALID,
-
VIEW: APPS.IGS_AD_PANEL_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PANEL_DTLS_V, object_name:IGS_AD_PANEL_DTLS_V, status:VALID,
-
APPS.IGS_AD_PNMEMBR_DTLS_PKG dependencies on IGS_AD_CODE_CLASSES
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_PNMEMBR_NOTS_PKG
12.1.1
-
APPS.IGS_AD_PANEL_DTLS_PKG dependencies on IGS_AD_INTVW_PNLS
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_PNL_HIS_DTLS_PKG
12.1.1
-
APPS.IGS_AD_PNMEMBR_DTLS_PKG dependencies on IGS_SC_GEN_001
12.1.1