Search Results igs_ad_pnmembr_dtls




Overview

The IGS_AD_PNMEMBR_DTLS table is a core data object within the Oracle E-Business Suite Student System (IGS) module, specifically supporting the admissions functionality. It serves as the master repository for storing information about individual members assigned to a panel instance. In the context of admissions processes, panels are often convened to review applications, conduct interviews, or make decisions. This table is essential for managing the composition, roles, and associated details of each person serving as a member on such a panel, thereby enabling structured and auditable committee workflows within the institution's student lifecycle management.

Key Information Stored

The table's primary key is a composite of PANEL_DTLS_ID and MEMBER_PERSON_ID, uniquely identifying a specific member's assignment to a specific panel instance. Key columns include PANEL_DTLS_ID, which links to the parent panel details in the IGS_AD_PANEL_DTLS table, and MEMBER_PERSON_ID, which identifies the individual. Other significant columns manage the member's role and decisions within the panel, such as MEMBER_DECISION_CODE and MEMBER_DECISION_TYPE, which are validated against the IGS_AD_CODE_CLASSES table. The table also stores logistical information via LOCATION_CD and ROOM_ID, linking to the IGS_AD_LOCATION_ALL and IGS_AD_ROOM_ALL tables respectively, to record where the member is scheduled to participate.

Common Use Cases and Queries

This table is central to operations involving admission panel management. Common use cases include generating panel rosters for scheduling, tracking member attendance and participation, and aggregating individual member decisions to reach a final panel outcome. A typical reporting query might join IGS_AD_PNMEMBR_DTLS with IGS_AD_PANEL_DTLS and person tables to list all members for panels reviewing a specific program. For auditing purposes, queries often retrieve a member's decision history. Sample SQL to find all members for a given panel would be:

  • SELECT member_person_id, member_decision_code FROM igs_ad_pnmembr_dtls WHERE panel_dtls_id = <panel_id>;

Another common pattern involves left joins to IGS_AD_LOCATION_ALL and IGS_AD_ROOM_ALL to build a complete schedule of panel sessions with physical or virtual locations.

Related Objects

IGS_AD_PNMEMBR_DTLS has integral relationships with several other EBS tables, forming a key part of the admissions data model. Its primary parent table is IGS_AD_PANEL_DTLS. It is also a parent table itself, as it is referenced by the IGS_AD_PNMEMBR_NOTS table, which likely stores notes or notifications related to specific panel members. As indicated by its foreign keys, it draws validated code values from IGS_AD_CODE_CLASSES for decision tracking and references IGS_AD_LOCATION_ALL and IGS_AD_ROOM_ALL for logistical details. Any custom reports or integrations concerning panel membership must typically join through this table.