Search Results cef_no
Overview
IGSBV_UC_ENQUIRY_DETAILS is a read-only Oracle E-Business Suite database view owned by the APPS schema. It exposes enquiry and applicant data used by the UCAS (Universities and Colleges Admissions Service) integration within the Oracle Student System (IGS) product family. The view consolidates enquiry-level detail records with their associated applicant records so that reporting, admissions processing, and downstream integration components can retrieve a completed applicant/enquiry profile from a single object rather than joining the base tables manually.
The name prefix IGSBV indicates a seed/standard Oracle-supplied view (the "BV" convention commonly denotes a base view delivered by the product). Because the view text ends with WITH READ ONLY, it is intended strictly for query and reporting access — no DML is permitted against it. The view is equally valid in Oracle EBS 12.1.1 and 12.2.2, where the IGS schema objects and the APPS synonyms and grants follow the same naming pattern.
Underlying Base Objects
Although the ETRM metadata records no formally documented base objects, the view text unambiguously defines the underlying tables:
- IGS_UC_ENQ_DETAILS (aliased
EN) — the primary driving table, holding enquiry-level records including applicant number, personal details, and address. - IGS_UC_APPLICANTS (aliased
FT1) — the applicant-level table, supplying system code, passport information, request flags, the CEF number, and the OSS person identifier.
The join is defined as EN.APP_NO = FT1.APP_NO (+), an outer join keyed on applicant number. The (+) operator on the FT1 side means enquiry records are retained even when no matching applicant row exists; applicant-derived columns then return NULL. Both tables belong to the IGS (Student System) schema, and the APPS view is exposed through standard APPS synonym/grant administration.
Key Columns
The view projects 24 columns, several of which are directly relevant to the user's search term cef_no:
- CLEARING_ENTRY_FORM_NUMBER — sourced from
FT1.CEF_NO. This is the direct answer to a "cef_no" search: the CEF (Clearing Entry Form) number stored on the UCAS applicant record and surfaced here under a descriptive alias. - UCAS_APPLICANT_NUMBER (
EN.APP_NO) — the join key and primary applicant identifier. - SURNAME, GIVEN_NAMES, PREFIX, SEX_CODE, BIRTH_DATE — core personal identifiers.
SEX_CODEis accompanied by a special descriptive column,_LA:SEX_DESC, which uses the lookup-attribute mechanism againstIGS_LOOKUP_VALUES(lookup type SEX) to resolve the code to its MEANING. - ADDRESS_LINE1–4, COUNTRY, POSTCODE, EMAIL, TELEPHONE — contact and address detail for the enquiry.
- UCAS_SYSTEM_CODE, EXTRA_PASSPORT_NUMBER — applicant system and passport data from FT1.
- REQUEST_APPL_DETAILS_IND, REQUEST_COPY_APPL_FORM_IND — indicator flags recording applicant requests for application details or a copy of the application form.
- OSS_PERSON_IDENTIFIER (
FT1.OSS_PERSON_ID) — links the record to the person record in the wider student/person model. - CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE — standard WHO audit columns for traceability.
Common Use Cases and Queries
The view is typically used for admissions reporting, enquiry tracking, and troubleshooting UCAS data feeds — for example, verifying that a CEF number has been captured correctly against an applicant.
To locate an applicant by CEF number:
SELECT ucas_applicant_number, surname, given_names, clearing_entry_form_number, ucas_system_code FROM apps.igsbv_uc_enquiry_details WHERE clearing_entry_form_number = :cef_no;
To review all enquiries with applicant request flags:
SELECT ucas_applicant_number, surname, given_names, request_appl_details_ind, request_copy_appl_form_ind FROM apps.igsbv_uc_enquiry_details WHERE request_copy_appl_form_ind = 'Y';
To list enquiries lacking a matching applicant record (outer-join NULLs):
SELECT ucas_applicant_number, surname, clearing_entry_form_number FROM apps.igsbv_uc_enquiry_details WHERE clearing_entry_form_number IS NULL;
Because the view is read-only and joins only two IGS tables, it performs efficiently for ad-hoc queries and can be consumed by BI Publisher reports or interface programs requiring a flattened UCAS enquiry/applicant result set.
-
VIEW: APPS.IGSBV_UC_ENQUIRY_DETAILS
12.1.1
-
VIEW: APPS.IGSFV_UC_ENQUIRY_DETAILS
12.1.1
-
TABLE: IGS.IGS_UC_APP_CLEARING
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_UC_APP_CLEARING, object_name:IGS_UC_APP_CLEARING, status:VALID,
-
View: IGSBV_UC_ENQUIRY_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_UC_ENQUIRY_DETAILS, object_name:IGSBV_UC_ENQUIRY_DETAILS, status:VALID, product: IGS - Student System , description: Base View for basic person details of a UCAS applicant making an Extra or Clearing application. , implementation_dba_data: APPS.IGSBV_UC_ENQUIRY_DETAILS ,
-
View: IGSBV_UC_ENQUIRY_DETAILS
12.2.2
product: IGS - Student System (Obsolete) , description: Base View for basic person details of a UCAS applicant making an Extra or Clearing application. , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_UC_ENQUIRY_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_UC_ENQUIRY_DETAILS, object_name:IGSFV_UC_ENQUIRY_DETAILS, status:VALID, product: IGS - Student System , description: Full View for basic person details of a UCAS applicant making an Extra or Clearing application. , implementation_dba_data: APPS.IGSFV_UC_ENQUIRY_DETAILS ,
-
View: IGSFV_UC_ENQUIRY_DETAILS
12.2.2
product: IGS - Student System (Obsolete) , description: Full View for basic person details of a UCAS applicant making an Extra or Clearing application. , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_UC_APP_CLEARING_PKG SQL Statements
12.1.1
-
View: IGS_UC_APPL_DTLS_V
12.2.2
product: IGS - Student System (Obsolete) , description: Selects the Application , Application choice and clearing details for the applicants you can see , implementation_dba_data: Not implemented in this database ,
-
View: IGS_UC_APPL_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_UC_APPL_DTLS_V, object_name:IGS_UC_APPL_DTLS_V, status:VALID, product: IGS - Student System , description: Selects the Application , Application choice and clearing details for the applicants you can see , implementation_dba_data: APPS.IGS_UC_APPL_DTLS_V ,
-
APPS.IGS_UC_DAT_IMP_FROM_UCAS SQL Statements
12.1.1
-
TABLE: IGS.IGS_UC_APPLICANTS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_UC_APPLICANTS, object_name:IGS_UC_APPLICANTS, status:VALID,
-
PACKAGE BODY: APPS.IGS_UC_APP_CLEARING_PKG
12.1.1
-
VIEW: APPS.IGS_UC_APPL_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_UC_APPL_DTLS_V, object_name:IGS_UC_APPL_DTLS_V, status:VALID,
-
APPS.IGS_UC_APPLICANTS_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_UC_DAT_IMP_FROM_UCAS
12.1.1
-
APPS.IGS_UC_DAT_IMP_FROM_UCAS dependencies on IGS_UC_APPLICANTS
12.1.1
-
PACKAGE BODY: APPS.IGS_UC_APPLICANTS_PKG
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'. ,