Search Results appl_rev_profile_id
Overview
The IGS_AD_APL_RVPF_RSL table is a core data repository within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2, specifically for the Admissions (IGS) module. It functions as a junction table that stores the association between Application Review Profiles and the rating scales used to evaluate applicants. Its primary role is to define and persist the specific rating criteria—comprising both a rating type and a corresponding scale—that reviewers must apply when assessing an application within a given review profile. As per its storage classification, it is not a high-transaction table, indicating its data is relatively static once configured for a review process.
Key Information Stored
The table's structure centers on key identifiers that link critical components of the application review workflow. The primary columns and their purposes are:
- APPL_REVPROF_RTSCALE_ID: The unique primary key (PK) for each record in this table.
- APPL_REV_PROFILE_ID: A foreign key (FK) linking to the Application Review Profile, defining the context of the review.
- RATING_TYPE_ID: A critical FK that identifies the specific category or dimension (e.g., "Academic Merit," "Interview Score") being rated. This is the column directly relevant to the user's search.
- RATING_SCALE_ID: The FK identifying the predefined scale (e.g., 1-5, Pass/Fail) that must be used for the associated RATING_TYPE_ID.
- Standard WHO Columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN): Audit columns tracking record creation and modifications.
Common Use Cases and Queries
This table is central to configuring and auditing the review process. A common operational use case involves querying all rating scales assigned to a specific Application Review Profile to validate setup or to generate review guidelines. For reporting, it is frequently joined to lookup tables to produce human-readable descriptions of the rating criteria. A sample query to retrieve the complete rating configuration for a profile would be:
SELECT arpr.APPL_REV_PROFILE_ID, arpr.RATING_TYPE_ID, rt.MEANING RATING_TYPE, arpr.RATING_SCALE_ID, rs.MEANING RATING_SCALE
FROM IGS.IGS_AD_APL_RVPF_RSL arpr,
FND_LOOKUP_VALUES rt,
FND_LOOKUP_VALUES rs
WHERE arpr.APPL_REV_PROFILE_ID = :PROFILE_ID
AND rt.LOOKUP_TYPE = 'IGS_AD_RATING_TYPE'
AND rt.LOOKUP_CODE = arpr.RATING_TYPE_ID
AND rs.LOOKUP_TYPE = 'IGS_AD_RATING_SCALE'
AND rs.LOOKUP_CODE = arpr.RATING_SCALE_ID;
Another critical pattern is finding all review profiles that utilize a specific RATING_TYPE_ID, which is essential for impact analysis before modifying a rating type definition.
Related Objects
Based on the provided metadata, the IGS_AD_APL_RVPF_RSL table is referenced by objects within the APPS schema. While specific foreign key relationships to parent tables are not explicitly detailed in the excerpt, logical relationships can be inferred from the column definitions. The table's design indicates it is a child table to at least three key entities:
- Application Review Profile Table: Likely named IGS_AD_APL_REV_PROF or similar, via the APPL_REV_PROFILE_ID column.
- Rating Type Lookup: The RATING_TYPE_ID references a code from a lookup (e.g., FND_LOOKUP_VALUES with LOOKUP_TYPE='IGS_AD_RATING_TYPE') or a dedicated ratings table.
- Rating Scale Lookup: Similarly, RATING_SCALE_ID references a code from a related lookup (e.g., FND_LOOKUP_VALUES with LOOKUP_TYPE='IGS_AD_RATING_SCALE').
The unique index (IGS_AD_APL_RVPF_RSL_U1) on APPL_REVPROF_RTSCALE_ID enforces the primary key, while the non-unique index (IGS_AD_APL_RVPF_RSL_U2) on APPL_REV_PROFILE_ID, RATING_TYPE_ID, and RATING_SCALE_ID supports efficient queries and likely enforces a business rule preventing duplicate rating type assignments within a single profile.
-
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
-
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,
-
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_ASSIGN_EVAL_AI_PKG SQL Statements
12.1.1
-
APPS.IGS_AD_APL_RVPF_RSL_PKG dependencies on IGS_AD_APL_RVPF_RSL
12.1.1
-
APPS.IGS_RATINGS_PUB dependencies on IGS_AD_APL_REV_PRF_ALL
12.1.1
-
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,
-
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,
-
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,
-
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.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,
-
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,
-
APPS.IGS_AD_ASSIGN_REVIEW_GRP dependencies on IGS_AD_APL_REV_PRF_ALL
12.1.1
-
APPS.IGS_AD_APL_RPRF_RGR_PKG SQL Statements
12.1.1
-
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 ,
-
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: 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_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,
-
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 ,
-
APPS.IGS_AD_APL_RVPF_RSL_PKG SQL Statements
12.1.1
-
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 ,
-
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
-
APPS.IGS_AD_VAL_ACAI_FTR_OFFER dependencies on IGS_AD_APPL_ARP
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 ,
-
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
-
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 ,
-
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 ,
-
APPS.IGS_AD_INT_RECONSIDER 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: 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_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 ,
-
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_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 ,
-
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 ,
-
APPS.IGS_AD_ASSIGN_EVAL_AI_PKG dependencies on IGS_AD_APL_RPRF_RGR
12.1.1
-
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 ,
-
APPS.IGS_AD_APPL_ARP_PKG SQL Statements
12.1.1
-
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 ,
-
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_ASSIGN_REVIEW_GRP SQL Statements
12.1.1