Search Results birth_dt
Overview
The IGS_PE_PRSID_GRP_MEM_V view is a reporting object within the Oracle E-Business Suite IGS (Student System) module, which is documented as obsolete in the ETRM reference for releases 12.1.1 and 12.2.2. The view presents a consolidated, denormalized snapshot of members belonging to person identification groups and personal identification groups, blending person biographical attributes with group membership records. Its principal role is to expose group membership data in a form suitable for reporting, inquiry, and integration, allowing developers and analysts to resolve group constituents without repeatedly joining the underlying membership and person tables themselves.
In the context of the user's search for "birth_dt", the view is significant because it exposes the person's birth date under the alias BIRTH_DT. This aliasing allows consumers to query a single, stable column name for age calculation, demographic reporting, and identification verification rather than resolving the native BIRTH_DATE column on the person base view.
Underlying Base Objects
According to the documented view text, no base objects are formally registered in the ETRM metadata; however, the definition references several concrete objects. The first branch of the UNION ALL joins IGS_PE_PERSON_BASE_V (aliased PE) to IGS_PE_PRSID_GRP_MEM_ALL (aliased GM) on PERSON_ID. This branch surfaces explicit person identification group members.
The second branch joins the same person base view to IGS_PE_PERSID_GROUP_ALL (aliased GP), applying the FILE_NAME IS NOT NULL filter and invoking the dynamic membership function IGS_PE_DYNAMIC_PERSID_GROUP.DYN_PIG_MEMBER(GROUP_ID, PERSON_ID). This resolves dynamically defined personal identification group members. Supporting package calls to IGS_EN_GEN_003 are used to derive the STUDENT_IND, STAFF_IND, and ENCUMBERED_IND flags. The use of ROWID as ROW_ID and SYSDATE/TO_DATE(NULL) in the second branch indicates a synthesized start date and null end date for dynamic members.
Key Columns
- BIRTH_DT — the person's birth date, aliased from PE.BIRTH_DATE. This is the column implicated in the user's search.
- ROW_ID — the ROWID of either the membership row (branch one) or the person row (branch two), useful for uniqueness and diagnostics.
- GROUP_ID — identifier of the person or personal identification group to which the member belongs.
- PERSON_ID — the unique person identifier linking to the person base view.
- PERSON_NUMBER — the externally visible person identifier assigned by the institution.
- FULL_NAME — the person's formatted full name.
- SEX — the person's gender, aliased from PE.GENDER.
- START_DATE / END_DATE — membership validity window; END_DATE is null for dynamic members.
- STUDENT_IND / STAFF_IND / ENCUMBERED_IND — derived flags returned by IGS_EN_GEN_003 package functions indicating student, staff, and encumbrance status.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard audit columns.
Common Use Cases and Queries
Typical usage includes roster reporting for identification groups, demographic analysis by birth date, and integration feeds that must resolve group membership together with person attributes. Because the view unifies static and dynamic membership, it is well suited to point-in-time queries.
Example query retrieving members with birth dates for a given group:
SELECT group_id, person_id, person_number, full_name, sex, birth_dt FROM igs_pe_prsid_grp_mem_v WHERE group_id = :p_group_id ORDER BY full_name;SELECT person_id, full_name, birth_dt, student_ind, staff_ind, encumbered_ind FROM igs_pe_prsid_grp_mem_v WHERE active membership between start_date and end_date;SELECT COUNT(*), TRUNC(MONTHS_BETWEEN(SYSDATE, birth_dt)/12) age FROM igs_pe_prsid_grp_mem_v GROUP BY TRUNC(MONTHS_BETWEEN(SYSDATE, birth_dt)/12);
Because the module is obsolete, implementers upgrading to later releases should confirm whether equivalent functionality has been replaced by successor person group views before relying on this object for long-term customizations.
-
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_PE_PRSID_GRP_MEM_V
12.1.1
-
VIEW: APPS.IGF_AP_RECORD_MATCH_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: IGS_PE_STATIC_PIG_MEM_V
12.2.2
product: IGS - Student System (Obsolete) , description: This will be used to view static person ID group members , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PE_DUP_MATCHES_P_V
12.1.1
-
View: IGF_AP_RECORD_MATCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_RECORD_MATCH_V, object_name:IGF_AP_RECORD_MATCH_V, status:VALID, product: IGF - Financial Aid , description: Retrieves the person attributes which are to be used for matching new ISIR or Profile record with existing person , implementation_dba_data: APPS.IGF_AP_RECORD_MATCH_V ,
-
View: IGS_CO_S_PER_LTR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CO_S_PER_LTR_V, object_name:IGS_CO_S_PER_LTR_V, status:VALID, product: IGS - Student System , description: IGS_CO_S_PER_LTR_V describes the system letter to be produced for the person. , implementation_dba_data: APPS.IGS_CO_S_PER_LTR_V ,
-
View: IGF_GR_PERSON_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_PERSON_V, object_name:IGF_GR_PERSON_V, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_GR_PERSON_V ,
-
View: IGS_PE_DUP_MATCHES_PP_V
12.2.2
product: IGS - Student System (Obsolete) , description: IGS_PE_DUP_MATCHES_PP_V is used for the duplicate information about persons. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_DUP_MATCHES_P_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_DUP_MATCHES_P_V, object_name:IGS_PE_DUP_MATCHES_P_V, status:VALID, product: IGS - Student System , description: IGS_PE_DUP_MATCHES_P_V is used for the duplicate information about persons. , implementation_dba_data: APPS.IGS_PE_DUP_MATCHES_P_V ,
-
View: IGS_PE_DUP_PERSON_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_DUP_PERSON_V, object_name:IGS_PE_DUP_PERSON_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PE_DUP_PERSON_V ,
-
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_AD_RELATIONS_INT
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AS_EXM_SUPRVISOR_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_DUP_MATCHES_PRIM_PA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_DUP_MATCHES_PRIM_PA_V, object_name:IGS_PE_DUP_MATCHES_PRIM_PA_V, status:VALID, product: IGS - Student System , description: Contains data of a person and his primary address.This view is used in duplicate matching of person. , implementation_dba_data: APPS.IGS_PE_DUP_MATCHES_PRIM_PA_V ,
-
View: IGS_PE_STATIC_PIG_MEM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_STATIC_PIG_MEM_V, object_name:IGS_PE_STATIC_PIG_MEM_V, status:VALID, product: IGS - Student System , description: This will be used to view static person ID group members , implementation_dba_data: APPS.IGS_PE_STATIC_PIG_MEM_V ,
-
View: IGS_PE_DUP_MATCHES_P_V
12.2.2
product: IGS - Student System (Obsolete) , description: IGS_PE_DUP_MATCHES_P_V is used for the duplicate information about persons. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_DUP_MATCHES_PRIM_PA_V
12.2.2
product: IGS - Student System (Obsolete) , description: Contains data of a person and his primary address.This view is used in duplicate matching of person. , implementation_dba_data: Not implemented in this database ,
-
View: IGF_AP_RECORD_MATCH
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_RECORD_MATCH, object_name:IGF_AP_RECORD_MATCH, status:VALID, product: IGF - Financial Aid , description: Retrieves the person attributes which are to be used for matching new ISIR or Profile record with existing person , implementation_dba_data: APPS.IGF_AP_RECORD_MATCH ,
-
VIEW: APPS.IGS_PE_STATIC_PIG_MEM_V
12.1.1
-
View: IGF_AP_RECORD_MATCH
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Retrieves the person attributes which are to be used for matching new ISIR or Profile record with existing person , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PE_DUP_MATCHES_PP_V
12.1.1
-
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_AD_PS_APLCNTX_LKUP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PS_APLCNTX_LKUP_V, object_name:IGS_AD_PS_APLCNTX_LKUP_V, status:VALID, product: IGS - Student System , description: View of IGS_AD_PS_APPL_APLCNTX_V for forms, requiring this table as a context block - Obsolete , implementation_dba_data: APPS.IGS_AD_PS_APLCNTX_LKUP_V ,
-
View: IGS_PE_DUP_MATCHES_PA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_DUP_MATCHES_PA_V, object_name:IGS_PE_DUP_MATCHES_PA_V, status:VALID, product: IGS - Student System , description: IGS_PE_DUP_MATCHES_PA_V is used for the duplicate information about persons. , implementation_dba_data: APPS.IGS_PE_DUP_MATCHES_PA_V ,
-
View: IGS_PE_DUP_MATCHES_PRIM_PPA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_DUP_MATCHES_PRIM_PPA_V, object_name:IGS_PE_DUP_MATCHES_PRIM_PPA_V, status:VALID, product: IGS - Student System , description: Contains data of a person and his primary address.This view is used in duplicate matching of person. , implementation_dba_data: APPS.IGS_PE_DUP_MATCHES_PRIM_PPA_V ,
-
View: IGS_PE_DUP_MATCHES_PPA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_DUP_MATCHES_PPA_V, object_name:IGS_PE_DUP_MATCHES_PPA_V, status:VALID, product: IGS - Student System , description: IGS_PE_MATCHES_PPA_V is used for the duplicate information about persons. , implementation_dba_data: APPS.IGS_PE_DUP_MATCHES_PPA_V ,
-
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_PE_DUP_MATCHES_PP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_DUP_MATCHES_PP_V, object_name:IGS_PE_DUP_MATCHES_PP_V, status:VALID, product: IGS - Student System , description: IGS_PE_DUP_MATCHES_PP_V is used for the duplicate information about persons. , implementation_dba_data: APPS.IGS_PE_DUP_MATCHES_PP_V ,
-
View: IGS_CO_S_PER_LTR_V
12.2.2
product: IGS - Student System (Obsolete) , description: IGS_CO_S_PER_LTR_V describes the system letter to be produced for the person. , implementation_dba_data: Not implemented in this database ,
-
View: IGF_AP_RECORD_MATCH_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Retrieves the person attributes which are to be used for matching new ISIR or Profile record with existing person , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_PERSON_LKUPV_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_DUP_MATCHES_PA_V
12.2.2
product: IGS - Student System (Obsolete) , description: IGS_PE_DUP_MATCHES_PA_V is used for the duplicate information about persons. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AD_RELATIONS_INT
12.1.1
-
View: IGS_AS_EXM_SUPRVISOR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_EXM_SUPRVISOR_V, object_name:IGS_AS_EXM_SUPRVISOR_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AS_EXM_SUPRVISOR_V ,
-
VIEW: APPS.IGR_IS_PERSON
12.1.1
-
VIEW: APPS.IGS_SS_INQ_PERSON
12.1.1
-
View: IGS_PS_FAC_CAL_INST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_FAC_CAL_INST_V, object_name:IGS_PS_FAC_CAL_INST_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_FAC_CAL_INST_V ,
-
View: IGS_RC_IS_PERSON
12.2.2
product: IGS - Student System (Obsolete) , description: Entry Status Organization units view , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AD_PS_APLCNTX_LKUP_V
12.2.2
product: IGS - Student System (Obsolete) , description: View of IGS_AD_PS_APPL_APLCNTX_V for forms, requiring this table as a context block - Obsolete , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SS_INQ_PERSON
12.2.2
product: IGS - Student System (Obsolete) , description: Self Service Inquiry Person 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: APPS.IGS_PE_DUP_MATCHES_P_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_DUP_MATCHES_P_V, object_name:IGS_PE_DUP_MATCHES_P_V, status:VALID,
-
View: IGS_AS_SUA_ASS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SUA_ASS_V, object_name:IGS_AS_SUA_ASS_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AS_SUA_ASS_V ,
-
View: IGS_PS_FAC_CAL_INST_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGR_IS_PERSON
12.2.2
product: IGS - Student System (Obsolete) , description: Entry Status Organization units view , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_DUP_PERSON_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_GR_PERSON_V
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_CO_S_PER_LTR_V
12.1.1