Search Results igs_fi_elm_rng_ords
Overview
The IGS_FI_ELM_RNG_ORDS table is a core reference table within the Oracle E-Business Suite (EBS) Student System (IGS) module, specifically for Release 12.1.1 and 12.2.2. It functions as a master repository for defining the logical sequence in which various fee attributes are processed during the complex calculation of student fees. The table's primary role is to store unique order names that dictate the evaluation hierarchy for element ranges, ensuring that fee assessments are computed in a consistent, predictable, and correct order. This controlled ordering is critical for accurate financial assessment logic, preventing conflicts and ensuring that prerequisite calculations are completed before dependent calculations are attempted.
Key Information Stored
The table's structure is intentionally simple, designed to hold reference data. Its central and only key column is ELM_RNG_ORDER_NAME. This column stores the unique identifier or name for a specific ordering rule. As the primary key, each value in this column represents a distinct, predefined sequence for processing fee element attributes. The table does not store the detailed ordering logic itself but acts as a parent or header record. The actual sequence details—which specific attributes are evaluated and in what precise order under a given order name—are maintained in related child tables, such as IGS_FI_ER_ORD_DTLS.
Common Use Cases and Queries
This table is primarily accessed during the setup and execution of fee assessment engines. Administrators define and maintain order names here, which are then referenced in fee calculation rules and formulas. Common operational queries involve listing all available ordering sequences for setup purposes or validating the existence of an order name before it is used in a downstream process. For troubleshooting, one might join this table to its detail table to audit a complete ordering rule.
- Listing all defined element range orders:
SELECT elm_rng_order_name FROM igs.igs_fi_elm_rng_ords ORDER BY 1; - Validating the existence of a specific order before use in a PL/SQL procedure.
- Reporting on the structure of a fee calculation sequence by joining to detail records:
SELECT h.elm_rng_order_name, d.* FROM igs.igs_fi_elm_rng_ords h, igs.igs_fi_er_ord_dtls d WHERE h.elm_rng_order_name = d.elm_rng_order_name AND h.elm_rng_order_name = '&ORDER_NAME';
Related Objects
The IGS_FI_ELM_RNG_ORDS table has a direct parent-child relationship with the IGS_FI_ER_ORD_DTLS table, as documented in the provided metadata. The primary key of IGS_FI_ELM_RNG_ORDS is referenced as a foreign key in the child table.
- IGS_FI_ER_ORD_DTLS: This table holds the detailed line items that constitute an ordering sequence. It references IGS_FI_ELM_RNG_ORDS via the foreign key column IGS_FI_ER_ORD_DTLS.ELM_RNG_ORDER_NAME, which joins to IGS_FI_ELM_RNG_ORDS.ELM_RNG_ORDER_NAME. This relationship ensures that every detail line is associated with a valid, defined order name from the parent table.
-
Table: IGS_FI_ELM_RNG_ORDS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_ELM_RNG_ORDS, object_name:IGS_FI_ELM_RNG_ORDS, status:VALID, product: IGS - Student System , description: Element Range Orders holds the order name, which is used for ordering of attributes while computing student's fees. , implementation_dba_data: IGS.IGS_FI_ELM_RNG_ORDS ,
-
Table: IGS_FI_ELM_RNG_ORDS
12.2.2
product: IGS - Student System (Obsolete) , description: Element Range Orders holds the order name, which is used for ordering of attributes while computing student's fees. , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_FI_PRC_FEE_ASS dependencies on IGS_FI_ELM_RNG_ORDS
12.1.1
-
APPS.IGS_FI_ELM_RNG_ORDS_PKG dependencies on IGS_FI_ELM_RNG_ORDS
12.1.1
-
VIEW: APPS.IGS_FI_ELM_RNG_ORDS_V
12.1.1
-
APPS.IGS_FI_ELM_RNG_ORDS_PKG SQL Statements
12.1.1
-
SYNONYM: APPS.IGS_FI_ELM_RNG_ORDS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_FI_ELM_RNG_ORDS, status:VALID,
-
Table: IGS_FI_ER_ORD_DTLS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_ER_ORD_DTLS, object_name:IGS_FI_ER_ORD_DTLS, status:VALID, product: IGS - Student System , description: Element Range Order Details holds the ordering sequence of the attribute defined in the Element Range Order , implementation_dba_data: IGS.IGS_FI_ER_ORD_DTLS ,
-
View: IGS_FI_ELM_RNG_ORDS_V
12.2.2
product: IGS - Student System (Obsolete) , description: Fetches Element Range Orders , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_FI_ELM_RNG_ORDS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_ELM_RNG_ORDS, object_name:IGS_FI_ELM_RNG_ORDS, status:VALID,
-
View: IGS_FI_ELM_RNG_ORDS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_ELM_RNG_ORDS_V, object_name:IGS_FI_ELM_RNG_ORDS_V, status:VALID, product: IGS - Student System , description: Fetches Element Range Orders , implementation_dba_data: APPS.IGS_FI_ELM_RNG_ORDS_V ,
-
PACKAGE BODY: APPS.IGS_FI_ELM_RNG_ORDS_PKG
12.1.1
-
Table: IGS_FI_ER_ORD_DTLS
12.2.2
product: IGS - Student System (Obsolete) , description: Element Range Order Details holds the ordering sequence of the attribute defined in the Element Range Order , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_FI_ELM_RNG_ORDS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_ELM_RNG_ORDS_PKG, status:VALID,
-
APPS.IGS_FI_ELM_RNG_ORDS_PKG dependencies on IGS_FI_ELM_RNG_ORDS_PKG
12.1.1
-
VIEW: APPS.IGS_FI_ELM_RNG_ORDS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_ELM_RNG_ORDS_V, object_name:IGS_FI_ELM_RNG_ORDS_V, status:VALID,
-
VIEW: APPS.IGS_FI_F_TYP_CA_INST_LKP_V
12.1.1
-
PACKAGE BODY: APPS.IGS_FI_PRC_FEE_ASS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_PRC_FEE_ASS, status:VALID,
-
View: IGS_FI_F_TYP_CA_INST_LKP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_F_TYP_CA_INST_LKP_V, object_name:IGS_FI_F_TYP_CA_INST_LKP_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_FI_F_TYP_CA_INST_LKP_V ,
-
View: IGS_FI_F_TYP_CA_INST_LKP_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_FI_F_TYP_CA_INST_LKP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_F_TYP_CA_INST_LKP_V, object_name:IGS_FI_F_TYP_CA_INST_LKP_V, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
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'. ,
-
12.1.1 DBA Data
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'. ,