Search Results igs_pe_prsid_grp_mem
Overview
The view IGS_PE_PRSID_GRP_MEM belongs to the IGS – Student System product family within Oracle E-Business Suite. The IGS module (Intelligent Grants System / Student System components) was historically used for person and student identifiers, and it is now marked Obsolete in the ETRM reference set for releases 12.1.1 and 12.2.2. The view presents membership records that associate a person with an identifier group — in other words, it exposes the rows that define which persons are members of a given person-identifier grouping.
Its role in reporting and integration is that of an operational, multi-org aware reporting layer over the underlying association table. Rather than querying the base table directly, downstream reports, concurrent programs, and interfaces reference this view so that the standard multi-org security predicate (driven by ORG_ID) is applied automatically. Because the view is flagged as Not implemented in this database and the parent product is obsolete, the object is documented primarily for archival and migration-reference purposes; it will generally appear populated only in environments where the legacy IGS Student System objects were previously deployed.
Underlying Base Objects
The ETRM metadata documents the defining query and identifies a single underlying base object: IGS_PE_PRSID_GRP_MEM_ALL. The view does not introduce any joins; it is a flat projection of the base table, selecting all business columns plus the standard WHO columns and the ROWID pseudo-column aliased as ROW_ID. The naming convention of the base table — the _ALL suffix — confirms that it is a multi-org (partitioned by operating unit) table, and the view applies an ORG_ID filter derived from USERENV('CLIENT_INFO'). This is the classic Oracle EBS multi-org secured view pattern, where the client-info string carries the current operating unit identifier. No other referenced base objects were documented in the ETRM metadata, and no join to person, group, or lookup tables is present in the view text itself.
Key Columns
- ROW_ID — the
ROWIDof the underlying base-table row, exposed so tools and forms can address the physical row uniquely. - GROUP_ID — the identifier of the person-identifier group to which the membership record applies.
- PERSON_ID — the person who is a member of that group.
- START_DATE and END_DATE — the effective dating of the membership, allowing historical and current membership to be distinguished.
- ORG_ID — the operating unit that owns the record; this is the column used by the view's security predicate.
- REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE — standard concurrent-program audit columns recording which request and program last touched the row.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — the standard
WHOaudit columns.
Common Use Cases and Queries
Typical usage centers on identifying current members of a person-identifier group for a given operating unit, or reconciling effective-dated membership history. A common query selects current members as of a reference date:
- List current members:
SELECT group_id, person_id, start_date, end_date FROM igs_pe_prsid_grp_mem WHERE TRUNC(SYSDATE) BETWEEN start_date AND NVL(end_date, TRUNC(SYSDATE)); - Members of a specific group:
SELECT person_id, start_date, end_date FROM igs_pe_prsid_grp_mem WHERE group_id = :group_id; - Operating-unit-scoped extract:
SELECT * FROM igs_pe_prsid_grp_mem WHERE org_id = :org_id;
Because the view enforces multi-org security, callers should initialize CLIENT_INFO appropriately when querying outside a Forms session. Given the obsolete status, any implementation should treat these queries as migration or audit aids rather than ongoing production interfaces.
-
View: IGS_PE_PRSID_GRP_MEM
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_PRSID_GRP_MEM
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_PRSID_GRP_MEM, object_name:IGS_PE_PRSID_GRP_MEM, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PE_PRSID_GRP_MEM ,
-
VIEW: APPS.IGS_PE_PIGM_PIDGRP_MEM_V
12.1.1
-
VIEW: APPS.IGS_PE_ID_GROUP_V
12.1.1
-
APPS.IGS_EN_VAL_PIG SQL Statements
12.1.1
-
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 ,
-
APPS.IGS_AD_WRKFLOW_PKG SQL Statements
12.1.1
-
PACKAGE: APPS.IGF_AP_VER_GRPS_PRC_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGF_AP_VER_GRPS_PRC_PKG, status:VALID,
-
PACKAGE: APPS.IGF_SP_AWARD
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGF_SP_AWARD, status:VALID,
-
APPS.IGS_PERSONSTATS_PUB SQL Statements
12.1.1
-
PACKAGE: APPS.IGF_SP_CREATE_BASE_REC
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGF_SP_CREATE_BASE_REC, status:VALID,
-
View: IGS_PE_PIGM_PIDGRP_MEM_V
12.2.2
product: IGS - Student System (Obsolete) , description: IGS_PE_PIGM_PIDGRP_MEM_V describes the occurrence of a person in a person id group. , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_AD_WRKFLOW_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_WRKFLOW_PKG, status:VALID,
-
View: IGS_PE_PIGM_PIDGRP_MEM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_PIGM_PIDGRP_MEM_V, object_name:IGS_PE_PIGM_PIDGRP_MEM_V, status:VALID, product: IGS - Student System , description: IGS_PE_PIGM_PIDGRP_MEM_V describes the occurrence of a person in a person id group. , implementation_dba_data: APPS.IGS_PE_PIGM_PIDGRP_MEM_V ,
-
View: IGS_PE_ID_GROUP_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_EN_VAL_PIG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_VAL_PIG, 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_EN_GEN_008
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_GEN_008, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_ADM_REQ
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_ADM_REQ, status:VALID,
-
PACKAGE BODY: APPS.IGS_PERSONSTATS_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PERSONSTATS_PUB, status:VALID,
-
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.IGS_AD_IMP_UH_TST_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_IMP_UH_TST_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_RU_GEN_001
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_RU_GEN_001, 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,
-
PACKAGE BODY: APPS.IGS_AS_NOTIFY_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AS_NOTIFY_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_AS_GEN_003
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AS_GEN_003, 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.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_FI_PRC_APPL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_PRC_APPL, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_TIMESLOTS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_TIMESLOTS, status:VALID,
-
PACKAGE BODY: APPS.IGR_GEN_001
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGR_GEN_001, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_ELGBL_OVERRIDE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_ELGBL_OVERRIDE, status:VALID,
-
PACKAGE BODY: APPS.IGS_AS_ADI_UPLD_UG_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AS_ADI_UPLD_UG_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_FI_PRC_STDNT_DPSTS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_PRC_STDNT_DPSTS, status:VALID,
-
PACKAGE BODY: APPS.IGF_SP_AWARD
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_SP_AWARD, status:VALID,
-
PACKAGE BODY: APPS.IGS_FI_PRC_DISC_SUA
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_PRC_DISC_SUA, status:VALID,
-
VIEW: APPS.IGS_PE_PIGM_PIDGRP_MEM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_PIGM_PIDGRP_MEM_V, object_name:IGS_PE_PIGM_PIDGRP_MEM_V, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_DEF_APPL_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_DEF_APPL_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_AS_GEN_004
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AS_GEN_004, status:VALID,
-
PACKAGE BODY: APPS.IGS_FI_BILL_EXTRACT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_BILL_EXTRACT, status:VALID,
-
SYNONYM: APPS.IGS_PE_PRSID_GRP_MEM_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_PE_PRSID_GRP_MEM_ALL, status:VALID,
-
VIEW: APPS.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,
-
PACKAGE BODY: APPS.IGS_FI_PRC_HOLDS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_PRC_HOLDS, status:VALID,
-
PACKAGE BODY: APPS.IGS_FI_GEN_004
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_GEN_004, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_ELGBL_UNIT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_ELGBL_UNIT, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_VAL_PIG
12.1.1
-
APPS.IGS_PE_VAL_PIGM SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_VAL_ACAI_FTR_OFFER
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_VAL_ACAI_FTR_OFFER, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_WRKFLOW_PKG
12.1.1
-
VIEW: APPS.IGS_PE_PRSID_GRP_MEM
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_PRSID_GRP_MEM, object_name:IGS_PE_PRSID_GRP_MEM, status:VALID,