Search Results tariff_calc_type_cd
Overview
The IGS_HE_UT_PRS_CALCS table is a core data structure within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2, specifically for the Higher Education (IGS) product family. Its primary function is to serve as a summary-level audit trail for tariff calculations performed against individuals (persons) within the system. A tariff calculation, in this context, is a user-defined process for determining a specific metric or score, such as a university entry tariff. The table's role is to record the fact that a particular type of calculation was executed for a specific person on a given date, providing a high-level history and preventing duplicate calculations through its unique primary key constraint.
Key Information Stored
The table stores a minimal but critical set of columns to fulfill its audit and control purpose. The two mandatory key columns are TARIFF_CALC_TYPE_CD (VARCHAR2(10)), a foreign key that uniquely identifies the type of calculation performed, and PERSON_ID (NUMBER(15)), a foreign key identifying the person for whom the calculation was run. Together, they form the table's primary key (IGS_HE_UT_PRS_CALCS_PK). The CALC_DATE (DATE) records the execution date of the calculation. Standard EBS "WHO" columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN) track the creation and maintenance history of each record for compliance and support.
Common Use Cases and Queries
This table is central to querying the calculation history for reporting, auditing, and process control. A common use case is verifying if a specific tariff calculation has already been performed for a person to avoid redundant processing. Another is generating a list of all persons who have had a particular calculation type run within a date range for batch reporting. The fundamental query pattern, as indicated in the ETRM, selects the core data:
- Identifying calculation history for a specific person:
SELECT * FROM igs.igs_he_ut_prs_calcs WHERE person_id = <person_id> ORDER BY calc_date DESC; - Finding all persons processed by a specific calculation type:
SELECT person_id, calc_date FROM igs.igs_he_ut_prs_calcs WHERE tariff_calc_type_cd = '<CODE>';
Related Objects
The table exists within a defined relational schema, as per the provided dependency and relationship data. It references two parent tables via foreign key constraints:
- HZ_PARTIES (TABLE): The
PERSON_IDcolumn references this Trading Community Architecture (TCA) base table, linking the calculation record to a master person/party definition. - IGS_HE_UT_CALC_TYPE (TABLE): The
TARIFF_CALC_TYPE_CDcolumn references this lookup table, which defines the valid types of tariff calculations available in the system.
Furthermore, the table is referenced as a parent by at least one other object:
- IGS_HE_UT_PRS_DTLS (TABLE): This table likely holds the detailed results or components of the calculation. It references
IGS_HE_UT_PRS_CALCSvia theTARIFF_CALC_TYPE_CDcolumn (and likely alsoPERSON_ID), establishing a one-to-many relationship where a summary record in CALCS can have many detailed records in DTLS.
-
APPS.IGS_HE_UCAS_TARIFF_PKG dependencies on IGS_HE_UT_PRT_AWARD
12.1.1
-
APPS.IGS_HE_UCAS_TARIFF_PKG dependencies on IGS_HE_UT_CALC_TYPE
12.1.1
-
TABLE: IGS.IGS_HE_UT_PRS_CALCS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_HE_UT_PRS_CALCS, object_name:IGS_HE_UT_PRS_CALCS, status:VALID,
-
TABLE: IGS.IGS_HE_UT_EXCL_QALS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_HE_UT_EXCL_QALS, object_name:IGS_HE_UT_EXCL_QALS, status:VALID,
-
TABLE: IGS.IGS_HE_UT_PRS_DTLS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_HE_UT_PRS_DTLS, object_name:IGS_HE_UT_PRS_DTLS, status:VALID,
-
APPS.IGS_HE_UCAS_TARIFF_PKG dependencies on IGS_HE_UT_EXCL_QALS
12.1.1
-
APPS.IGS_HE_UCAS_TARIFF_PKG SQL Statements
12.1.1
-
TABLE: IGS.IGS_HE_UT_CALC_LVL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_HE_UT_CALC_LVL, object_name:IGS_HE_UT_CALC_LVL, status:VALID,
-
TABLE: IGS.IGS_HE_UT_PRT_AWARD
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_HE_UT_PRT_AWARD, object_name:IGS_HE_UT_PRT_AWARD, status:VALID,
-
TABLE: IGS.IGS_HE_UT_CALC_TYPE
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_HE_UT_CALC_TYPE, object_name:IGS_HE_UT_CALC_TYPE, status:VALID,
-
TABLE: IGS.IGS_HE_UT_LVL_AWARD
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_HE_UT_LVL_AWARD, object_name:IGS_HE_UT_LVL_AWARD, status:VALID,
-
VIEW: APPS.IGS_HE_UT_LVL_AWARD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_UT_LVL_AWARD_V, object_name:IGS_HE_UT_LVL_AWARD_V, status:VALID,
-
APPS.IGS_HE_UCAS_TARIFF_PKG dependencies on IGS_HE_UT_PRS_DTLS
12.1.1
-
VIEW: APPS.IGS_HE_UT_PRS_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_UT_PRS_DTLS_V, object_name:IGS_HE_UT_PRS_DTLS_V, status:VALID,
-
APPS.IGS_HE_UT_EXCL_QALS_PKG dependencies on IGS_HE_UT_EXCL_QALS
12.1.1
-
APPS.IGS_HE_UT_CALC_LVL_PKG dependencies on IGS_HE_UT_CALC_LVL
12.1.1
-
VIEW: APPS.IGS_HE_UT_PRS_CALCS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_UT_PRS_CALCS_V, object_name:IGS_HE_UT_PRS_CALCS_V, status:VALID,
-
Table: IGS_HE_UT_LVL_AWARD
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_HE_UT_LVL_AWARD, object_name:IGS_HE_UT_LVL_AWARD, status:VALID, product: IGS - Student System , description: Contains OSS Awards mapped to Tariff Levels , implementation_dba_data: IGS.IGS_HE_UT_LVL_AWARD ,
-
Table: IGS_HE_UT_CALC_LVL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_HE_UT_CALC_LVL, object_name:IGS_HE_UT_CALC_LVL, status:VALID, product: IGS - Student System , description: Contains HESA Tariff Levels for a UCAS Tariff Calculation Type , implementation_dba_data: IGS.IGS_HE_UT_CALC_LVL ,
-
APPS.IGS_HE_UT_PRS_DTLS_PKG dependencies on IGS_HE_UT_PRS_DTLS
12.1.1
-
Table: IGS_HE_UT_PRS_DTLS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_HE_UT_PRS_DTLS, object_name:IGS_HE_UT_PRS_DTLS, status:VALID, product: IGS - Student System , description: Holds Tariff Calculation details for a Person , implementation_dba_data: IGS.IGS_HE_UT_PRS_DTLS ,
-
APPS.IGS_HE_UT_LVL_AWARD_PKG dependencies on IGS_HE_UT_LVL_AWARD
12.1.1
-
Table: IGS_HE_UT_CALC_LVL
12.2.2
product: IGS - Student System (Obsolete) , description: Contains HESA Tariff Levels for a UCAS Tariff Calculation Type , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_HE_UT_PRT_AWARD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_UT_PRT_AWARD_V, object_name:IGS_HE_UT_PRT_AWARD_V, status:VALID,
-
VIEW: APPS.IGS_HE_UT_CALC_LVL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_UT_CALC_LVL_V, object_name:IGS_HE_UT_CALC_LVL_V, status:VALID,
-
APPS.IGS_HE_UT_PRT_AWARD_PKG dependencies on IGS_HE_UT_PRT_AWARD
12.1.1
-
View: IGS_HE_UT_CALC_LVL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_UT_CALC_LVL_V, object_name:IGS_HE_UT_CALC_LVL_V, status:VALID, product: IGS - Student System , description: Holds the HESA Tariff Levels for a Calculation Type , implementation_dba_data: APPS.IGS_HE_UT_CALC_LVL_V ,
-
Table: IGS_HE_UT_LVL_AWARD
12.2.2
product: IGS - Student System (Obsolete) , description: Contains OSS Awards mapped to Tariff Levels , implementation_dba_data: Not implemented in this database ,
-
View: IGS_HE_UT_CALC_LVL_V
12.2.2
product: IGS - Student System (Obsolete) , description: Holds the HESA Tariff Levels for a Calculation Type , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_HE_UT_PRS_DTLS
12.2.2
product: IGS - Student System (Obsolete) , description: Holds Tariff Calculation details for a Person , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_HE_UT_CALC_TYPE
12.2.2
product: IGS - Student System (Obsolete) , description: Holds the UCAS Tariff Calculation Types , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_HE_UCAS_TARIFF_PKG dependencies on IGS_HE_UT_PRS_CALCS
12.1.1
-
View: IGS_HE_UT_PRS_CALCS_V
12.2.2
product: IGS - Student System (Obsolete) , description: Selects Persons and the Tariff Calculation Types for which the Process has been run , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_HE_UT_PRS_CALCS_PKG dependencies on IGS_HE_UT_PRS_CALCS
12.1.1
-
APPS.IGS_HE_UT_EXCL_QALS_PKG SQL Statements
12.1.1
-
View: IGS_HE_UT_PRS_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_UT_PRS_DTLS_V, object_name:IGS_HE_UT_PRS_DTLS_V, status:VALID, product: IGS - Student System , description: Holds the Exam level Tariff details for Persons and the Tariff Calculation Types for which the Tariff Calculation process had been run , implementation_dba_data: APPS.IGS_HE_UT_PRS_DTLS_V ,
-
View: IGS_HE_UT_EXCL_QALS_V
12.2.2
product: IGS - Student System (Obsolete) , description: Stores the UCAS Tariff Qualifications to be Excluded from the Calculation Type , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_HE_UT_EXCL_QALS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_UT_EXCL_QALS_V, object_name:IGS_HE_UT_EXCL_QALS_V, status:VALID,
-
Table: IGS_HE_UT_PRS_CALCS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_HE_UT_PRS_CALCS, object_name:IGS_HE_UT_PRS_CALCS, status:VALID, product: IGS - Student System , description: Holds Summary details of Tariff Calculations for a Person , implementation_dba_data: IGS.IGS_HE_UT_PRS_CALCS ,
-
Table: IGS_HE_UT_PRT_AWARD
12.2.2
product: IGS - Student System (Obsolete) , description: Holds the parent child Award relationships for a Calculation Type , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_HE_UT_PRS_CALCS
12.2.2
product: IGS - Student System (Obsolete) , description: Holds Summary details of Tariff Calculations for a Person , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_HE_UT_CALC_TYPE
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_HE_UT_CALC_TYPE, object_name:IGS_HE_UT_CALC_TYPE, status:VALID, product: IGS - Student System , description: Holds the UCAS Tariff Calculation Types , implementation_dba_data: IGS.IGS_HE_UT_CALC_TYPE ,
-
Table: IGS_HE_UT_PRT_AWARD
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_HE_UT_PRT_AWARD, object_name:IGS_HE_UT_PRT_AWARD, status:VALID, product: IGS - Student System , description: Holds the parent child Award relationships for a Calculation Type , implementation_dba_data: IGS.IGS_HE_UT_PRT_AWARD ,
-
View: IGS_HE_UT_LVL_AWARD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_UT_LVL_AWARD_V, object_name:IGS_HE_UT_LVL_AWARD_V, status:VALID, product: IGS - Student System , description: Holds the Awards associated to a Tariff Level for a Calculation Type , implementation_dba_data: APPS.IGS_HE_UT_LVL_AWARD_V ,
-
View: IGS_HE_UT_PRS_CALCS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_UT_PRS_CALCS_V, object_name:IGS_HE_UT_PRS_CALCS_V, status:VALID, product: IGS - Student System , description: Selects Persons and the Tariff Calculation Types for which the Process has been run , implementation_dba_data: APPS.IGS_HE_UT_PRS_CALCS_V ,
-
View: IGS_HE_UT_LVL_AWARD_V
12.2.2
product: IGS - Student System (Obsolete) , description: Holds the Awards associated to a Tariff Level for a Calculation Type , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_HE_UT_CALC_TYPE_PKG dependencies on IGS_HE_UT_CALC_TYPE
12.1.1
-
APPS.IGS_HE_UT_PRS_DTLS_PKG SQL Statements
12.1.1
-
View: IGS_HE_UT_PRT_AWARD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_UT_PRT_AWARD_V, object_name:IGS_HE_UT_PRT_AWARD_V, status:VALID, product: IGS - Student System , description: Holds the parent child Award relationships for a Calculation Type , implementation_dba_data: APPS.IGS_HE_UT_PRT_AWARD_V ,
-
View: IGS_HE_UT_PRS_DTLS_V
12.2.2
product: IGS - Student System (Obsolete) , description: Holds the Exam level Tariff details for Persons and the Tariff Calculation Types for which the Tariff Calculation process had been run , implementation_dba_data: Not implemented in this database ,