Search Results rating_type_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.
-
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.IGSFV_APPL_REVPRF_RATING_SCALE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_APPL_REVPRF_RATING_SCALE, object_name:IGSFV_APPL_REVPRF_RATING_SCALE, status:VALID,
-
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_APPL_EVAL
12.1.1
-
APPS.IGS_RATINGS_PUB SQL Statements
12.1.1
-
VIEW: APPS.IGS_AD_APPL_EVAL_V
12.1.1
-
View: IGS_AD_APPL_EVAL_V
12.2.2
product: IGS - Student System (Obsolete) , description: Holds the details of the evaluators assigned to various applications , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AD_APPL_EVAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_APPL_EVAL_V, object_name:IGS_AD_APPL_EVAL_V, status:VALID, product: IGS - Student System , description: Holds the details of the evaluators assigned to various applications , implementation_dba_data: APPS.IGS_AD_APPL_EVAL_V ,
-
TABLE: IGS.IGS_AD_APPL_EVAL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_APPL_EVAL, object_name:IGS_AD_APPL_EVAL, status:VALID,
-
VIEW: APPS.IGSBV_APPL_REVPRF_RATING_SCALE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_APPL_REVPRF_RATING_SCALE, object_name:IGSBV_APPL_REVPRF_RATING_SCALE, 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,
-
View: IGSBV_APPL_REVPRF_RATING_SCALE
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
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 ,
-
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: IGSBV_APPL_REVPRF_RATING_SCALE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_APPL_REVPRF_RATING_SCALE, object_name:IGSBV_APPL_REVPRF_RATING_SCALE, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGSBV_APPL_REVPRF_RATING_SCALE ,
-
APPS.IGS_AD_APL_RVPF_RSL_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 ,
-
View: IGSFV_APPL_REVPRF_RATING_SCALE
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_APPL_REVPRF_RATING_SCALE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_APPL_REVPRF_RATING_SCALE, object_name:IGSFV_APPL_REVPRF_RATING_SCALE, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGSFV_APPL_REVPRF_RATING_SCALE ,
-
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 ,
-
APPS.IGS_AD_APPL_EVAL_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGS_AD_APPL_EVAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_APPL_EVAL_V, object_name:IGS_AD_APPL_EVAL_V, status:VALID,
-
APPS.IGS_AD_ASSIGN_EVAL_AI_PKG SQL Statements
12.1.1
-
APPS.IGS_AD_APPL_EVAL_PKG dependencies on IGS_AD_APPL_EVAL
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_APL_RVPF_RSL_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_RATINGS_PUB
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_APPL_EVAL_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_ASSIGN_EVAL_AI_PKG
12.1.1
-
APPS.IGS_AD_VAL_ACAI_FTR_OFFER SQL Statements
12.1.1
-
APPS.IGS_AD_INT_RECONSIDER SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_VAL_ACAI_FTR_OFFER
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_INT_RECONSIDER
12.1.1
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,