Search Results data_element
Overview
The IGS_PE_DATA_ELEMENT table is a core reference table within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2, specifically for the Institutional Global Systems (IGS) product family, which encompasses modules for higher education. This table functions as a master catalog, defining and describing discrete data elements that can be configured as mandatory or referenced for specific person types within the system. Its primary role is to provide a centralized, metadata-driven repository that supports the flexible configuration of data entry requirements and validation rules for person-related entities, such as students, staff, or alumni, ensuring data integrity and consistency across IGS applications.
Key Information Stored
The table stores metadata that maps logical data elements to their physical implementation in the database. The key columns are:
- DATA_ELEMENT: A unique identifier (VARCHAR2) representing the logical name of the user data element, such as 'DATE_OF_BIRTH' or 'GENDER'. This column is the table's primary key.
- TABLE_NAME: The name of the database table (VARCHAR2) where the physical data for this element is stored.
- COLUMN_NAME: The specific column (VARCHAR2) within the referenced TABLE_NAME that physically holds the data for the element.
- Standard WHO Columns: CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, and LAST_UPDATE_LOGIN for audit and tracking purposes.
This structure effectively decouples the logical definition of a required data point from its underlying physical storage, enabling configuration-driven business rules.
Common Use Cases and Queries
A primary use case is to determine which data elements are available for configuration within person type setups. System administrators or functional implementers query this table to understand the metadata framework before defining mandatory fields for a student or staff type. The table is frequently joined with setup tables like IGS_PE_STUP_DATA_EMT_ALL to see which elements are enforced for specific person types.
A fundamental query retrieves the full catalog of defined data elements:
SELECT DATA_ELEMENT, TABLE_NAME, COLUMN_NAME
FROM IGS.IGS_PE_DATA_ELEMENT
ORDER BY DATA_ELEMENT;
To investigate the configuration for a specific element, a join with the setup table is typical:
SELECT de.DATA_ELEMENT, de.TABLE_NAME, de.COLUMN_NAME, sde.PERSON_TYPE
FROM IGS.IGS_PE_DATA_ELEMENT de,
IGS.IGS_PE_STUP_DATA_EMT_ALL sde
WHERE de.DATA_ELEMENT = sde.DATA_ELEMENT
AND de.DATA_ELEMENT = '&DATA_ELEMENT_NAME';
Related Objects
The IGS_PE_DATA_ELEMENT table has a defined parent-child relationship with a key setup table, as indicated by the foreign key dependency information.
- Primary Key: IGS_PE_DATA_ELEMENT_PK on the DATA_ELEMENT column.
- Referencing Object (Foreign Key): The table IGS_PE_STUP_DATA_EMT_ALL references IGS_PE_DATA_ELEMENT via its DATA_ELEMENT column. This setup table uses the master definitions in IGS_PE_DATA_ELEMENT to assign mandatory or reference status to specific person types (e.g., 'Undergraduate Student', 'Faculty'). The relationship is: IGS_PE_STUP_DATA_EMT_ALL.DATA_ELEMENT → IGS_PE_DATA_ELEMENT.DATA_ELEMENT.
This relationship is central to the configuration process, where elements defined in the master table are selectively applied in the setup table to enforce business rules.
-
APPS.IGS_AD_IMP_002 dependencies on IGS_PE_IDENTIFY_DUPS
12.1.1
-
APPS.IGS_AD_GEN_001 dependencies on IGS_PE_STUP_DATA_EMT
12.1.1
-
APPS.IGS_PE_DUP_PERSON dependencies on IGS_PE_IDENTIFY_DUPS
12.1.1
-
TABLE: IGS.IGS_PE_DATA_ELEMENT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PE_DATA_ELEMENT, object_name:IGS_PE_DATA_ELEMENT, status:VALID,
-
PACKAGE BODY: APPS.IGS_PE_IDENTIFY_DUPS
12.1.1
-
APPS.IGS_PE_PERSON_TYPES_PKG dependencies on IGS_PE_DATA_ELEMENT
12.1.1
-
APPS.IGS_AD_IMP_002 dependencies on IGS_PE_MTCH_SET_DATA_ALL
12.1.1
-
View: IGS_PE_STUP_DATA_EMT
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_PE_IDENTIFY_DUPS dependencies on IGS_PE_IDENTIFY_DUPS
12.1.1
-
APPS.IGS_PE_IDENTIFY_DUPS dependencies on IGS_PE_MTCH_SET_DATA_ALL
12.1.1
-
APPS.IGS_PE_DUP_PERSON dependencies on IGS_PE_MTCH_SET_DATA_ALL
12.1.1
-
View: IGS_PE_STUP_DATA_EMT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_STUP_DATA_EMT, object_name:IGS_PE_STUP_DATA_EMT, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PE_STUP_DATA_EMT ,
-
View: IGS_PE_MTCH_SET_DATA
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_MTCH_SET_DATA, object_name:IGS_PE_MTCH_SET_DATA, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PE_MTCH_SET_DATA ,
-
View: IGS_PE_MTCH_SET_DATA
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PE_STUP_DATA_EMT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_STUP_DATA_EMT, object_name:IGS_PE_STUP_DATA_EMT, status:VALID,
-
APPS.IGS_PE_STUP_DATA_EMT_PKG dependencies on IGS_PE_STUP_DATA_EMT_ALL
12.1.1
-
APPS.IGS_PE_TYP_INSTANCES_PKG dependencies on IGS_PE_DATA_ELEMENT
12.1.1
-
APPS.IGS_PE_IDENTIFY_DUPS dependencies on FND_DSQL
12.1.1
-
VIEW: APPS.IGS_PE_MATCH_SET_DATA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_MATCH_SET_DATA_V, object_name:IGS_PE_MATCH_SET_DATA_V, status:VALID,
-
VIEW: APPS.IGS_PE_MTCH_SET_DATA
12.1.1
-
VIEW: APPS.IGS_PE_STUP_DATA_EMT
12.1.1
-
APPS.IGS_PE_DATA_ELEMENT_PKG dependencies on IGS_PE_DATA_ELEMENT
12.1.1
-
VIEW: APPS.IGS_PE_DATA_ELEMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_DATA_ELEMENTS_V, object_name:IGS_PE_DATA_ELEMENTS_V, status:VALID,
-
TABLE: IGS.IGS_PE_STUP_DATA_EMT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PE_STUP_DATA_EMT_ALL, object_name:IGS_PE_STUP_DATA_EMT_ALL, status:VALID,
-
VIEW: APPS.IGS_PE_MTCH_SET_DATA
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_MTCH_SET_DATA, object_name:IGS_PE_MTCH_SET_DATA, status:VALID,
-
TABLE: IGS.IGS_PE_MTCH_SET_DATA_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PE_MTCH_SET_DATA_ALL, object_name:IGS_PE_MTCH_SET_DATA_ALL, status:VALID,
-
View: IGS_PE_DATA_ELEMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_DATA_ELEMENTS_V, object_name:IGS_PE_DATA_ELEMENTS_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PE_DATA_ELEMENTS_V ,
-
View: IGS_PE_MATCH_SET_DATA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_MATCH_SET_DATA_V, object_name:IGS_PE_MATCH_SET_DATA_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PE_MATCH_SET_DATA_V ,
-
APPS.IGS_PE_TYP_INSTANCES_PKG dependencies on IGS_PE_STUP_DATA_EMT
12.1.1
-
View: IGS_PE_MATCH_SET_DATA_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_PE_PERSON_TYPES_PKG dependencies on IGS_PE_STUP_DATA_EMT_PKG
12.1.1
-
Table: IGS_PE_DATA_ELEMENT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PE_DATA_ELEMENT, object_name:IGS_PE_DATA_ELEMENT, status:VALID, product: IGS - Student System , description: This entity describes the data elements which will be set as Mandatory/Preferred for each person types. , implementation_dba_data: IGS.IGS_PE_DATA_ELEMENT ,
-
APPS.IGS_PE_DATA_ELEMENT_PKG SQL Statements
12.1.1
-
Table: IGS_PE_DATA_ELEMENT
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the data elements which will be set as Mandatory/Preferred for each person types. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_DATA_ELEMENTS_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_AD_IMP_002 dependencies on IGS_PE_MTCH_SET_DATA
12.1.1
-
APPS.IGS_PE_MTCH_SET_DATA_PKG dependencies on IGS_PE_MTCH_SET_DATA_ALL
12.1.1
-
APPS.IGS_PE_PERSON_TYPES_PKG dependencies on IGS_PE_STUP_DATA_EMT
12.1.1
-
APPS.IGS_PE_STUP_DATA_EMT_PKG SQL Statements
12.1.1
-
APPS.IGS_AD_IMP_002 dependencies on IGS_PE_MATCH_SETS_ALL
12.1.1
-
APPS.IGS_PE_DUP_PERSON SQL Statements
12.1.1
-
APPS.IGS_PE_MTCH_SET_DATA_PKG SQL Statements
12.1.1
-
APPS.IGS_FI_CONTROL_PKG dependencies on FND_MESSAGE
12.1.1
-
PACKAGE BODY: APPS.IGS_PE_DUP_PERSON
12.1.1
-
PACKAGE BODY: APPS.IGS_PE_DATA_ELEMENT_PKG
12.1.1
-
APPS.IGS_AD_IMP_002 dependencies on IGS_AD_INTERFACE_DTL_DSCP_V
12.1.1
-
PACKAGE BODY: APPS.IGS_PE_STUP_DATA_EMT_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_PE_MTCH_SET_DATA_PKG
12.1.1
-
PACKAGE: APPS.IGS_PE_IDENTIFY_DUPS
12.1.1
-
APPS.IGS_AD_GEN_001 SQL Statements
12.1.1