Search Results igs_ad_acadhis_int_all




Overview

The HZ_EDUCATION table is a core data object within the Oracle E-Business Suite (EBS) Trading Community Architecture (TCA) model, specifically under the AR (Receivables) product family. Its primary role is to store structured education history records for parties (individuals) defined within the system. This table is integral to maintaining a comprehensive 360-degree view of customer and contact profiles, enabling educational background tracking for relationship management, reporting, and specialized processes. The table's design facilitates linkages between a person, their educational institution (also modeled as a party), and the specific academic details of their enrollment.

Key Information Stored

While the provided metadata does not list specific columns beyond key identifiers, the table's purpose and foreign key relationships define its critical data elements. The central column is EDUCATION_ID, the primary key and unique identifier for each education record. Two essential foreign key columns establish core relationships: PARTY_ID links to HZ_PARTIES to identify the person who received the education, and SCHOOL_PARTY_ID links to HZ_PARTIES to identify the educational institution. Typical attributes stored in such a table would include fields like degree attained, major or field of study, start and end dates, grade point average (GPA), and graduation status. These attributes allow for a detailed academic history profile.

Common Use Cases and Queries

A primary use case is the retrieval of a person's complete academic history for customer profile reports or compliance verification. This is commonly executed in conjunction with the Parties table to resolve party names. Another critical use case involves integration with the Oracle Student Systems, as indicated by the foreign keys from IGS_AD_* tables, where education records are shared or synchronized between the TCA model and academic modules. A typical query pattern involves joining HZ_EDUCATION to HZ_PARTIES twice—once for the student and once for the school.

SELECT hp1.party_name AS Student_Name,
       hp2.party_name AS School_Name,
       he.degree,
       he.major,
       he.start_date,
       he.end_date
FROM   hz_education he,
       hz_parties hp1,
       hz_parties hp2
WHERE  he.party_id = hp1.party_id
AND    he.school_party_id = hp2.party_id
AND    hp1.party_number = 'CUST123';

Related Objects

The HZ_EDUCATION table is centrally connected to the TCA model and has specific integrations with Oracle's Student Systems (IGS). Its documented relationships are as follows:

  • References (Foreign Keys from HZ_EDUCATION):
    • HZ_PARTIES via HZ_EDUCATION.PARTY_ID (The person/student).
    • HZ_PARTIES via HZ_EDUCATION.SCHOOL_PARTY_ID (The educational institution).
  • Referenced By (Foreign Keys to HZ_EDUCATION):

These relationships to IGS (Integrated Student Systems) tables highlight that HZ_EDUCATION serves as a shared foundation for academic history data, which can be extended and utilized by specialized educational administration functionality.

  • Table: HZ_EDUCATION 12.2.2

    owner:AR,  object_type:TABLE,  fnd_design_data:AR.HZ_EDUCATION,  object_name:HZ_EDUCATION,  status:VALID,  product: AR - Receivablesdescription: Person's education information ,  implementation_dba_data: AR.HZ_EDUCATION

  • Table: HZ_EDUCATION 12.1.1

    owner:AR,  object_type:TABLE,  fnd_design_data:AR.HZ_EDUCATION,  object_name:HZ_EDUCATION,  status:VALID,  product: AR - Receivablesdescription: Person's education information ,  implementation_dba_data: AR.HZ_EDUCATION