Search Results igs_pe_persid_group_v
Overview
IGS_PE_PERSID_GROUP_V is a reporting view owned by the APPS schema within the IGS (Student System) product family of Oracle E-Business Suite. It presents person identification groups — logical groupings of person identifiers maintained in the student system — together with descriptive information about the person who created each group. The view is defined in both EBS 12.1.1 and 12.2.2 and is documented with a status of VALID in the ETRM repository.
The view is intended primarily for inquiry, reporting, and integration rather than for transactional maintenance. Identification groups are used by the student system to categorize and process person identifier records in bulk, for example when a set of identifiers must be loaded, validated, or processed together. By exposing the group header, its attributes, its audit columns, and the creator's name and person number in a single row, the view removes the need for consumers to join the group table to the person tables themselves. This makes it a convenient source for concurrent programs, BI Publisher reports, Oracle Reports, and outbound interfaces that must present group information in human-readable form.
Underlying Base Objects
The view is defined over two documented objects: the base table IGS_PE_PERSID_GROUP_ALL and the view IGS_PE_PERSON_BASE_V. The join condition is PE.PERSON_ID = PG.CREATOR_PERSON_ID, an inner join that returns group rows only when the creator person is resolvable in the person base view.
From IGS_PE_PERSID_GROUP_ALL the view selects the group identifier, code, description, status flags, file name, all twenty descriptive flexfield attribute columns, and the standard WHO audit columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN). The view also derives a ROW_ID using the ROWID of the group table. From IGS_PE_PERSON_BASE_V it obtains FULL_NAME and PERSON_NUMBER, aliased to CREATOR_PERSON_NUMBER. The base table is an _ALL table in name, but the view definition does not filter by organization or business unit, so it selects across all rows visible under the APPS schema. The DDL is owned by APPS, and the view is not identified as a multi-org (MO) view in the documented metadata.
Key Columns
- ROW_ID — the ROWID of the underlying group row, useful for row-level addressing and debugging.
- GROUP_ID — internal surrogate key identifying the identification group.
- GROUP_CD — the user-facing group code, typically the value referenced by users and interfaces.
- GROUP_TYPE — derived using DECODE on FILE_NAME: returns 'STATIC' when FILE_NAME is null and 'DYNAMIC' otherwise, indicating whether the group is maintained manually or driven by a file.
- CREATOR_PERSON_ID — person identifier of the creator; the join key to the person base view.
- FULL_NAME and CREATOR_PERSON_NUMBER — the creator's display name and person number, denormalized for reporting convenience.
- DESCRIPTION, COMMENTS, CLOSED_IND — descriptive text and the closed status indicator for the group.
- FILE_NAME — the source file associated with a dynamic group; null for static groups.
- CREATE_DT — the business date the group was created, distinct from the CREATION_DATE audit column.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE20 — descriptive flexfield context and segment values.
- Audit columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN.
Common Use Cases and Queries
Typical uses include listing all identification groups with their creators, identifying dynamic groups that depend on a file, and confirming whether a group has been closed. The GROUP_TYPE derivation is particularly useful for quick filtering without inspecting FILE_NAME directly.
SELECT group_id, group_cd, group_type, description,
full_name, creator_person_number, closed_ind, create_dt
FROM apps.igs_pe_persid_group_v
WHERE closed_ind = 'N'
ORDER BY group_cd;
To isolate dynamic groups that are still active, filter on GROUP_TYPE. To audit recently maintained groups, constrain on LAST_UPDATE_DATE. Because the view is an inner join, groups whose creator cannot be resolved in IGS_PE_PERSON_BASE_V are excluded; where completeness is required, query the base table directly. The view is read-only in practice, and appropriate grants to reporting schemas are required before use outside APPS.
-
View: IGS_PE_PERSID_GROUP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_PERSID_GROUP_V, object_name:IGS_PE_PERSID_GROUP_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PE_PERSID_GROUP_V ,
-
View: IGS_PE_PERSID_GROUP_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PE_ALL_PERSID_GROUP_V
12.1.1
-
VIEW: APPS.IGS_PE_ID_GROUP_V
12.1.1
-
VIEW: APPS.IGS_AS_GPC_PE_ID_GRP_V
12.1.1
-
PACKAGE: APPS.IGS_FI_AD_HOC_WAV
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGS_FI_AD_HOC_WAV, status:VALID,
-
PACKAGE: APPS.IGF_DB_SF_INTEGRATION
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGF_DB_SF_INTEGRATION, status:VALID,
-
View: IGS_PE_ID_GROUP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_ID_GROUP_V, object_name:IGS_PE_ID_GROUP_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PE_ID_GROUP_V ,
-
View: IGS_AS_GPC_PE_ID_GRP_V
12.2.2
product: IGS - Student System (Obsolete) , description: Holds the grading period information for a person ID group , implementation_dba_data: Not implemented in this database ,
-
PACKAGE: APPS.IGS_FI_PRC_HOLDS
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGS_FI_PRC_HOLDS, status:VALID,
-
PACKAGE: APPS.IGS_PE_SET_REM_HOLDS
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGS_PE_SET_REM_HOLDS, status:VALID,
-
PACKAGE: APPS.IGS_FI_TRAN_LOCKBOX_TXNS
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGS_FI_TRAN_LOCKBOX_TXNS, status:VALID,
-
View: IGS_PE_ID_GROUP_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_ALL_PERSID_GROUP_V
12.2.2
product: IGS - Student System (Obsolete) , description: New View which is the union of the existing Static Person ID table and New proposed Dynamic Person ID table , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGF_AW_MANAGE_AWD
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AW_MANAGE_AWD, status:VALID,
-
APPS.IGS_FI_PRC_WAIVERS SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_FI_TRAN_LOCKBOX_TXNS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_TRAN_LOCKBOX_TXNS, status:VALID,
-
PACKAGE: APPS.IGS_FI_PRC_BALANCES
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGS_FI_PRC_BALANCES, status:VALID,
-
View: IGS_PE_ALL_PERSID_GROUP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_ALL_PERSID_GROUP_V, object_name:IGS_PE_ALL_PERSID_GROUP_V, status:VALID, product: IGS - Student System , description: New View which is the union of the existing Static Person ID table and New proposed Dynamic Person ID table , implementation_dba_data: APPS.IGS_PE_ALL_PERSID_GROUP_V ,
-
PACKAGE BODY: APPS.IGF_AP_CALC_IM_EFC
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AP_CALC_IM_EFC, status:VALID,
-
View: IGS_AS_GPC_PE_ID_GRP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_GPC_PE_ID_GRP_V, object_name:IGS_AS_GPC_PE_ID_GRP_V, status:VALID, product: IGS - Student System , description: Holds the grading period information for a person ID group , implementation_dba_data: APPS.IGS_AS_GPC_PE_ID_GRP_V ,
-
PACKAGE BODY: APPS.IGF_GR_VERIFY_PROCESS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_GR_VERIFY_PROCESS, status:VALID,
-
PACKAGE BODY: APPS.IGS_PE_DYNAMIC_PERSID_GROUP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PE_DYNAMIC_PERSID_GROUP, status:VALID,
-
PACKAGE BODY: APPS.IGF_AW_RULE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AW_RULE, status:VALID,
-
PACKAGE BODY: APPS.IGF_AW_LOCK_ASSGN_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AW_LOCK_ASSGN_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_HE_CREATE_EXTRACT_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_HE_CREATE_EXTRACT_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_AC_COMP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_AC_COMP, status:VALID,
-
PACKAGE BODY: APPS.IGS_FI_PRC_APINT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_PRC_APINT, status:VALID,
-
PACKAGE BODY: APPS.IGS_SC_BULK_ASSIGN
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_SC_BULK_ASSIGN, status:VALID,
-
PACKAGE BODY: APPS.IGF_AW_GEN_004
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AW_GEN_004, status:VALID,
-
PACKAGE BODY: APPS.IGF_SP_CREATE_BASE_REC
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_SP_CREATE_BASE_REC, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_TI_COMP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_TI_COMP, status:VALID,
-
PACKAGE BODY: APPS.IGF_AP_TODO_GRPS_PRC_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AP_TODO_GRPS_PRC_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGF_AP_VER_GRPS_PRC_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AP_VER_GRPS_PRC_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_HE_FTE_CALC_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_HE_FTE_CALC_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGF_GR_RFMS_DISB_ORIG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_GR_RFMS_DISB_ORIG, status:VALID,
-
PACKAGE BODY: APPS.IGF_SL_PREF_LENDER
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_SL_PREF_LENDER, status:VALID,
-
PACKAGE BODY: APPS.IGS_PE_SET_REM_HOLDS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PE_SET_REM_HOLDS, status:VALID,
-
APPS.IGS_PE_DYNAMIC_PERSID_GROUP SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_FI_AD_HOC_WAV
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_AD_HOC_WAV, status:VALID,
-
PACKAGE BODY: APPS.IGF_GR_RFMS_ORIG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_GR_RFMS_ORIG, status:VALID,
-
PACKAGE BODY: APPS.IGF_AW_COA_UPDATE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AW_COA_UPDATE, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_CANCEL_RECONSIDER
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_CANCEL_RECONSIDER, status:VALID,
-
PACKAGE BODY: APPS.IGF_AP_SS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AP_SS_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_FI_REFUNDS_PROCESS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_REFUNDS_PROCESS, status:VALID,
-
PACKAGE BODY: APPS.IGS_FI_PRC_BALANCES
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_PRC_BALANCES, status:VALID,
-
PACKAGE BODY: APPS.IGF_AW_CANCEL_AWD
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AW_CANCEL_AWD, status:VALID,
-
PACKAGE BODY: APPS.IGF_DB_SF_INTEGRATION
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_DB_SF_INTEGRATION, status:VALID,
-
PACKAGE BODY: APPS.IGF_DB_DISB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_DB_DISB, status:VALID,
-
PACKAGE BODY: APPS.IGS_HE_EXTRACT_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_HE_EXTRACT_PKG, status:VALID,