Search Results preferred_given_name
Overview
IGR_IS_PERSON is an APPS-owned database view within the IGS (Student System) product family of Oracle E-Business Suite. It is documented in ETRM as an "Entry Status Organization units view," a designation that reflects its position within the prospect and inquiry-tracking branch of the student lifecycle, where individuals captured through inquiry or entry-status processing are held before they become fully enrolled learners. The view exposes person-identifying and demographic attributes for a single logical person record, scoped by operating unit, and surfaces the ROWID of the underlying row to support updatable or row-addressed processing.
Its principal role is to provide a stable, denormalized read interface over person data held in the IGR_IS_PER_ALL table, which is a multi-organization table partitioned by ORG_ID. By exposing ORG_ID alongside the person identifier, the view supports operating-unit-aware reporting and integration. Given that the search term associated with this object is "preferred_given_name," the view is frequently encountered when developers and analysts need to retrieve the preferred form of a person's forename — the name a prospect or student has elected to be addressed by, distinct from the legal GIVEN_NAME.
The view is marked VALID in the ETRM record, and the object name carries no _ALL suffix, indicating that row-level security and operating unit filtering are not automatically applied by the view itself; consumers must supply their own ORG_ID predicates where multi-org isolation is required.
Underlying Base Objects
The view is defined over a single documented base object, IGR_IS_PER_ALL, aliased as TAB in the view text. The relationship is a direct, one-to-one projection: each row in IGR_IS_PERSON corresponds to one row in IGR_IS_PER_ALL, and no joins, unions, or aggregations are performed. All twenty-six columns exposed by the view are drawn straight from the base table without expression or transformation.
Because IGR_IS_PER_ALL is a multi-organization table, the presence of ORG_ID in the view is the mechanism by which inquiry and prospect records remain segregated across operating units. The ROW_ID column is populated from TAB.ROWID, preserving the physical row address of the base record; this is significant because Oracle EBS forms and certain APIs use the ROWID as the handle for identifying and updating the current row. The ETRM metadata lists no additional referenced base objects, and no views, synonyms, or package-based logic are documented as contributing to the definition.
Key Columns
- ROW_ID — The ROWID of the underlying IGR_IS_PER_ALL row; used as the update handle in EBS form and API processing.
- ORG_ID — Operating unit identifier; the primary partitioning key for multi-org access to person records.
- INQ_PERSON_ID — Surrogate primary key identifying the inquiry person within the IGS student system.
- GIVEN_NAME, MIDDLE_NAME, SURNAME — The core name components of the person record.
- PREFERRED_GIVEN_NAME — The name the person prefers to be addressed by; this is the column most directly associated with the user's search term and is typically populated separately from the legal given name.
- TITLE, SUFFIX, PRE_NAME_ADJUNCT — Honorific and name-adjunct elements used in formatted name output.
- BIRTH_DT, SEX, ETHNIC_ORIGIN, CITIZENSHIP1_ID, CITIZENSHIP2_ID — Demographic and citizenship attributes captured during inquiry intake.
- STATUS — The entry or inquiry status of the person record.
- REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE, IMP_SOURCE_TYPE_ID — Application, program, and import/concurrent-processing context, including the source type from which the row was loaded.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — Standard EBS audit columns tracking who created and last modified the record.
Common Use Cases and Queries
The most frequent use of this view is retrieving the preferred forename for display in inquiry-tracking reports, correspondence, and integration extracts. A typical query filters to a specific operating unit and person:
- Listing preferred names for an operating unit:
SELECT inq_person_id, given_name, preferred_given_name, surname FROM apps.igr_is_person WHERE org_id = :p_org_id;
- Resolving persons who have a preferred name distinct from the legal name:
SELECT inq_person_id, given_name, preferred_given_name FROM apps.igr_is_person WHERE preferred_given_name IS NOT NULL AND preferred_given_name <> given_name;
- Locating a person by inquiry identifier together with status and program context:
SELECT inq_person_id, preferred_given_name, surname, status, program_id FROM apps.igr_is_person WHERE inq_person_id = :p_person_id AND org_id = :p_org_id;
- Auditing recently changed person records for an integration or import batch:
SELECT inq_person_id, preferred_given_name, last_updated_by, last_update_date FROM apps.igr_is_person WHERE org_id = :p_org_id AND last_update_date >= :p_since_date;
Because the view carries no _ALL suffix and applies no row-level security, every query against it should include an explicit ORG_ID predicate unless cross-operating-unit reporting is intended. Since the view is a direct projection of IGR_IS_PER_ALL, update statements should target the base table rather than the view, using ROW_ID for row identification where an EBS form or API supplies it.
-
View: IGR_IS_PERSON
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGR_IS_PERSON, object_name:IGR_IS_PERSON, status:VALID, product: IGS - Student System , description: Entry Status Organization units view , implementation_dba_data: APPS.IGR_IS_PERSON ,
-
View: IGS_RC_IS_PERSON
12.1.1
product: IGS - Student System , description: Entry Status Organization units view , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SS_INQ_PERSON
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_SS_INQ_PERSON, object_name:IGS_SS_INQ_PERSON, status:VALID, product: IGS - Student System , description: Self Service Inquiry Person View , implementation_dba_data: APPS.IGS_SS_INQ_PERSON ,
-
View: IGS_AD_RELATIONS_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_RELATIONS_INT, object_name:IGS_AD_RELATIONS_INT, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_RELATIONS_INT ,
-
View: IGS_AS_XSLISTCOM_ADI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_XSLISTCOM_ADI_V, object_name:IGS_AS_XSLISTCOM_ADI_V, status:VALID, product: IGS - Student System , description: Assessment Crosslisted Student List WebADI View , implementation_dba_data: APPS.IGS_AS_XSLISTCOM_ADI_V ,
-
View: IGS_AS_XSLISTSEP_ADI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_XSLISTSEP_ADI_V, object_name:IGS_AS_XSLISTSEP_ADI_V, status:VALID, product: IGS - Student System , description: Assessment Crosslisted Student List WebADI View , implementation_dba_data: APPS.IGS_AS_XSLISTSEP_ADI_V ,
-
View: IGS_PE_PERSON_LKUPV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_PERSON_LKUPV_V, object_name:IGS_PE_PERSON_LKUPV_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PE_PERSON_LKUPV_V ,
-
View: IGR_I_APPL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGR_I_APPL_V, object_name:IGR_I_APPL_V, status:VALID, product: IGS - Student System , description: This view will be based on OMO public view AS_SALES_LEADS_V and IGR_I_APPL_ALL junction table. , implementation_dba_data: APPS.IGR_I_APPL_V ,
-
Lookup Type: IGS_PE_DTL_ATTR_DISCRP_RULE
12.1.1
product: IGS - Student System , meaning: Person Detail Attribute Discrepancy Rule , description: Person Detail Attribute Discrepancy Rule ,
-
View: IGS_PE_PERSON_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_PERSON_DTLS_V, object_name:IGS_PE_PERSON_DTLS_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PE_PERSON_DTLS_V ,
-
View: IGS_AD_INTERFACE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_INTERFACE, object_name:IGS_AD_INTERFACE, status:VALID, product: IGS - Student System , description: Holds import interface run details when admissions data is imported into system , implementation_dba_data: APPS.IGS_AD_INTERFACE ,
-
View: IGS_AD_INTERFACE_DTL_DSCP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_INTERFACE_DTL_DSCP_V, object_name:IGS_AD_INTERFACE_DTL_DSCP_V, status:VALID, product: IGS - Student System , description: This view is created for implementing Detail Discrepancy Rule, basing on IGS_AD_INTERFACE_ALL table , implementation_dba_data: APPS.IGS_AD_INTERFACE_DTL_DSCP_V ,
-
View: IGS_RC_I_APPL_V
12.1.1
product: IGS - Student System , description: This view will be based on OMO public view AS_SALES_LEADS_V and IGS_RC_I_APPL_ALL junction table. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_EN_SCA_STATUS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_SCA_STATUS_V, object_name:IGS_EN_SCA_STATUS_V, status:VALID, product: IGS - Student System , description: This view describes student course attempt status along with displaying the course information and student information. , implementation_dba_data: APPS.IGS_EN_SCA_STATUS_V ,
-
View: IGS_AD_IMP_MATCHES_P_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_IMP_MATCHES_P_V, object_name:IGS_AD_IMP_MATCHES_P_V, status:VALID, product: IGS - Student System , description: Gets the person details for the import process from the interface and person statistic tables , implementation_dba_data: APPS.IGS_AD_IMP_MATCHES_P_V ,
-
View: IGS_AD_PS_APPL_APLCNTX_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PS_APPL_APLCNTX_V, object_name:IGS_AD_PS_APPL_APLCNTX_V, status:VALID, product: IGS - Student System , description: View of IGS_AD_PS_APPL, for forms requiring this table as a context block. - Obsolete , implementation_dba_data: APPS.IGS_AD_PS_APPL_APLCNTX_V ,
-
View: IGS_PR_DISPLAY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_DISPLAY_V, object_name:IGS_PR_DISPLAY_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PR_DISPLAY_V ,
-
Lookup Type: PERSON_TYPE_MAND_DATA
12.1.1
product: IGS - Student System , meaning: Mandatory Data For Person Type , description: Mandatory Data For Person Type ,
-
View: IGS_SS_PERSON_SEARCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_SS_PERSON_SEARCH_V, object_name:IGS_SS_PERSON_SEARCH_V, status:VALID, product: IGS - Student System , description: The entity is used in Self Service to query for a Person , implementation_dba_data: APPS.IGS_SS_PERSON_SEARCH_V ,
-
View: IGS_AD_IMP_MATCHES_PA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_IMP_MATCHES_PA_V, object_name:IGS_AD_IMP_MATCHES_PA_V, status:VALID, product: IGS - Student System , description: Gets the person details for the import process from the interface tables , implementation_dba_data: APPS.IGS_AD_IMP_MATCHES_PA_V ,
-
View: IGS_AD_SS_PERSON_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_SS_PERSON_V, object_name:IGS_AD_SS_PERSON_V, status:VALID, product: IGS - Student System , description: This view retrieves the Person Information , implementation_dba_data: APPS.IGS_AD_SS_PERSON_V ,
-
View: IGS_PE_PERSON_SV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_PERSON_SV, object_name:IGS_PE_PERSON_SV, status:VALID, product: IGS - Student System , description: IGS_PE_PERSON_SV is used to manipulate the secured information about persons stored in the database. , implementation_dba_data: APPS.IGS_PE_PERSON_SV ,
-
View: IGS_AD_IMP_MATCHES_PP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_IMP_MATCHES_PP_V, object_name:IGS_AD_IMP_MATCHES_PP_V, status:VALID, product: IGS - Student System , description: Gets the person details for the import process from the interface tables , implementation_dba_data: APPS.IGS_AD_IMP_MATCHES_PP_V ,
-
View: IGS_AD_IMP_MATCHES_PPA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_IMP_MATCHES_PPA_V, object_name:IGS_AD_IMP_MATCHES_PPA_V, status:VALID, product: IGS - Student System , description: Gets the person details for the import process from the interface and person address tables , implementation_dba_data: APPS.IGS_AD_IMP_MATCHES_PPA_V ,
-
View: IGS_RC_I_PERSON_V
12.1.1
product: IGS - Student System , description: Person View , implementation_dba_data: Not implemented in this database ,
-
View: IGS_FI_PARTIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_PARTIES_V, object_name:IGS_FI_PARTIES_V, status:VALID, product: IGS - Student System , description: Displays parties of type 'PERSON' and 'ORGANIZATION' and related context information. , implementation_dba_data: APPS.IGS_FI_PARTIES_V ,
-
View: IGS_AD_SS_INTPER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_SS_INTPER_V, object_name:IGS_AD_SS_INTPER_V, status:VALID, product: IGS - Student System , description: INS Dependent details , implementation_dba_data: APPS.IGS_AD_SS_INTPER_V ,
-
View: IGS_PE_PERSON_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_PERSON_V, object_name:IGS_PE_PERSON_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PE_PERSON_V ,
-
View: IGR_I_PERSON_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGR_I_PERSON_V, object_name:IGR_I_PERSON_V, status:VALID, product: IGS - Student System , description: Person View , implementation_dba_data: APPS.IGR_I_PERSON_V ,
-
View: IGS_PE_PERSON
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_PERSON, object_name:IGS_PE_PERSON, status:VALID, product: IGS - Student System , description: IGS_PE_PERSON is used to manipulate the information about persons stored in the database. , implementation_dba_data: APPS.IGS_PE_PERSON ,
-
View: IGS_PE_API_ALT_PERS_API_ID_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_API_ALT_PERS_API_ID_V, object_name:IGS_PE_API_ALT_PERS_API_ID_V, status:VALID, product: IGS - Student System , description: Alternate ID for API person id information. , implementation_dba_data: APPS.IGS_PE_API_ALT_PERS_API_ID_V ,
-
View: IGS_AD_ENQ_PERSON_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_ENQ_PERSON_V, object_name:IGS_AD_ENQ_PERSON_V, status:VALID, product: IGS - Student System , description: Obsolete , implementation_dba_data: APPS.IGS_AD_ENQ_PERSON_V ,
-
View: IGS_AD_POSTADM_MISS_ITM_LTR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_POSTADM_MISS_ITM_LTR_V, object_name:IGS_AD_POSTADM_MISS_ITM_LTR_V, status:VALID, product: IGS - Student System , description: It returns the Missing items for Post Admission Requirements , implementation_dba_data: APPS.IGS_AD_POSTADM_MISS_ITM_LTR_V ,
-
View: IGS_AD_RESI_LETTER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_RESI_LETTER_V, object_name:IGS_AD_RESI_LETTER_V, status:VALID, product: IGS - Student System , description: It would return the Residency Details of a student , implementation_dba_data: APPS.IGS_AD_RESI_LETTER_V ,
-
View: IGS_AD_INTERFACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_INTERFACE_V, object_name:IGS_AD_INTERFACE_V, status:VALID, product: IGS - Student System , description: Created using a join condition between igs_ad_interface and igs_lookups_view , implementation_dba_data: APPS.IGS_AD_INTERFACE_V ,
-
View: IGS_PE_API_ALT_PERS_ID_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_API_ALT_PERS_ID_V, object_name:IGS_PE_API_ALT_PERS_ID_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PE_API_ALT_PERS_ID_V ,
-
View: IGS_AD_ACK_LETTER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_ACK_LETTER_V, object_name:IGS_AD_ACK_LETTER_V, status:VALID, product: IGS - Student System , description: It would return the Acknowledgement Details of a student , implementation_dba_data: APPS.IGS_AD_ACK_LETTER_V ,
-
View: IGS_AD_INTERVIEW_LETTERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_INTERVIEW_LETTERS_V, object_name:IGS_AD_INTERVIEW_LETTERS_V, status:VALID, product: IGS - Student System , description: Admission Interview Letters , implementation_dba_data: APPS.IGS_AD_INTERVIEW_LETTERS_V ,
-
View: IGS_AD_OUTCOME_LETTERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_OUTCOME_LETTERS_V, object_name:IGS_AD_OUTCOME_LETTERS_V, status:VALID, product: IGS - Student System , description: The validations for the individual letters are placed at the SQLl query level that we attach to master document , implementation_dba_data: APPS.IGS_AD_OUTCOME_LETTERS_V ,
-
View: IGS_AD_MISSING_ITEMS_LETTER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_MISSING_ITEMS_LETTER_V, object_name:IGS_AD_MISSING_ITEMS_LETTER_V, status:VALID, product: IGS - Student System , description: Returns the missing items. For processing application of the student, few documents are required by the admission module. When student forget to send any document or miss out any document , then these documents are treated as missing items , implementation_dba_data: APPS.IGS_AD_MISSING_ITEMS_LETTER_V ,
-
Lookup Type: CAT_ATTR_NAME
12.1.1
product: IGS - Student System , meaning: Category Attribute Name , description: Category Attribute Name ,