Search Results igw_exp_type_rate_types
Overview
The table IGW_EXP_TYPE_RATE_TYPES is a core data structure within the Oracle E-Business Suite (EBS) Grants Proposal module (IGW). It functions as a critical junction table, establishing and managing the permissible associations between specific expenditure categories and the defined rate classes and rate types used for calculating indirect costs (overhead) on grant proposals. Its role is to enforce business rules by defining which types of project expenditures are eligible for which specific overhead or fringe benefit rates. This configuration is fundamental to ensuring accurate and compliant proposal costing in accordance with sponsor guidelines and institutional policy across both EBS 12.1.1 and 12.2.2 versions.
Key Information Stored
The table's structure is designed to store a unique combination of identifiers that link three key entities. The primary key constraint IGW_EXP_RATE_TYPES_PK enforces uniqueness on the combination of the following columns:
- EXPENDITURE_CATEGORY: Identifies a specific category of project cost (e.g., Salaries, Equipment, Travel).
- RATE_CLASS_ID: A foreign key referencing the classification of a rate (e.g., Overhead, Fringe Benefits).
- RATE_TYPE_ID: A foreign key referencing the specific rate value or schedule within the given rate class.
Each record signifies that the specified expenditure category can be charged using the associated rate class and type during proposal development and subsequent award financial planning.
Common Use Cases and Queries
A primary use case is the validation and defaulting of rates during the entry of budget lines in a grant proposal. The system consults this table to determine which rate options are valid for a user-selected expenditure item. It is also central to configuration reports that audit institutional costing policies. A typical query would retrieve all rate setups for a given expenditure category or validate a specific combination.
-- Sample: Find all valid rate types for the 'Salaries' expenditure category
SELECT ert.rate_class_id,
ert.rate_type_id,
rc.rate_class_code,
rt.rate_type_code
FROM igw_exp_type_rate_types ert,
igw_rate_classes rc,
igw_rate_types rt
WHERE ert.expenditure_category = 'SALARIES'
AND ert.rate_class_id = rc.rate_class_id
AND ert.rate_class_id = rt.rate_class_id
AND ert.rate_type_id = rt.rate_type_id;
Related Objects
IGW_EXP_TYPE_RATE_TYPES has defined foreign key relationships to the IGW_RATE_TYPES table on both the RATE_CLASS_ID and RATE_TYPE_ID columns, ensuring referential integrity to the master list of available rates. It is intrinsically linked to the IGW_RATE_CLASSES table via the rate class identifier. This table is a foundational reference for the proposal budgeting engine and is likely referenced by key program units within the IGW module, such as the rate calculation and validation APIs, as well as the underlying budget lines table (e.g., IGW_PROP_BUDGET_LINES).
-
Table: IGW_EXP_TYPE_RATE_TYPES
12.1.1
owner:IGW, object_type:TABLE, fnd_design_data:IGW.IGW_EXP_TYPE_RATE_TYPES, object_name:IGW_EXP_TYPE_RATE_TYPES, status:VALID, product: IGW - Grants Proposal , description: Information about expenditure categories associated with a particular rate class and rate type , implementation_dba_data: IGW.IGW_EXP_TYPE_RATE_TYPES ,
-
Table: IGW_EXP_TYPE_RATE_TYPES
12.2.2
product: IGW - Grants Proposal (Obsolete) , description: Information about expenditure categories associated with a particular rate class and rate type , implementation_dba_data: Not implemented in this database ,
-
APPS.IGW_BUDGET_OPERATIONS dependencies on IGW_EXP_TYPE_RATE_TYPES
12.1.1
-
APPS.IGW_OVERHEAD_CAL dependencies on IGW_EXP_TYPE_RATE_TYPES
12.1.1
-
VIEW: APPS.IGWBV_GRNT_PRPSL_EXP_RATE_ASGN
12.1.1
-
VIEW: APPS.IGWFV_GRNT_PRPSL_EXP_RATE_ASGN
12.1.1
-
SYNONYM: APPS.IGW_EXP_TYPE_RATE_TYPES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGW_EXP_TYPE_RATE_TYPES, status:VALID,
-
TABLE: IGW.IGW_EXP_TYPE_RATE_TYPES
12.1.1
owner:IGW, object_type:TABLE, fnd_design_data:IGW.IGW_EXP_TYPE_RATE_TYPES, object_name:IGW_EXP_TYPE_RATE_TYPES, status:VALID,
-
View: IGWBV_GRNT_PRPSL_EXP_RATE_ASGN
12.2.2
product: IGW - Grants Proposal (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGWBV_GRNT_PRPSL_EXP_RATE_ASGN
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGWBV_GRNT_PRPSL_EXP_RATE_ASGN, object_name:IGWBV_GRNT_PRPSL_EXP_RATE_ASGN, status:VALID, product: IGW - Grants Proposal , implementation_dba_data: APPS.IGWBV_GRNT_PRPSL_EXP_RATE_ASGN ,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
Table: IGW_RATE_TYPES
12.1.1
owner:IGW, object_type:TABLE, fnd_design_data:IGW.IGW_RATE_TYPES, object_name:IGW_RATE_TYPES, status:VALID, product: IGW - Grants Proposal , description: Information about rate types associated with a rate class , implementation_dba_data: IGW.IGW_RATE_TYPES ,
-
PACKAGE BODY: APPS.IGW_OVERHEAD_CAL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGW_OVERHEAD_CAL, status:VALID,
-
Table: IGW_RATE_TYPES
12.2.2
product: IGW - Grants Proposal (Obsolete) , description: Information about rate types associated with a rate class , implementation_dba_data: Not implemented in this database ,
-
View: IGWFV_GRNT_PRPSL_EXP_RATE_ASGN
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGWFV_GRNT_PRPSL_EXP_RATE_ASGN, object_name:IGWFV_GRNT_PRPSL_EXP_RATE_ASGN, status:VALID, product: IGW - Grants Proposal , implementation_dba_data: APPS.IGWFV_GRNT_PRPSL_EXP_RATE_ASGN ,
-
APPS.IGW_OVERHEAD_CAL dependencies on IGW_RATE_CLASSES
12.1.1
-
APPS.IGW_OVERHEAD_CAL dependencies on IGW_RATE_TYPES
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.IGW_BUDGET_OPERATIONS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGW_BUDGET_OPERATIONS, status:VALID,
-
View: IGWFV_GRNT_PRPSL_EXP_RATE_ASGN
12.2.2
product: IGW - Grants Proposal (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGWFV_GRNT_PRPSL_EXP_RATE_ASGN
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGWFV_GRNT_PRPSL_EXP_RATE_ASGN, object_name:IGWFV_GRNT_PRPSL_EXP_RATE_ASGN, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.IGWBV_GRNT_PRPSL_EXP_RATE_ASGN
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGWBV_GRNT_PRPSL_EXP_RATE_ASGN, object_name:IGWBV_GRNT_PRPSL_EXP_RATE_ASGN, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
APPS.IGW_OVERHEAD_CAL SQL Statements
12.1.1
-
APPS.IGW_BUDGET_OPERATIONS SQL Statements
12.1.1
-
eTRM - IGW Tables and Views
12.1.1
description: Information on proposal subjects ,
-
PACKAGE BODY: APPS.IGW_OVERHEAD_CAL
12.1.1
-
PACKAGE BODY: APPS.IGW_BUDGET_OPERATIONS
12.1.1
-
eTRM - IGW Tables and Views
12.1.1
description: Information on proposal subjects ,
-
12.1.1 DBA Data
12.1.1