Search Results adplans_id
Overview
The IGF_AW_DP_TERMS table is a core setup table within the now-obsolete Financial Aid (IGF) module of Oracle E-Business Suite (EBS) versions 12.1.1 and 12.2.2. It specifically stores the term-level configuration for an Award Distribution Plan. An Award Distribution Plan defines how a financial aid award is disbursed to a student across the academic year. This table allows administrators to define the specific academic terms (e.g., Fall, Spring) that are part of that overall distribution plan, establishing the temporal framework for subsequent detailed scheduling of disbursements within each term.
Key Information Stored
The table's structure centers on linking a distribution plan to academic calendar terms and enforcing data integrity through its keys. The primary identifier is the ADTERMS_ID column. The table's unique key, which defines the critical business rule, is a composite of ADPLANS_ID, LD_CAL_TYPE, and LD_SEQUENCE_NUMBER. This ensures that within a single Award Distribution Plan (ADPLANS_ID), a given academic load calendar term (identified by its type and sequence number) can only be defined once. The LD_CAL_TYPE and LD_SEQUENCE_NUMBER columns directly reference the standard IGS_CA_INST_ALL (Calendar Instance) table to maintain alignment with the institution's academic calendar.
Common Use Cases and Queries
This table is primarily accessed for setup, validation, and reporting on the term structure of distribution plans. Common operational scenarios include creating or modifying the list of terms for a plan, validating that a term exists in the academic calendar before assignment, and generating lists of all plans that distribute funds in a specific term. A typical query would join this table to the plan header and calendar tables to report on the full term setup.
- Sample Query: To list all distribution plans and their associated terms:
SELECT dp.plan_name, ci.cal_type, ci.sequence_number, ci.start_dt
FROM igf_aw_dp_terms dt,
igf_aw_awd_dist_plans dp,
igs_ca_inst_all ci
WHERE dt.adplans_id = dp.adplans_id
AND dt.ld_cal_type = ci.cal_type
AND dt.ld_sequence_number = ci.sequence_number
ORDER BY dp.plan_name, ci.start_dt;
Related Objects
IGF_AW_DP_TERMS sits at the center of a small hierarchy of distribution setup tables. It is a child of the IGF_AW_AWD_DIST_PLANS table, which stores the header-level plan definition, via the ADPLANS_ID foreign key. It is a parent to the IGF_AW_DP_TEACH_PRDS table, which holds the detailed teaching periods (and associated disbursement dates) within each term defined here, linked by the ADTERMS_ID column. As noted in its foreign keys, it relies on the foundational IGS_CA_INST_ALL table for valid academic calendar term definitions.
-
Table: IGF_AW_DP_TERMS
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AW_DP_TERMS, object_name:IGF_AW_DP_TERMS, status:VALID, product: IGF - Financial Aid , description: Award Distribution Plan Term Setup , implementation_dba_data: IGF.IGF_AW_DP_TERMS ,
-
View: IGF_AW_AWD_DIST_PLANS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_AWD_DIST_PLANS_V, object_name:IGF_AW_AWD_DIST_PLANS_V, status:VALID, product: IGF - Financial Aid , description: Award Distribution Plan , implementation_dba_data: APPS.IGF_AW_AWD_DIST_PLANS_V ,
-
Table: IGF_AW_AWD_DIST_PLANS
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AW_AWD_DIST_PLANS, object_name:IGF_AW_AWD_DIST_PLANS, status:VALID, product: IGF - Financial Aid , description: Award Distribution Plan Setup , implementation_dba_data: IGF.IGF_AW_AWD_DIST_PLANS ,
-
View: IGF_AW_DP_TERMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_DP_TERMS_V, object_name:IGF_AW_DP_TERMS_V, status:VALID, product: IGF - Financial Aid , description: Award Distribution Plan Terms , implementation_dba_data: APPS.IGF_AW_DP_TERMS_V ,
-
View: IGF_AW_AWD_FRML_DET
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_AWD_FRML_DET, object_name:IGF_AW_AWD_FRML_DET, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_AW_AWD_FRML_DET ,
-
View: IGF_AW_AWD_FRML_DET_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_AWD_FRML_DET_V, object_name:IGF_AW_AWD_FRML_DET_V, status:VALID, product: IGF - Financial Aid , description: Shows the detail sequence of funds that have to be applied for a given formula , implementation_dba_data: APPS.IGF_AW_AWD_FRML_DET_V ,
-
Table: IGF_AW_TARGET_GRP_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AW_TARGET_GRP_ALL, object_name:IGF_AW_TARGET_GRP_ALL, status:VALID, product: IGF - Financial Aid , description: Stores upper level constraints to be enforced on each grant , implementation_dba_data: IGF.IGF_AW_TARGET_GRP_ALL ,
-
View: IGFFV_STUDENT_AWARDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_STUDENT_AWARDS, object_name:IGFFV_STUDENT_AWARDS, status:VALID, product: IGF - Financial Aid , description: Full View for the Entity that holds the information about the Awards given to students , implementation_dba_data: APPS.IGFFV_STUDENT_AWARDS ,
-
View: IGF_AW_AWARD_T
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_AWARD_T, object_name:IGF_AW_AWARD_T, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_AW_AWARD_T ,
-
View: IGF_AW_TARGET_GRP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_TARGET_GRP, object_name:IGF_AW_TARGET_GRP, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_AW_TARGET_GRP ,
-
View: IGF_AW_SS_AWD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_SS_AWD_V, object_name:IGF_AW_SS_AWD_V, status:VALID, product: IGF - Financial Aid , description: Holds Awards that are published to Student Self-Service , implementation_dba_data: APPS.IGF_AW_SS_AWD_V ,
-
View: IGF_AW_TARGET_GRP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_TARGET_GRP_V, object_name:IGF_AW_TARGET_GRP_V, status:VALID, product: IGF - Financial Aid , description: Target group master , implementation_dba_data: APPS.IGF_AW_TARGET_GRP_V ,
-
View: IGF_AW_AWARD
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_AWARD, object_name:IGF_AW_AWARD, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_AW_AWARD ,
-
View: IGF_AW_AWARD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_AWARD_V, object_name:IGF_AW_AWARD_V, status:VALID, product: IGF - Financial Aid , description: Shows award details , implementation_dba_data: APPS.IGF_AW_AWARD_V ,