Search Results igs_en_gen_003
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: APPS.IGS_PE_STATIC_PIG_MEM_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: 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_API_ALT_PERS_API_ID_V
12.1.1
-
VIEW: APPS.IGS_EN_CAT_PROCEDURE_STEP_V
12.1.1
-
VIEW: APPS.IGS_PE_PERSON_DTLS_V
12.1.1
-
VIEW: APPS.IGS_PE_API_ALT_PERS_ID_V
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_GEN_003
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_GEN_003, status:VALID,
-
VIEW: APPS.IGS_PR_DISPLAY_V
12.1.1
-
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_PE_API_ALT_PERS_API_ID_V
12.2.2
product: IGS - Student System (Obsolete) , description: Alternate ID for API person id information. , implementation_dba_data: Not implemented in this database ,
-
PACKAGE: APPS.IGS_EN_GEN_003
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGS_EN_GEN_003, status:VALID,
-
VIEW: APPS.IGS_FI_PARTIES_V
12.1.1
-
VIEW: APPS.IGF_AP_PERSON_V
12.1.1
-
VIEW: APPS.IGS_AD_SS_PERSON_V
12.1.1
-
VIEW: APPS.IGS_PE_PERSON_SV
12.1.1
-
VIEW: APPS.IGS_PE_PERSON
12.1.1
-
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_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_PE_PERSON_DTLS_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PE_PERSON_LKUPV_V
12.1.1
-
View: IGS_PE_API_ALT_PERS_ID_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
PACKAGE: APPS.IGS_EN_GEN_003
12.1.1
-
VIEW: APPS.IGS_PE_PERSON_V
12.1.1
-
APPS.IGS_PS_VAL_UOO SQL Statements
12.1.1
-
VIEW: APPS.IGS_AS_SUAAI_HIST_V
12.1.1
-
VIEW: APPS.IGF_AP_EFC_DET_V
12.1.1
-
VIEW: APPS.IGS_RE_CANDIDATURE_V
12.1.1
-
VIEW: APPS.IGS_AD_SS_INTPER_V
12.1.1
-
PACKAGE: APPS.IGS_PE_STAT_DETAILS_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGS_PE_STAT_DETAILS_PKG, status:VALID,
-
View: IGS_EN_CAT_PROCEDURE_STEP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_CAT_PROCEDURE_STEP_V, object_name:IGS_EN_CAT_PROCEDURE_STEP_V, status:VALID, product: IGS - Student System , description: IGS_EN_CAT_PROCEDURE_STEP_V performs the appropriate steps that have to be followed based on the enrolment procedure look up. , implementation_dba_data: APPS.IGS_EN_CAT_PROCEDURE_STEP_V ,
-
View: IGS_EN_CAT_PROCEDURE_STEP_V
12.2.2
product: IGS - Student System (Obsolete) , description: IGS_EN_CAT_PROCEDURE_STEP_V performs the appropriate steps that have to be followed based on the enrolment procedure look up. , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_PE_GEN_001
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PE_GEN_001, status:VALID,
-
SYNONYM: APPS.IGS_PE_PERS_UNT_EXCL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_PE_PERS_UNT_EXCL, status:VALID,
-
PACKAGE BODY: APPS.IGS_PS_VAL_UOO
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PS_VAL_UOO, status:VALID,
-
PACKAGE BODY: APPS.IGS_RE_VAL_TPM
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_RE_VAL_TPM, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_REINSTATE_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_REINSTATE_PKG, status:VALID,
-
SYNONYM: APPS.IGS_PE_STAT_DETAILS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_PE_STAT_DETAILS, status:VALID,
-
PACKAGE: APPS.IGS_EN_GEN_006
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGS_EN_GEN_006, status:VALID,
-
SYNONYM: APPS.IGS_FI_FND_SRC_RSTN
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_FI_FND_SRC_RSTN, status:VALID,
-
PACKAGE BODY: APPS.IGS_RE_VAL_RSUP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_RE_VAL_RSUP, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_IMP_027
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_IMP_027, status:VALID,
-
View: IGF_AP_PERSON_V
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
SYNONYM: APPS.IGS_PE_PERSENC_EFFCT
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_PE_PERSENC_EFFCT, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_GEN_016
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_GEN_016, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_ELGBL_PERSON
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_ELGBL_PERSON, 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 ,