Search Results appl_rev_profile_id
Overview
The IGS_AD_APL_RPRF_RGR table is a core data repository within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2, specifically for the IGS (Oracle Student Management) module. It functions as the master table for storing Application Review Group definitions. Each record represents a distinct review group, which is a logical collection of reviewers or evaluation criteria used in the assessment of student applications. The table is classified as a 'CLASS3' table, indicating it is not expected to be a high-transaction volume entity but rather a reference table for configuration data. Its primary role is to establish and maintain the groups that facilitate the structured review process within the admissions lifecycle.
Key Information Stored
The table's structure is designed to uniquely identify and describe each review group within the context of a broader Application Review Profile. The key columns include:
- APPL_REVPROF_REVGR_ID (NUMBER 15): The primary key and unique system-generated identifier for a review group record.
- APPL_REV_PROFILE_ID (NUMBER 15): A mandatory foreign key linking the group to its parent Application Review Profile (IGS_AD_APL_REV_PRF_ALL). This defines the profile under which this group is active.
- REVPROF_REVGR_CD (VARCHAR2 30): The unique code for the review group, used for identification and reporting.
- REVPROF_REVGR_NAME (VARCHAR2 80): The descriptive name of the review group.
- Standard WHO Columns (CREATED_BY, CREATION_DATE, etc.): Audit columns tracking the record's creation and last update details.
The unique constraint IGS_AD_APL_RPRF_RGR_U2 on APPL_REV_PROFILE_ID and REVPROF_REVGR_CD ensures that group codes are unique within a given review profile.
Common Use Cases and Queries
This table is central to configuring and querying the application review workflow. Common operational and reporting scenarios include listing all review groups for a specific profile, troubleshooting application routing, and auditing setup data. A fundamental query to retrieve all groups for a known Application Review Profile ID (the user's search parameter, `appl_rev_profile_id`) is:
SELECT REVPROF_REVGR_CD, REVPROF_REVGR_NAME, CREATION_DATE, LAST_UPDATED_BY
FROM IGS.IGS_AD_APL_RPRF_RGR
WHERE APPL_REV_PROFILE_ID = :p_profile_id
ORDER BY REVPROF_REVGR_CD;
For integration or data migration purposes, a complete extract of the table's core data can be performed using the documented query pattern:
SELECT APPL_REVPROF_REVGR_ID, APPL_REV_PROFILE_ID, REVPROF_REVGR_CD, REVPROF_REVGR_NAME, CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN FROM IGS.IGS_AD_APL_RPRF_RGR;
Related Objects
The IGS_AD_APL_RPRF_RGR table sits at the center of a key relationship hierarchy within the Admissions module, as defined by its foreign key constraints:
- Parent Reference: The table references IGS_AD_APL_REV_PRF_ALL via the APPL_REV_PROFILE_ID column, linking each group to its controlling review profile.
- Child References: The table's primary key (APPL_REVPROF_REVGR_ID) is referenced by several other tables, defining its critical role in the application review process:
- IGS_AD_APPL_ARP: Links individual applications to a specific review group for assessment.
- IGS_AD_RVGR_INC_EXC: Likely stores inclusion or exclusion rules for members or items within a review group.
- IGS_AD_RVGR_EVALTR: Likely associates evaluators or evaluation criteria with a specific review group.
These relationships confirm that IGS_AD_APL_RPRF_RGR is a configuration master table, whose identifiers are used to associate applications, rules, and reviewers throughout the operational review process.
-
APPS.IGS_AD_ASSIGN_EVAL_AI_PKG dependencies on IGS_AD_APL_REV_PRF
12.1.1
-
APPS.IGS_AD_ASSIGN_EVAL_AI_PKG dependencies on IGS_AD_APL_REV_PRF_ALL
12.1.1
-
APPS.IGS_AD_APL_REV_PRF_PKG dependencies on IGS_AD_APL_REV_PRF_ALL
12.1.1
-
TABLE: IGS.IGS_AD_APL_RPRF_RGR
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_APL_RPRF_RGR, object_name:IGS_AD_APL_RPRF_RGR, status:VALID,
-
APPS.IGS_AD_APL_RVPF_RSL_PKG dependencies on IGS_AD_APL_RVPF_RSL
12.1.1
-
APPS.IGS_AD_APL_RPRF_RGR_PKG dependencies on IGS_AD_APL_RPRF_RGR
12.1.1
-
TABLE: IGS.IGS_AD_APL_RVPF_RSL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_APL_RVPF_RSL, object_name:IGS_AD_APL_RVPF_RSL, status:VALID,
-
VIEW: APPS.IGS_AD_APL_REV_PRF
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_APL_REV_PRF, object_name:IGS_AD_APL_REV_PRF, status:VALID,
-
APPS.IGS_AD_ASSIGN_EVAL_AI_PKG SQL Statements
12.1.1
-
APPS.IGS_RATINGS_PUB dependencies on IGS_AD_APL_REV_PRF_ALL
12.1.1
-
VIEW: APPS.IGS_AD_APL_RPRF_RGR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_APL_RPRF_RGR_V, object_name:IGS_AD_APL_RPRF_RGR_V, status:VALID,
-
APPS.IGS_RATINGS_PUB dependencies on IGS_AD_APPL_ARP
12.1.1
-
VIEW: APPS.IGSFV_APPL_REVIEW_PROFILE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_APPL_REVIEW_PROFILE, object_name:IGSFV_APPL_REVIEW_PROFILE, status:VALID,
-
VIEW: APPS.IGS_AD_APL_REV_PRF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_APL_REV_PRF_V, object_name:IGS_AD_APL_REV_PRF_V, status:VALID,
-
APPS.IGS_AD_ASSIGN_REVIEW_GRP dependencies on IGS_AD_APL_REV_PRF_ALL
12.1.1
-
APPS.IGS_AD_APL_REV_PRF_PKG dependencies on IGS_AD_APL_REV_PRF
12.1.1
-
TABLE: IGS.IGS_AD_APPL_ARP
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_APPL_ARP, object_name:IGS_AD_APPL_ARP, status:VALID,
-
Table: IGS_AD_APL_RVPF_RSL
12.2.2
product: IGS - Student System (Obsolete) , description: Table where all Rating Scale related information corresponding to an Application Review Profile will be recorded. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AD_APR_RVGR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_APR_RVGR_V, object_name:IGS_AD_APR_RVGR_V, status:VALID,
-
APPS.IGS_AD_APL_RPRF_RGR_PKG SQL Statements
12.1.1
-
View: IGS_AD_APL_RPRF_RGR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_APL_RPRF_RGR_V, object_name:IGS_AD_APL_RPRF_RGR_V, status:VALID, product: IGS - Student System , description: View where the Application Review Group Code related information will be recorded. , implementation_dba_data: APPS.IGS_AD_APL_RPRF_RGR_V ,
-
VIEW: APPS.IGS_AD_APL_RVPF_RSL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_APL_RVPF_RSL_V, object_name:IGS_AD_APL_RVPF_RSL_V, status:VALID,
-
View: IGSFV_APPL_REVIEW_PROFILE
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AD_APR_RVGR_V
12.2.2
product: IGS - Student System (Obsolete) , description: View where the Application Review Group Code related information will be recorded. , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_AD_APL_REV_PRF_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_APL_REV_PRF_ALL, object_name:IGS_AD_APL_REV_PRF_ALL, status:VALID,
-
View: IGSFV_APPL_REVIEW_PROFILE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_APPL_REVIEW_PROFILE, object_name:IGSFV_APPL_REVIEW_PROFILE, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGSFV_APPL_REVIEW_PROFILE ,
-
APPS.IGS_AD_APL_REV_PRF_PKG SQL Statements
12.1.1
-
View: IGS_AD_APR_RVGR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_APR_RVGR_V, object_name:IGS_AD_APR_RVGR_V, status:VALID, product: IGS - Student System , description: View where the Application Review Group Code related information will be recorded. , implementation_dba_data: APPS.IGS_AD_APR_RVGR_V ,
-
Table: IGS_AD_APL_RVPF_RSL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_APL_RVPF_RSL, object_name:IGS_AD_APL_RVPF_RSL, status:VALID, product: IGS - Student System , description: Table where all Rating Scale related information corresponding to an Application Review Profile will be recorded. , implementation_dba_data: IGS.IGS_AD_APL_RVPF_RSL ,
-
View: IGS_AD_APL_RPRF_RGR_V
12.2.2
product: IGS - Student System (Obsolete) , description: View where the Application Review Group Code related information will be recorded. , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_AD_INT_RECONSIDER dependencies on IGS_AD_APPL_ARP
12.1.1
-
APPS.IGS_AD_APL_RVPF_RSL_PKG SQL Statements
12.1.1
-
APPS.IGS_AD_VAL_ACAI_FTR_OFFER dependencies on IGS_AD_APPL_ARP
12.1.1
-
View: IGS_AD_APL_RVPF_RSL_V
12.2.2
product: IGS - Student System (Obsolete) , description: View where all Rating Scale related information corresponding to an Application Review Profile will be recorded. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AD_APPL_ARP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_APPL_ARP_V, object_name:IGS_AD_APPL_ARP_V, status:VALID,
-
APPS.IGS_AD_ASSIGN_REVIEW_GRP dependencies on IGS_AD_APL_RPRF_RGR
12.1.1
-
View: IGS_AD_APL_REV_PRF
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_APL_REV_PRF, object_name:IGS_AD_APL_REV_PRF, status:VALID, product: IGS - Student System , description: Multi-Org view for table IGS_AD_APL_REV_PRF_ALL. , implementation_dba_data: APPS.IGS_AD_APL_REV_PRF ,
-
Table: IGS_AD_APL_REV_PRF_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_APL_REV_PRF_ALL, object_name:IGS_AD_APL_REV_PRF_ALL, status:VALID, product: IGS - Student System , description: Table where all Application Review Profile related information will be recorded. Here the Application Review Profile IDs will be generated and information like Review Profile Name, Start Date, End Date, whether program approval is required , implementation_dba_data: IGS.IGS_AD_APL_REV_PRF_ALL ,
-
Table: IGS_AD_APL_REV_PRF_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: Table where all Application Review Profile related information will be recorded. Here the Application Review Profile IDs will be generated and information like Review Profile Name, Start Date, End Date, whether program approval is required , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AD_APL_RVPF_RSL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_APL_RVPF_RSL_V, object_name:IGS_AD_APL_RVPF_RSL_V, status:VALID, product: IGS - Student System , description: View where all Rating Scale related information corresponding to an Application Review Profile will be recorded. , implementation_dba_data: APPS.IGS_AD_APL_RVPF_RSL_V ,
-
View: IGS_AD_APPL_ARP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_APPL_ARP_V, object_name:IGS_AD_APPL_ARP_V, status:VALID, product: IGS - Student System , description: View which contains the details of Review Profile, Review Profile Group and Application Details. , implementation_dba_data: APPS.IGS_AD_APPL_ARP_V ,
-
Table: IGS_AD_APL_RPRF_RGR
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_APL_RPRF_RGR, object_name:IGS_AD_APL_RPRF_RGR, status:VALID, product: IGS - Student System , description: Table where the Application Review Group Code related information will be recorded. Here the Application Review Group IDs will be generated and information like Review Group Code, Review Group Name will be stored. This is not expected to b , implementation_dba_data: IGS.IGS_AD_APL_RPRF_RGR ,
-
APPS.IGS_AD_ASSIGN_EVAL_AI_PKG dependencies on IGS_AD_APL_RPRF_RGR
12.1.1
-
Table: IGS_AD_APL_RPRF_RGR
12.2.2
product: IGS - Student System (Obsolete) , description: Table where the Application Review Group Code related information will be recorded. Here the Application Review Group IDs will be generated and information like Review Group Code, Review Group Name will be stored. This is not expected to b , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AD_APPL_ARP_V
12.2.2
product: IGS - Student System (Obsolete) , description: View which contains the details of Review Profile, Review Profile Group and Application Details. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AD_APL_REV_PRF
12.2.2
product: IGS - Student System (Obsolete) , description: Multi-Org view for table IGS_AD_APL_REV_PRF_ALL. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AD_APL_REV_PRF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_APL_REV_PRF_V, object_name:IGS_AD_APL_REV_PRF_V, status:VALID, product: IGS - Student System , description: View where all Application Review Profile related information will be recorded. Here the Application Review Profile IDs will be generated and information like Review Profile Name, Start Date, End Date, whether program approval is required , implementation_dba_data: APPS.IGS_AD_APL_REV_PRF_V ,
-
APPS.IGS_AD_APPL_ARP_PKG SQL Statements
12.1.1
-
View: IGS_AD_APL_REV_PRF_V
12.2.2
product: IGS - Student System (Obsolete) , description: View where all Application Review Profile related information will be recorded. Here the Application Review Profile IDs will be generated and information like Review Profile Name, Start Date, End Date, whether program approval is required , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_AD_APPL_ARP_PKG dependencies on IGS_AD_APPL_ARP
12.1.1