Search Results encumbered_ind
Overview
IGS_PE_PRSID_GRP_MEM_V is a seed-data view in the Oracle E-Business Suite (EBS) 12.1.1 / 12.2.2 environment, owned by the APPS schema and belonging to the Student Systems (IGS) product family. It presents person identifier group memberships — that is, the association between a person (student, applicant, or staff member) and a person identification group — enriched with core biographical attributes drawn from the person base view. The view is primarily consumed by Oracle Student System processes such as person identifier group maintenance, communications generation, and enrollment-related reporting.
The column alias BIRTH_DT in this view is the reason it typically surfaces in searches for "birth_dt". Callers frequently join or query this view to obtain a person's date of birth alongside group membership context, rather than querying the person base view directly. The view is also referenceable through Oracle EBS's standard reporting and integration layers (e.g., BI Publisher data models, concurrent programs, and OAF-based pages).
Underlying Base Objects
The view is defined over two base objects: IGS_PE_PERSON_BASE_V (aliased PE) and, depending on the union branch, either IGS_PE_PRSID_GRP_MEM_ALL (aliased GM) or IGS_PE_PERSID_GROUP_ALL (aliased GP). The ETRM metadata lists no additional documented base objects; the definition itself supplies the complete dependency set.
The view is constructed as a UNION ALL of two queries:
- The first branch joins
IGS_PE_PERSON_BASE_VtoIGS_PE_PRSID_GRP_MEM_ALLonPERSON_ID, returning stored group membership rows with their actualSTART_DATEandEND_DATE. - The second branch joins
IGS_PE_PERSON_BASE_VtoIGS_PE_PERSID_GROUP_ALL, but only for groups whereFILE_NAME IS NOT NULLand where the person is a member according to the dynamic group functionIGS_PE_DYNAMIC_PERSID_GROUP.DYN_PIG_MEMBER(GROUP_ID, PERSON_ID). For these dynamic memberships it substitutesSYSDATEas the start date andTO_DATE(NULL)as the end date.
The union therefore merges statically stored memberships with dynamically evaluated memberships, presenting them as a single logical population.
Key Columns
ROW_ID— the ROWID of the underlying person base row, retained for update/identification purposes.GROUP_ID— identifier of the person identification group.PERSON_ID,PERSON_NUMBER,FULL_NAME— core person identifiers and name.SEX— the person's gender, aliased fromPE.GENDER.BIRTH_DT— the person's date of birth, aliased fromPE.BIRTH_DATE; this is the column most commonly searched for in this view.START_DATE,END_DATE— the effective period of the group membership; for dynamic memberships, start resolves toSYSDATEand end to NULL.STUDENT_IND,STAFF_IND,ENCUMBERED_IND— flags derived from theIGS_EN_GEN_003package functions, indicating student, staff, and encumbrance status respectively.- Standard audit columns
CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE, andLAST_UPDATE_LOGIN.
Common Use Cases and Queries
Typical uses include retrieving birthday information for members of a given person identifier group (e.g., for communications or compliance reporting), auditing membership periods, and distinguishing static versus dynamic memberships.
Example — retrieve members of a group with their birth dates:
SELECT person_id, person_number, full_name, birth_dt, group_id, start_date, end_dateFROM apps.igs_pe_prsid_grp_mem_vWHERE group_id = :p_group_idORDER BY full_name;
Example — filter by student status and date of birth range:
SELECT person_number, full_name, birth_dt, student_indFROM apps.igs_pe_prsid_grp_mem_vWHERE student_ind = 'Y' AND birth_dt BETWEEN :from_dt AND :to_dt;
Because dynamic memberships return SYSDATE as START_DATE, queries that compare membership periods should account for the union branch when interpreting results.
-
VIEW: APPS.IGS_PE_PRSID_GRP_MEM_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: 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: 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: APPS.IGS_PE_STATIC_PIG_MEM_V
12.1.1
-
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_AS_EXM_SUPRVISOR_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_AW_FUND_GRP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_FUND_GRP_V, object_name:IGF_AW_FUND_GRP_V, status:VALID,
-
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: APPS.IGS_AD_PS_APLCNTX_LKUP_V
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.IGS_AV_ADV_STANDING_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AV_ADV_STANDING_V, object_name:IGS_AV_ADV_STANDING_V, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.IGS_AS_EXM_SUPRVISOR_V
12.1.1
-
View: IGS_AD_PS_APPL_INST_CONTEXT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PS_APPL_INST_CONTEXT_V, object_name:IGS_AD_PS_APPL_INST_CONTEXT_V, status:VALID, product: IGS - Student System , description: View of IGS_AD_PS_APPL_INST_APLINST_V for forms requiring this table as a context block. , implementation_dba_data: APPS.IGS_AD_PS_APPL_INST_CONTEXT_V ,
-
VIEW: APPS.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,
-
View: IGF_AP_EFC_DET_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_EFC_DET_V, object_name:IGF_AP_EFC_DET_V, status:VALID, product: IGF - Financial Aid , description: View stores the computed end result of family contribution for each student under all methodologies , implementation_dba_data: APPS.IGF_AP_EFC_DET_V ,
-
View: IGS_RE_CANDIDATURE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_RE_CANDIDATURE_V, object_name:IGS_RE_CANDIDATURE_V, status:VALID, product: IGS - Student System , description: This view is of the candidature table. It includes a column called course_cd which is sca_course_cd if it exists, otherwise acai_nominated_course_cd. This view is to support form RESF32111. , implementation_dba_data: APPS.IGS_RE_CANDIDATURE_V ,
-
View: IGF_AP_EFC_DET_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: View stores the computed end result of family contribution for each student under all methodologies , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.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,
-
View: IGS_PE_PERSON_DTLS_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.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,
-
View: IGS_AD_PS_APPL_INST_CONTEXT_V
12.2.2
product: IGS - Student System (Obsolete) , description: View of IGS_AD_PS_APPL_INST_APLINST_V for forms requiring this table as a context block. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_RE_CANDIDATURE_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view is of the candidature table. It includes a column called course_cd which is sca_course_cd if it exists, otherwise acai_nominated_course_cd. This view is to support form RESF32111. , implementation_dba_data: Not implemented in this database ,
-
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: APPS.IGS_GR_GRADUANDS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_GR_GRADUANDS_V, object_name:IGS_GR_GRADUANDS_V, status:VALID,
-
VIEW: APPS.IGS_RE_CANDIDATURE_V
12.1.1
-
View: IGF_AW_FUND_GRP_V
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AV_ADV_STANDING_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AV_ADV_STANDING_V, object_name:IGS_AV_ADV_STANDING_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AV_ADV_STANDING_V ,
-
View: IGF_AW_FUND_GRP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_FUND_GRP_V, object_name:IGF_AW_FUND_GRP_V, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_AW_FUND_GRP_V ,
-
VIEW: APPS.IGS_GR_AWD_CRMN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_GR_AWD_CRMN_V, object_name:IGS_GR_AWD_CRMN_V, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.IGF_AP_EFC_DET_V
12.1.1
-
VIEW: APPS.IGS_AD_PS_APPL_INST_CONTEXT_V
12.1.1
-
View: IGS_AV_ADV_STANDING_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.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,
-
VIEW: APPS.IGF_AP_EFC_DET_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_EFC_DET_V, object_name:IGF_AP_EFC_DET_V, status:VALID,
-
VIEW: APPS.IGS_PE_PERSON_DTLS_V
12.1.1
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
View: IGF_AP_PERSON_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_PERSON_V, object_name:IGF_AP_PERSON_V, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_AP_PERSON_V ,
-
VIEW: APPS.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,
-
View: IGF_AP_PERSON_V
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_GR_AWD_CRMN_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_GR_AWD_CRMN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_GR_AWD_CRMN_V, object_name:IGS_GR_AWD_CRMN_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_GR_AWD_CRMN_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.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_GR_GRADUANDS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_GR_GRADUANDS_V, object_name:IGS_GR_GRADUANDS_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_GR_GRADUANDS_V ,
-
View: IGS_GR_GRADUANDS_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,