Search Results adm_adm_cal_type
Overview
IGS_PE_PERS_PREFS is a reporting view in the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 environments, owned by the APPS schema. It belongs to the Student Information Management / PeopleSoft-style "IGS" (Integrated Graduate System / Student System) family of objects used within Oracle Student System and related CRM admission modules. The view exposes person-level preference defaults — the operational settings that control how an individual user or person interacts with enrolment, admissions, and enquiry processing screens. Its central role is to provide a stable, Multi-Org-secured read interface over the underlying preference table so that forms, concurrent programs, and integrations can retrieve admission and enrolment context defaults without directly querying the base table. The column adm_s_admission_process_type, which the user searched for, is surfaced here as a preference indicating the default admission process type that applies to the person's admission activities.
Underlying Base Objects
The view text shows it is defined with a simple projection over a single base table:
- IGS_PE_PERS_PREFS_ALL — the source table, referenced as
tabin the SELECT statement. The_ALLsuffix confirms it is a Multi-Org (operating unit) enabled table, carrying anORG_IDcolumn. - Although the ETRM metadata lists "Referenced base objects: none documented," the view definition itself explicitly names
igs_pe_pers_prefs_allas the sole source. No joins to descriptor or lookup tables appear in the view text. - Row identity is preserved through
TAB.ROWID AS ROW_ID, and standard audit columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN) are carried through unchanged.
The WHERE clause applies the standard EBS Multi-Org security predicate, comparing ORG_ID against the operating unit derived from USERENV('CLIENT_INFO'), defaulting to -99 when no client context is set. This means the view returns only rows for the currently selected operating unit (or the -99 sentinel when Org context is absent).
Key Columns
- PERSON_ID — the person whose preferences are recorded; the primary business key alongside ORG_ID.
- ADM_S_ADMISSION_PROCESS_TYPE — the default admission process type for the person; the column referenced in the user's search. It drives which admission workflow is preselected in admissions forms.
- ADM_ADMISSION_CAT — default admission category.
- ADM_ACAD_CAL_TYPE / ADM_ACAD_CI_SEQUENCE_NUMBER — default academic calendar type and calendar instance sequence for admissions.
- ADM_ADM_CAL_TYPE / ADM_ADM_CI_SEQUENCE_NUMBER — default admission calendar type and instance sequence.
- ENR_ACAD_CAL_TYPE, ENR_ACAD_SEQUENCE_NUMBER, ENR_ENROLMENT_CAT, ENR_ENR_METHOD_TYPE — enrolment defaults: academic calendar, enrolment category, and enrolment method type.
- ENQ_ACAD_CAL_TYPE, ENQ_ACAD_CI_SEQUENCE_NUMBER, ENQ_ADM_CAL_TYPE, ENQ_ADM_CI_SEQUENCE_NUMBER — enquiry calendar defaults.
- SERVER_PRINTER_DFLT — default server printer.
- ALLOW_STND_REQ_IND — flag indicating whether standing requirements are permitted.
- ORG_ID and the audit columns — operating unit and standard EBS "who" columns.
Common Use Cases and Queries
Typical uses include retrieving a person's default admission process type, populating admission/enrolment form defaults, and integration extracts that require person preference settings. Because the view enforces Org security, callers must set an operating unit context (via FND_GLOBAL or the client info) before querying.
- Retrieve the admission process type for a person:
SELECT person_id, adm_s_admission_process_type FROM apps.igs_pe_pers_prefs WHERE person_id = :p_person_id; - List all preference defaults for an operating unit:
SELECT person_id, adm_admission_cat, enr_enrolment_cat FROM apps.igs_pe_pers_prefs WHERE org_id = :p_org_id; - Filter by a specific admission process type to identify affected persons:
SELECT person_id FROM apps.igs_pe_pers_prefs WHERE adm_s_admission_process_type = :p_process_type;
Because it is a read-only projection with no joins, performance is generally good provided standard indexes on PERSON_ID and ORG_ID exist on the base table. All queries should reference the APPS synonym and honour Multi-Org context.
-
VIEW: APPS.IGS_PE_PERS_PREFS
12.1.1
-
View: IGS_PE_PERS_PREFS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_PERS_PREFS, object_name:IGS_PE_PERS_PREFS, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PE_PERS_PREFS ,
-
View: IGS_PE_PERS_PREFS
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PE_PERS_PREFS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_PERS_PREFS, object_name:IGS_PE_PERS_PREFS, status:VALID,
-
VIEW: APPS.IGS_AD_SESSION_DTL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_SESSION_DTL_V, object_name:IGS_AD_SESSION_DTL_V, status:VALID,
-
TABLE: IGS.IGS_PE_PERS_PREFS_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PE_PERS_PREFS_ALL, object_name:IGS_PE_PERS_PREFS_ALL, status:VALID,
-
View: IGS_AD_SESSION_DTL_V
12.2.2
product: IGS - Student System (Obsolete) , description: Session Details Information , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_PERSON_PREFS_ADM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_PERSON_PREFS_ADM_V, object_name:IGS_PE_PERSON_PREFS_ADM_V, status:VALID, product: IGS - Student System , description: Admission columns on the person_prefs table. Incorporates alternate codes and CI start and end dates for both calendars. , implementation_dba_data: APPS.IGS_PE_PERSON_PREFS_ADM_V ,
-
View: IGS_AD_SESSION_DTL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_SESSION_DTL_V, object_name:IGS_AD_SESSION_DTL_V, status:VALID, product: IGS - Student System , description: Session Details Information , implementation_dba_data: APPS.IGS_AD_SESSION_DTL_V ,
-
View: IGS_PE_PERSON_PREFS_ADM_V
12.2.2
product: IGS - Student System (Obsolete) , description: Admission columns on the person_prefs table. Incorporates alternate codes and CI start and end dates for both calendars. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PE_PERSON_PREFS_ADM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_PERSON_PREFS_ADM_V, object_name:IGS_PE_PERSON_PREFS_ADM_V, status:VALID,
-
APPS.IGS_PE_PERS_PREFS_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_PE_PERS_PREFS_PKG
12.1.1
-
APPS.IGS_PE_PERS_PREFS_PKG dependencies on IGS_GE_MSG_STACK
12.1.1
-
APPS.IGS_PE_PERS_PREFS_PKG dependencies on APP_EXCEPTION
12.1.1
-
APPS.IGS_PE_PERS_PREFS_PKG dependencies on FND_MESSAGE
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'. ,