Search Results igs_pe_stat_details
Overview
The IGS_PE_STAT_DETAILS table is a core data object within the now-obsolete Oracle Student System (IGS) module of Oracle E-Business Suite (EBS) versions 12.1.1 and 12.2.2. Its primary function is to store detailed statistical and historical academic information for a person (typically a student) within the institution. This table acts as a central repository for tracking key academic milestones and enrollment patterns, linking a person's demographic record to critical calendar-based events in their academic lifecycle. As indicated by its "Obsolete" status, this table and the surrounding IGS module represent legacy functionality, and its use in active development or new integrations is strongly discouraged in favor of more current Oracle Student Management solutions.
Key Information Stored
The table's structure is designed to capture temporal academic data through relationships with the academic calendar. Its primary keys are PERSON_ID, linking to the party (HZ_PARTIES), and PERSON_PROFILE_ID, linking to the person's profile (HZ_PERSON_PROFILES). The most significant data points are a series of calendar references that mark important dates:
- MATR_CAL_TYPE & MATR_SEQUENCE_NUMBER: References the academic calendar instance (IGS_CA_INST_ALL) for the person's initial matriculation or enrollment.
- INIT_CAL_TYPE & INIT_SEQUENCE_NUMBER: References the calendar instance for the person's initial entry into a specific academic program or status.
- RECENT_CAL_TYPE & RECENT_SEQUENCE_NUMBER: References the most recent calendar instance in which the person was actively enrolled or had a significant status change.
- CATALOG_CAL_TYPE & CATALOG_SEQUENCE_NUMBER: Likely references the academic calendar applicable to the catalog or curriculum under which the person is studying.
These foreign key relationships to IGS_CA_INST_ALL are fundamental, transforming simple date stamps into context-rich references within the institutional academic framework.
Common Use Cases and Queries
This table supports historical reporting and analysis of student academic journeys. Common operational and analytical queries would involve joining to calendar and person tables to generate timelines or segment populations based on enrollment history. A typical pattern would be to retrieve a student's key academic dates for a transcript or audit report.
Sample Query: Retrieve Basic Stat Details for a Person
SELECT psd.person_id,
hz.party_name,
matr_ci.start_dt AS matriculation_date,
recent_ci.start_dt AS recent_period_start
FROM igs_pe_stat_details psd
JOIN hz_parties hz ON psd.person_id = hz.party_id
LEFT JOIN igs_ca_inst_all matr_ci ON psd.matr_cal_type = matr_ci.cal_type AND psd.matr_sequence_number = matr_ci.sequence_number
LEFT JOIN igs_ca_inst_all recent_ci ON psd.recent_cal_type = recent_ci.cal_type AND psd.recent_sequence_number = recent_ci.sequence_number
WHERE psd.person_id = :p_person_id;
Reporting use cases include analyzing cohort persistence based on matriculation terms, identifying students who have been active across many academic periods, or verifying the applicable catalog year for degree requirement purposes.
Related Objects
The IGS_PE_STAT_DETAILS table is integrally connected to several foundational EBS objects, primarily through foreign key constraints:
- HZ_PARTIES: The universal TCA (Trading Community Architecture) table storing the person's core demographic identity (PERSON_ID foreign key).
- HZ_PERSON_PROFILES: Stores extended profile information for a person (PERSON_PROFILE_ID foreign key).
- IGS_CA_INST_ALL: The table for academic calendar instances. IGS_PE_STAT_DETAILS maintains four separate foreign key relationships to this table to define the Matriculation, Initial, Recent, and Catalog calendar periods.
Given the obsolete nature of the IGS module, this table may also be referenced by other legacy IGS entities, custom reports, or data migration scripts, but its primary and documented relationships are with the core TCA and Academic Calendar structures listed above.
-
Table: IGS_PE_STAT_DETAILS
12.2.2
product: IGS - Student System (Obsolete) , description: Entity describes the statistics details of a person , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_PE_STAT_DETAILS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PE_STAT_DETAILS, object_name:IGS_PE_STAT_DETAILS, status:VALID, product: IGS - Student System , description: Entity describes the statistics details of a person , implementation_dba_data: IGS.IGS_PE_STAT_DETAILS ,
-
APPS.IGS_SV_BATCH_PROCESS_PKG dependencies on IGS_PE_STAT_DETAILS
12.1.1
-
APPS.IGS_AD_PS_APPL_INST_PKG dependencies on IGS_PE_STAT_DETAILS
12.1.1
-
APPS.IGS_SV_NI_BATCH_PROCESS_PKG dependencies on IGS_PE_STAT_DETAILS
12.1.1
-
APPS.IGS_AD_IMP_008 dependencies on IGS_PE_STAT_DETAILS
12.1.1
-
APPS.IGS_PE_PERSON_SS_PKG dependencies on IGS_PE_STAT_DETAILS
12.1.1
-
APPS.IGS_PE_STAT_PKG dependencies on IGS_PE_STAT_DETAILS
12.1.1
-
APPS.HZ_PURGE_GEN dependencies on IGS_PE_STAT_DETAILS
12.1.1
-
APPS.IGS_HE_EXTRACT2_PKG dependencies on IGS_PE_STAT_DETAILS
12.1.1
-
APPS.IGS_PE_STAT_DETAILS_PKG dependencies on IGS_PE_STAT_DETAILS
12.1.1
-
APPS.IGS_EN_GEN_003 dependencies on IGS_PE_STAT_DETAILS
12.1.1
-
VIEW: APPS.IGS_PE_STAT_DETAILS_DFV
12.1.1
-
VIEW: APPS.IGSBV_ACADEMIC_CATALOGS
12.1.1
-
SYNONYM: APPS.IGS_PE_STAT_DETAILS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_PE_STAT_DETAILS, status:VALID,
-
APPS.IGS_AD_IMP_008 dependencies on HZ_PERSON_PROFILES
12.1.1
-
APPS.HZ_PURGE_GEN dependencies on HZ_PERSON_PROFILES
12.1.1
-
Table: IGS_CA_INST_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_CA_INST_ALL, object_name:IGS_CA_INST_ALL, status:VALID, product: IGS - Student System , description: Describes an instance of a calendar type , implementation_dba_data: IGS.IGS_CA_INST_ALL ,
-
Table: IGS_CA_INST_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: Describes an instance of a calendar type , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSFV_ACADEMIC_CATALOGS
12.1.1
-
VIEW: APPS.IGS_DA_XML_ACADEMICPROGRAM_V
12.1.1
-
APPS.IGS_PE_STAT_DETAILS_PKG dependencies on IGS_SC_GEN_001
12.1.1
-
Table: HZ_PERSON_PROFILES
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_PERSON_PROFILES, object_name:HZ_PERSON_PROFILES, status:VALID, product: AR - Receivables , description: Detailed information about people , implementation_dba_data: AR.HZ_PERSON_PROFILES ,
-
Table: HZ_PERSON_PROFILES
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_PERSON_PROFILES, object_name:HZ_PERSON_PROFILES, status:VALID, product: AR - Receivables , description: Detailed information about people , implementation_dba_data: AR.HZ_PERSON_PROFILES ,
-
APPS.IGS_PE_STAT_DETAILS_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_PE_STAT_DETAILS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PE_STAT_DETAILS_PKG, status:VALID,
-
VIEW: APPS.IGS_DA_EXPL_PRG_CAT_V
12.1.1
-
VIEW: APPS.IGS_PE_STAT_DETAILS_DFV
12.1.1
owner:APPS, object_type:VIEW, object_name:IGS_PE_STAT_DETAILS_DFV, status:VALID,
-
PACKAGE BODY: APPS.IGS_PE_STAT_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PE_STAT_PKG, status:VALID,
-
APPS.IGS_HE_EXTRACT2_PKG dependencies on HZ_PERSON_PROFILES
12.1.1
-
View: IGSBV_ACADEMIC_CATALOGS
12.2.2
product: IGS - Student System (Obsolete) , description: This entity contains information about the academic catalog of a person. , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_PE_STAT_DETAILS_PKG dependencies on HZ_PARTIES
12.1.1
-
APPS.IGS_PE_STAT_PKG dependencies on HZ_PARTY_V2PUB
12.1.1
-
View: IGS_DA_XML_ACADEMICPROGRAM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_DA_XML_ACADEMICPROGRAM_V, object_name:IGS_DA_XML_ACADEMICPROGRAM_V, status:VALID, product: IGS - Student System , description: XML element AcademicProgramSub view indexed by Degree Program view Provides the provides the DA specified program information "SPA" -- Students Selected Degree Program "WIF" -- What-if Program "SPECIAL" -- Special Program , implementation_dba_data: APPS.IGS_DA_XML_ACADEMICPROGRAM_V ,
-
View: IGS_DA_XML_ACADEMICPROGRAM_V
12.2.2
product: IGS - Student System (Obsolete) , description: XML element AcademicProgramSub view indexed by Degree Program view Provides the provides the DA specified program information "SPA" -- Students Selected Degree Program "WIF" -- What-if Program "SPECIAL" -- Special Program , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_EN_GEN_003
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_GEN_003, status:VALID,
-
View: IGSBV_ACADEMIC_CATALOGS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_ACADEMIC_CATALOGS, object_name:IGSBV_ACADEMIC_CATALOGS, status:VALID, product: IGS - Student System , description: This entity contains information about the academic catalog of a person. , implementation_dba_data: APPS.IGSBV_ACADEMIC_CATALOGS ,
-
TABLE: IGS.IGS_PE_STAT_DETAILS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PE_STAT_DETAILS, object_name:IGS_PE_STAT_DETAILS, status:VALID,
-
VIEW: APPS.IGS_PE_FAMILY_DTLS_V
12.1.1
-
APPS.IGS_AD_IMP_008 dependencies on IGS_PE_STAT_PKG
12.1.1
-
View: IGS_DA_EXPL_PRG_CAT_V
12.2.2
product: IGS - Student System (Obsolete) , description: View is used to determine the program catalogs allowed to be displayed for the Explore Program Catalog LOV based on configuration of profiles setup and the user allowed to choose Explore Program options. , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_HE_EXTRACT2_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_HE_EXTRACT2_PKG, status:VALID,
-
View: IGSFV_ACADEMIC_CATALOGS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ACADEMIC_CATALOGS, object_name:IGSFV_ACADEMIC_CATALOGS, status:VALID, product: IGS - Student System , description: This entity contains information about the academic catalog of a person. , implementation_dba_data: APPS.IGSFV_ACADEMIC_CATALOGS ,
-
PACKAGE BODY: APPS.IGS_PE_PERSON_SS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PE_PERSON_SS_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_SV_BATCH_PROCESS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_SV_BATCH_PROCESS_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_SV_NI_BATCH_PROCESS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_SV_NI_BATCH_PROCESS_PKG, status:VALID,
-
View: IGS_DA_EXPL_PRG_CAT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_DA_EXPL_PRG_CAT_V, object_name:IGS_DA_EXPL_PRG_CAT_V, status:VALID, product: IGS - Student System , description: View is used to determine the program catalogs allowed to be displayed for the Explore Program Catalog LOV based on configuration of profiles setup and the user allowed to choose Explore Program options. , implementation_dba_data: APPS.IGS_DA_EXPL_PRG_CAT_V ,
-
APPS.IGS_PE_PERSON_SS_PKG dependencies on HZ_PERSON_PROFILES
12.1.1
-
APPS.HZ_PURGE_GEN dependencies on FUN_SUPPLIER_MAPS
12.1.1
-
View: IGSFV_ACADEMIC_CATALOGS
12.2.2
product: IGS - Student System (Obsolete) , description: This entity contains information about the academic catalog of a person. , implementation_dba_data: Not implemented in this database ,