Search Results igs_in_enquiry_appl
Overview
The IGS_IN_ENQUIRY_APPL view resides in the APPS schema in Oracle E-Business Suite and belongs to the IGS — Student System product family. In the documented ETRM metadata for both 12.1.1 and 12.2.2 it carries a status of Obsolete. Despite that designation, the object remains present in the database with a VALID status and exposes a full column list, which is characteristic of legacy Enrollment/Admissions (Oracle Student System) inquiry-application captures that were later superseded by newer data models but retained for backward compatibility and historical reporting.
The view presents enquiry-application header information: the person making or associated with the enquiry, the enquiry/application number, academic and admissions calendar references, enquiry status and source, registration party, indicative mailing dates, free-text comments, descriptive flexfield attributes, and standard Oracle WHO columns. It is an ORG_ID-striped view, meaning it applies a multi-org security predicate against IGS_IN_ENQUIRY_APPL_ALL, returning only rows belonging to the operating unit implied by the session's CLIENT_INFO context.
Underlying Base Objects
The view is defined over a single documented base table:
- IGS_IN_ENQUIRY_APPL_ALL — the multi-org base table holding all enquiry-application records across operating units.
The view does not itself store data; it projects the columns of the base table and appends the pseudo-column ROW_ID (derived from A.ROWID). The multi-org filter is implemented with a character-based comparison on USERENV('CLIENT_INFO'):
WHERE NVL(A.ORG_ID, NVL(TO_NUMBER(DECODE(SUBSTRB(USERENV('CLIENT_INFO'),1,1),' ',NULL,SUBSTRB(USERENV('CLIENT_INFO'),1,10))), -99)) = NVL(TO_NUMBER(DECODE(SUBSTRB(USERENV('CLIENT_INFO'),1,1),' ',NULL,SUBSTRB(USERENV('CLIENT_INFO'),1,10))), -99)
This is the classic pre-12.2 multi-org rule. Because the ETRM metadata documents no additional referenced base objects, all functional meaning is carried by IGS_IN_ENQUIRY_APPL_ALL.
Key Columns
- ROW_ID — pseudo-column identifying a physical row in the base table; useful for de-duplication and row-level addressing.
- PERSON_ID / PARTY_ID — the individual associated with the enquiry/application;
PARTY_IDaligns to the TCA (Trading Community Architecture) party model. - ENQUIRY_APPL_NUMBER — business identifier for the enquiry/application.
- ACAD_CAL_TYPE / ACAD_CI_SEQUENCE_NUMBER — academic calendar type and sequence (calendar instance).
- ADM_CAL_TYPE / ADM_CI_SEQUENCE_NUMBER — admissions calendar type and sequence.
- ENQUIRY_STATUS / ENQUIRY_SOURCE_TYPE — current state and origin of the enquiry.
- ENQUIRY_DT / INDICATED_MAILING_DT — enquiry date and the applicant's indicated mailing date.
- LAST_PROCESS_DT — the date the record was last processed; the column most frequently used to track pipeline progression, aging, and re-engagement of stale enquiries.
- REGISTERING_PERSON_ID / OVERRIDE_PROCESS_IND — party performing registration and an indicator allowing the process to be bypassed.
- COMMENTS / ATTRIBUTE1–ATTRIBUTE20 / ATTRIBUTE_CATEGORY — free text and descriptive flexfield content.
- ORG_ID — operating unit discriminator.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN, REQUEST_ID, PROGRAM_ID, PROGRAM_APPLICATION_ID, PROGRAM_UPDATE_DATE — standard Oracle audit and concurrent-program WHO columns.
Common Use Cases and Queries
Because the view is documented as obsolete, new development should avoid it; however, existing reports, extracts, and integrations that reference LAST_PROCESS_DT commonly query it to measure enquiry aging. A representative query follows:
SELECT enquiry_appl_number, person_id, enquiry_status, enquiry_dt, last_process_dt, org_id FROM apps.igs_in_enquiry_appl;
A more practical aging query:
SELECT person_id, enquiry_appl_number, last_process_dt, TRUNC(SYSDATE) - TRUNC(last_process_dt) AS days_since_process FROM apps.igs_in_enquiry_appl WHERE last_process_dt IS NOT NULL ORDER BY last_process_dt;
Typical uses include pipeline/dashboard reporting on admissions enquiries, identifying records not touched within an SLA window (often triggered from the LAST_PROCESS_DT value the user searched for), and historical reconciliation of enrolment or admissions proposals. Where multi-org security context is not initialized for the session, an ORG_ID predicate should be added explicitly, since the view's predicate relies on CLIENT_INFO.
-
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_AD_INQ_UNIT_SET_PREFS_V
12.1.1
-
VIEW: APPS.IGS_IN_APPL_CHAR_TYP_V
12.1.1
-
VIEW: APPS.IGS_AD_INQ_PROG_PREFS_V
12.1.1
-
VIEW: APPS.IGS_IN_APPLML_PKGITM_V
12.1.1
-
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: IGS_IN_APPL_CHAR_TYP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_IN_APPL_CHAR_TYP_V, object_name:IGS_IN_APPL_CHAR_TYP_V, status:VALID, product: IGS - Student System , description: Inquiries application characteristics type - Obsolete , implementation_dba_data: APPS.IGS_IN_APPL_CHAR_TYP_V ,
-
View: IGS_IN_APPL_CHAR_TYP_V
12.2.2
product: IGS - Student System (Obsolete) , description: Inquiries application characteristics type - Obsolete , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_IN_ENQUIRY_APPL_V
12.1.1
-
View: IGS_IN_APPLML_PKGITM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_IN_APPLML_PKGITM_V, object_name:IGS_IN_APPLML_PKGITM_V, status:VALID, product: IGS - Student System , description: Form view for enquiry application mailed package items - Obsolete , implementation_dba_data: APPS.IGS_IN_APPLML_PKGITM_V ,
-
View: IGS_AD_INQ_UNIT_SET_PREFS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_INQ_UNIT_SET_PREFS_V, object_name:IGS_AD_INQ_UNIT_SET_PREFS_V, status:VALID, product: IGS - Student System , description: This view contains all the inquiry unit sets preferences - Obsolete , implementation_dba_data: APPS.IGS_AD_INQ_UNIT_SET_PREFS_V ,
-
View: IGS_AD_INQ_PROG_PREFS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_INQ_PROG_PREFS_V, object_name:IGS_AD_INQ_PROG_PREFS_V, status:VALID, product: IGS - Student System , description: This view contains all the inquiry program preferences - Obsolete , implementation_dba_data: APPS.IGS_AD_INQ_PROG_PREFS_V ,
-
View: IGS_IN_APPLML_PKGITM_V
12.2.2
product: IGS - Student System (Obsolete) , description: Form view for enquiry application mailed package items - Obsolete , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AD_INQ_PROG_PREFS_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view contains all the inquiry program preferences - Obsolete , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AD_INQ_UNIT_SET_PREFS_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view contains all the inquiry unit sets preferences - Obsolete , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AD_INQ_PROG_PREFS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_INQ_PROG_PREFS_V, object_name:IGS_AD_INQ_PROG_PREFS_V, status:VALID,
-
VIEW: APPS.IGS_IN_APPL_CHAR_TYP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_IN_APPL_CHAR_TYP_V, object_name:IGS_IN_APPL_CHAR_TYP_V, status:VALID,
-
VIEW: APPS.IGS_IN_APPLML_PKGITM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_IN_APPLML_PKGITM_V, object_name:IGS_IN_APPLML_PKGITM_V, status:VALID,
-
VIEW: APPS.IGS_AD_INQ_UNIT_SET_PREFS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_INQ_UNIT_SET_PREFS_V, object_name:IGS_AD_INQ_UNIT_SET_PREFS_V, status:VALID,
-
View: IGS_IN_ENQUIRY_APPL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_IN_ENQUIRY_APPL_V, object_name:IGS_IN_ENQUIRY_APPL_V, status:VALID, product: IGS - Student System , description: Obsolete , implementation_dba_data: APPS.IGS_IN_ENQUIRY_APPL_V ,
-
View: IGS_IN_ENQUIRY_APPL_V
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,
-
VIEW: APPS.IGS_IN_ENQUIRY_APPL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_IN_ENQUIRY_APPL_V, object_name:IGS_IN_ENQUIRY_APPL_V, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
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'. ,