Search Results igs_pe_person_base_v
Overview
The IGS_PE_PERSON_BASE_V view is a dictionary object owned by the APPS schema within the Oracle E-Business Suite environment. It belongs to the IGS product family, which constitutes the Student System module of EBS. As its description states, this view is a "Person Base View to hold basic person information," designed to present a denormalized, secure, and reporting-friendly projection of the core person records stored in the Trading Community Architecture (TCA) tables.
In Oracle EBS 12.1.1 and 12.2.2, the Student System relies extensively on TCA for identity management. Rather than querying HZ_PARTIES and HZ_PERSON_PROFILES independently — and handling the effective-dating logic manually — developers and report writers use IGS_PE_PERSON_BASE_V to retrieve a consolidated, current view of an individual. This makes the view a foundational object for student biographical lookups, enrollment processing, and third-party integrations that require clean person data without navigating the complexity of TCA partitioning.
Underlying Base Objects
Although the ETRM metadata in this release associates no referenced base objects explicitly, the view definition itself is documented and resolves over two TCA entities. The primary source is HZ_PARTIES (aliased as P), which stores the top-level party record — the master identifier for any person or organization known to the application. The secondary source is HZ_PERSON_PROFILES (aliased as PP), which holds person-specific attributes that apply only to human parties, including date of birth, gender, and date of death.
The join condition links the two tables on PARTY_ID. Critically, the view filters person profiles using an effective-dating predicate: SYSDATE BETWEEN PP.EFFECTIVE_START_DATE AND NVL(PP.EFFECTIVE_END_DATE, SYSDATE). This ensures that only the currently active profile row for each party is returned, preventing duplication that would otherwise occur when a person's profile has been versioned over time. The view therefore inherits its referential integrity from TCA while encapsulating date-effective selection logic for the consumer.
Key Columns
The view exposes twenty-one columns that map person identity and profile attributes. Notable columns include:
- ROW_ID — the rowid of the underlying
HZ_PARTIESrecord, useful for direct DML or diagnostics. - PERSON_ID — the
PARTY_ID, the unique party identifier used throughout EBS. - PERSON_NUMBER — the human-readable party number.
- PRE_NAME_ADJUNCT, FIRST_NAME, MIDDLE_NAME, LAST_NAME, TITLE, SUFFIX — the parsed name components stored on the party record.
- FULL_NAME — the formatted
PERSON_NAMEfrom the profile. - BIRTH_DATE, GENDER, DATE_OF_DEATH — demographic attributes sourced from the person profile.
- KNOWN_AS — the preferred or alias name for the individual.
- OBJECT_VERSION_NUMBER — used for optimistic locking in the TCA API layer.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard WHO columns.
Common Use Cases and Queries
Typical usage centers on biographical reporting and student identity lookups. A common pattern joins the view to student records in the Student System:
- Producing enrollment rosters with current legal and preferred names.
- Feeding downstream data warehouses or integrations with a single source of person data.
- Validating demographic completeness prior to admissions or registration processing.
- Supporting correspondence generation where addressable person details are required.
A representative query retrieves active person information for a given party:
SELECT person_id, person_number, full_name, known_as, birth_date, gender
FROM apps.igs_pe_person_base_v
WHERE person_id = :p_person_id;
Because the view applies effective dating internally, no additional date filtering is required by callers, which reduces the risk of returning stale or duplicate profile rows in dependent reports.
-
View: IGS_PE_PERSON_BASE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_PERSON_BASE_V, object_name:IGS_PE_PERSON_BASE_V, status:VALID, product: IGS - Student System , description: Person Base View to hold basic person information , implementation_dba_data: APPS.IGS_PE_PERSON_BASE_V ,
-
View: IGS_PE_PERSON_BASE_V
12.2.2
product: IGS - Student System (Obsolete) , description: Person Base View to hold basic person information , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AS_DUP_DOCS_V
12.1.1
-
VIEW: APPS.IGS_PE_PRSID_GRP_MEM_V
12.1.1
-
VIEW: APPS.IGF_SL_LOANS_SUM_V
12.1.1
-
VIEW: APPS.IGS_PE_PERS_ENCUMB_V
12.1.1
-
VIEW: APPS.IGS_TR_ITEM_V
12.1.1
-
APPS.IGS_AD_VAL_PE SQL Statements
12.1.1
-
VIEW: APPS.IGS_PE_STATIC_PIG_MEM_V
12.1.1
-
VIEW: APPS.IGS_EN_TIMESLOT_RSLT_V
12.1.1
-
VIEW: APPS.IGS_AD_PNMEMBR_DTLS_V
12.1.1
-
VIEW: APPS.IGS_PE_PRIV_LEVEL_V
12.1.1
-
APPS.IGS_AD_OFFRESP_STATUS_WF SQL Statements
12.1.1
-
VIEW: APPS.IGS_AD_LOCATION_V
12.1.1
-
VIEW: APPS.IGF_SP_STDNT_REL_V
12.1.1
-
APPS.IGS_FI_WAV_DTLS_WF SQL Statements
12.1.1
-
APPS.IGF_AW_LOCK_ASSGN_PKG SQL Statements
12.1.1
-
View: IGS_AS_DUP_DOCS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_DUP_DOCS_V, object_name:IGS_AS_DUP_DOCS_V, status:VALID, product: IGS - Student System , description: Duplicate Documents stores all the duplicate requests for a document. , implementation_dba_data: APPS.IGS_AS_DUP_DOCS_V ,
-
APPS.IGF_AP_VER_GRPS_PRC_PKG SQL Statements
12.1.1
-
View: IGS_AS_DUP_DOCS_V
12.2.2
product: IGS - Student System (Obsolete) , description: Duplicate Documents stores all the duplicate requests for a document. , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SL_LOANS_SUM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_LOANS_SUM_V, object_name:IGF_SL_LOANS_SUM_V, status:VALID, product: IGF - Financial Aid , description: Loans Summary View , implementation_dba_data: APPS.IGF_SL_LOANS_SUM_V ,
-
VIEW: APPS.IGS_TR_STEP_V
12.1.1
-
VIEW: APPS.IGS_AD_PS_APLINSTUNT_V
12.1.1
-
View: IGS_PE_PERS_ENCUMB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_PERS_ENCUMB_V, object_name:IGS_PE_PERS_ENCUMB_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PE_PERS_ENCUMB_V ,
-
VIEW: APPS.IGS_PE_INTL_DEPD_V
12.1.1
-
APPS.IGS_EN_WORKFLOW SQL Statements
12.1.1
-
VIEW: APPS.IGS_TR_TYPE_STEP_V
12.1.1
-
VIEW: APPS.IGS_PE_DUP_PERSON_V
12.1.1
-
VIEW: APPS.IGS_UC_APP_CHOICE_DETS_V
12.1.1
-
VIEW: APPS.IGS_EN_STDNT_PS_ATT_V
12.1.1
-
View: IGS_PE_PRSID_GRP_MEM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_PRSID_GRP_MEM_V, object_name:IGS_PE_PRSID_GRP_MEM_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PE_PRSID_GRP_MEM_V ,
-
View: IGF_SL_LOANS_SUM_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Loans Summary View , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_PERS_ENCUMB_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PE_CREDENTIALS_V
12.1.1
-
VIEW: APPS.IGS_AV_STND_UNIT_DTL_V
12.1.1
-
VIEW: APPS.IGS_AD_STDNT_PS_ATT_V
12.1.1
-
VIEW: APPS.IGS_PE_PERSID_GROUP_V
12.1.1
-
View: IGS_TR_ITEM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_TR_ITEM_V, object_name:IGS_TR_ITEM_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_TR_ITEM_V ,
-
VIEW: APPS.IGS_AD_PANEL_DTLS_V
12.1.1
-
View: IGS_TR_ITEM_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AD_PROSPECT_V
12.1.1
-
View: IGS_PE_PRSID_GRP_MEM_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_EN_SUA_RULCHK_V
12.1.1
-
VIEW: APPS.IGS_AD_APPL_PGMAPPRV_V
12.1.1
-
VIEW: APPS.IGS_PS_FAC_CAL_INST_V
12.1.1
-
APPS.IGS_PE_SET_REM_HOLDS SQL Statements
12.1.1
-
APPS.IGS_RE_WORKFLOW SQL Statements
12.1.1
-
VIEW: APPS.IGS_PE_VISA_V
12.1.1
-
VIEW: APPS.IGS_AV_STND_UNIT_LVL_V
12.1.1
-
View: IGS_PE_PRIV_LEVEL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_PRIV_LEVEL_V, object_name:IGS_PE_PRIV_LEVEL_V, status:VALID, product: IGS - Student System , description: Stores Person's Privacy Level , implementation_dba_data: APPS.IGS_PE_PRIV_LEVEL_V ,