Search Results igs_in_enquiry_appl_all
Overview
The IGS_IN_ENQUIRY_APPL_ALL table is a core data entity within the Oracle E-Business Suite Student System (IGS) module. It is designed to store comprehensive records of enquiry applications made to an educational institution. These enquiries can pertain to various levels of academic interest and diverse information types, such as inquiries about specific faculties, programs, or ancillary services like accommodation. The table's structure supports a multi-organization architecture, as indicated by the '_ALL' suffix, meaning it stores data for all operating units with appropriate security via the ORG_ID column. Notably, the official ETRM documentation marks this table as "Obsolete," indicating it is part of a legacy data model that may have been superseded by newer functionality in releases 12.1.1 and 12.2.2, though it remains present in the database schema.
Key Information Stored
The table's primary purpose is to link an enquiry to a person and capture the context of the enquiry. While a full column list is not provided in the excerpt, the foreign key relationships reveal critical data points. The central column is PERSON_ID, which links the enquiry to a party in the Trading Community Architecture (HZ_PARTIES). Additional person-centric links include REGISTERING_PERSON_ID and PARTY_ID. The table captures the academic intent through INQ_ENTRY_LEVEL_ID (linked to entry levels) and INQ_ENTRY_STAT_ID (linked to entry statuses). It also stores metadata about the enquiry's origin via codes for the enquirer's educational goal (EDU_GOAL_ID), how they learned about the institution (HOW_KNOWUS_ID), and who influenced their decision (WHO_INFLUENCED_ID). Standard Oracle EBS columns like CREATION_DATE, LAST_UPDATE_DATE, CREATED_BY, and LAST_UPDATED_BY are also expected for auditing.
Common Use Cases and Queries
Primary use cases involve analyzing prospect engagement and the enquiry pipeline for reporting and operational follow-up. Common queries would join to person and code tables to produce meaningful reports. For instance, to generate a list of recent enquiries with person details and entry-level information, a query might join to HZ_PARTIES and the relevant code tables. Another typical scenario is tracking enquiry sources by joining on the HOW_KNOWUS_ID to analyze marketing campaign effectiveness. As the table is marked obsolete, direct operational use in new developments is discouraged; integration or data extraction for migration to a successor entity would be a more likely modern use case. Sample SQL to extract key enquiry data would follow this pattern:
- SELECT enq.enquiry_id, hp.party_name, hp.email_address, ace.entry_level_code, stat.entry_stat_code, enq.creation_date
- FROM igs.igs_in_enquiry_appl_all enq,
- hz_parties hp,
- igs_ad_i_entry_lvls ace,
- igs_ad_i_entry_stats stat
- WHERE enq.person_id = hp.party_id
- AND enq.inq_entry_level_id = ace.entry_level_id(+)
- AND enq.inq_entry_stat_id = stat.entry_stat_id(+)
- AND enq.org_id = :p_org_id;
Related Objects
The table maintains defined foreign key relationships with several other entities, primarily within the IGS module and the Trading Community Architecture. These relationships are crucial for data integrity and constructing joins in reports.
- HZ_PARTIES: Linked via PERSON_ID, REGISTERING_PERSON_ID, and PARTY_ID. This provides all demographic and contact information for the enquirer and related parties.
- IGS_AD_CODE_CLASSES: Linked via EDU_GOAL_ID, HOW_KNOWUS_ID, and WHO_INFLUENCED_ID. This table stores the lookup codes for these specific classification types.
- IGS_AD_I_ENTRY_LVLS: Linked via INQ_ENTRY_LEVEL_ID. This table defines the academic entry levels (e.g., Undergraduate, Graduate) the enquirer is interested in.
- IGS_AD_I_ENTRY_STATS: Linked via INQ_ENTRY_STAT_ID. This table defines the possible entry statuses associated with the enquiry.
-
Table: IGS_IN_ENQUIRY_APPL_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_IN_ENQUIRY_APPL_ALL, object_name:IGS_IN_ENQUIRY_APPL_ALL, status:VALID, product: IGS - Student System , description: This entity describes an enquiry application to the institution. The enquiry can be made at varying levels for varying information types, example faculty of education accommodation information - Obsolete , implementation_dba_data: IGS.IGS_IN_ENQUIRY_APPL_ALL ,
-
Table: IGS_IN_ENQUIRY_APPL_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes an enquiry application to the institution. The enquiry can be made at varying levels for varying information types, example faculty of education accommodation information - Obsolete , implementation_dba_data: Not implemented in this database ,
-
SYNONYM: APPS.IGS_IN_ENQUIRY_APPL_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_IN_ENQUIRY_APPL_ALL, status:VALID,
-
VIEW: APPS.IGS_IN_ENQUIRY_APPL_ALL_DFV
12.1.1
-
Table: IGS_AD_CODE_CLASSES
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_CODE_CLASSES, object_name:IGS_AD_CODE_CLASSES, status:VALID, product: IGS - Student System , description: Holds information about different codes, class to which code belongs, and description , implementation_dba_data: IGS.IGS_AD_CODE_CLASSES ,
-
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 ,
-
Table: IGS_AD_I_ENTRY_LVLS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_I_ENTRY_LVLS, object_name:IGS_AD_I_ENTRY_LVLS, status:VALID, product: IGS - Student System , description: Stores inquiry entry levels - Obsolete , implementation_dba_data: IGS.IGS_AD_I_ENTRY_LVLS ,
-
VIEW: APPS.IGS_IN_ENQUIRY_APPL
12.1.1
-
Table: IGS_AD_I_ENTRY_LVLS
12.2.2
product: IGS - Student System (Obsolete) , description: Stores inquiry entry levels - Obsolete , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_AD_I_ENTRY_STATS
12.2.2
product: IGS - Student System (Obsolete) , description: Stores inquiry entry statuses - Obsolete , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_IN_ENQUIRY_APPL_ALL_DFV
12.1.1
owner:APPS, object_type:VIEW, object_name:IGS_IN_ENQUIRY_APPL_ALL_DFV, status:VALID,
-
Table: IGS_AD_I_ENTRY_STATS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_I_ENTRY_STATS, object_name:IGS_AD_I_ENTRY_STATS, status:VALID, product: IGS - Student System , description: Stores inquiry entry statuses - Obsolete , implementation_dba_data: IGS.IGS_AD_I_ENTRY_STATS ,
-
TABLE: IGS.IGS_IN_ENQUIRY_APPL_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_IN_ENQUIRY_APPL_ALL, object_name:IGS_IN_ENQUIRY_APPL_ALL, status:VALID,
-
View: IGS_IN_ENQUIRY_APPL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_IN_ENQUIRY_APPL, object_name:IGS_IN_ENQUIRY_APPL, status:VALID, product: IGS - Student System , description: Obsolete , implementation_dba_data: APPS.IGS_IN_ENQUIRY_APPL ,
-
View: IGS_IN_ENQUIRY_APPL
12.2.2
product: IGS - Student System (Obsolete) , description: Obsolete , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_IN_ENQUIRY_APPL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_IN_ENQUIRY_APPL, object_name:IGS_IN_ENQUIRY_APPL, status:VALID,
-
Table: HZ_PARTIES
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_PARTIES, object_name:HZ_PARTIES, status:VALID, product: AR - Receivables , description: Information about parties such as organizations, people, and groups , implementation_dba_data: AR.HZ_PARTIES ,
-
Table: HZ_PARTIES
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_PARTIES, object_name:HZ_PARTIES, status:VALID, product: AR - Receivables , description: Information about parties such as organizations, people, and groups , implementation_dba_data: AR.HZ_PARTIES ,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,