Search Results igs_ss_inquiry
Overview
The IGS_SS_INQUIRY table is a core data structure within the Oracle E-Business Suite (EBS) Student System (IGS) module. It functions as a staging repository for inquiry records generated through the Self Service application interface. Historically, this table captured preliminary student interest data, serving as a precursor to formal application or enrollment processes. Critically, the official ETRM documentation explicitly marks this table as "Obsolete." This status indicates that while the table may persist in the database schema for backward compatibility, its use in current implementations of EBS 12.1.1 and 12.2.2 is deprecated, and it is likely superseded by newer data models or integrated workflows within the Self Service framework.
Key Information Stored
While the provided metadata does not list individual column definitions, the primary and foreign key relationships reveal the table's fundamental structure. The central identifier is the INQ_INQ_ID column, which serves as the table's primary key (IGS_SS_INQUIRY_PK) and uniquely identifies each inquiry record. A second critical column is INQ_PERSON_ID, which establishes a link to a person record in the IGS_SS_INQ_PERSON_ALL table. This relationship suggests the table stored core inquiry metadata, likely including creation dates, source information, and status flags, associated with a specific individual. The existence of multiple child tables indicates the inquiry record acted as a header for more detailed, related information.
Common Use Cases and Queries
Given its obsolete status, direct operational use cases for this table in active development or reporting are strongly discouraged. Its primary contemporary relevance is for historical data analysis, data migration validation, or understanding legacy system behavior. Typical queries would involve joining to its related tables to reconstruct a complete historical inquiry. A sample analytical query might resemble:
SELECT inq.INQ_INQ_ID, person.DISPLAY_NAME, inq_info.INFO_CODE, inq_prog.PROGRAM_CODE FROM IGS_SS_INQUIRY inq JOIN IGS_SS_INQ_PERSON_ALL person ON inq.INQ_PERSON_ID = person.PERSON_ID LEFT JOIN IGS_SS_INQ_INFO_REQ inq_info ON inq.INQ_INQ_ID = inq_info.INQ_INQ_ID LEFT JOIN IGS_SS_INQ_PROG inq_prog ON inq.INQ_INQ_ID = inq_prog.INQ_INQ_ID WHERE inq.CREATION_DATE > SYSDATE - 365;
Any new integrations or reports should utilize the current, supported APIs and tables as defined by Oracle.
Related Objects
The table maintains defined relationships with several other IGS staging tables, forming a logical hierarchy for obsolete inquiry data.
- Referenced Parent Table: The table references IGS_SS_INQ_PERSON_ALL via the foreign key on the column IGS_SS_INQUIRY.INQ_PERSON_ID.
- Referencing Child Tables: This table is referenced as a parent by three key child tables:
- IGS_SS_INQ_INFO_REQ via IGS_SS_INQ_INFO_REQ.INQ_INQ_ID
- IGS_SS_INQ_PROG via IGS_SS_INQ_PROG.INQ_INQ_ID
- IGS_SS_INQ_USET via IGS_SS_INQ_USET.INQ_INQ_ID
-
Table: IGS_SS_INQUIRY
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_SS_INQUIRY, object_name:IGS_SS_INQUIRY, status:VALID, product: IGS - Student System , description: Holds Self Service Staging Inquiry records - Obsolete , implementation_dba_data: IGS.IGS_SS_INQUIRY ,
-
Table: IGS_SS_INQ_PROG
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_SS_INQ_PROG, object_name:IGS_SS_INQ_PROG, status:VALID, product: IGS - Student System , description: Holds Self Service Staging Inquiry Programs - Obsolete , implementation_dba_data: IGS.IGS_SS_INQ_PROG ,
-
Table: IGS_SS_INQ_USET
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_SS_INQ_USET, object_name:IGS_SS_INQ_USET, status:VALID, product: IGS - Student System , description: Holds Self Service Staging Inquiry Unit Sets records-Obsolete , implementation_dba_data: IGS.IGS_SS_INQ_USET ,
-
Table: IGS_SS_INQ_INFO_REQ
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_SS_INQ_INFO_REQ, object_name:IGS_SS_INQ_INFO_REQ, status:VALID, product: IGS - Student System , description: Holds Self Service Staging Information requested records - Obsolete , implementation_dba_data: IGS.IGS_SS_INQ_INFO_REQ ,
-
Table: IGS_SS_INQ_PERSON_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_SS_INQ_PERSON_ALL, object_name:IGS_SS_INQ_PERSON_ALL, status:VALID, product: IGS - Student System , description: Holds Self Service Staging Inquiry person - Obsolete , implementation_dba_data: IGS.IGS_SS_INQ_PERSON_ALL ,