Search Results cr_sequence_number
Overview
The table IGF_AW_CAL_REL_ALL is a data object within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2, specifically belonging to the IGF (Financial Aid) module, which is documented as obsolete. Its core function is to store and manage the relationships between two distinct award years. This relationship mapping is a foundational element for processes that require continuity or comparison across academic periods, such as multi-year award tracking, regulatory reporting, and the carry-forward of financial aid data. As a table suffixed with '_ALL', it is designed to operate in a multi-organization context, storing data partitioned by the ORG_ID column.
Key Information Stored
The table's structure is centered on defining a relationship between calendar instances. Its primary identifiers and key columns include:
CREL_ID: The unique primary key identifier for each relationship record, as defined by theIGF_AW_CAL_REL_PKconstraint.CR_CAL_TYPEandCR_SEQUENCE_NUMBER: Together, these columns form a unique key (IGF_AW_CAL_REL_ALL_UK) and constitute a foreign key reference to a specific calendar instance in theIGS_CA_INST_ALLtable. They identify one award year within the relationship.- Implied related columns: While not explicitly listed in the provided metadata, a logical design would include a parallel set of columns (e.g.,
RELATED_CAL_TYPE,RELATED_SEQUENCE_NUMBER) to store the identifier for the second, related award year. The table may also contain descriptive attributes and audit columns (CREATION_DATE,CREATED_BY, etc.).
Common Use Cases and Queries
This table supports operational and analytical functions within the Financial Aid lifecycle. A primary use case is validating and enforcing business rules that govern how aid packages can span or transition between consecutive award years. For reporting, it enables comparative analysis of aid distribution, fund utilization, or student eligibility across related periods. A typical query would join this table to the calendar master to retrieve descriptive information for related years.
SELECT rel.crel_id,
cr_cal.cal_type AS cr_cal_type,
cr_cal.sequence_number AS cr_seq_num,
-- Assuming related columns exist
rel_cal.cal_type AS related_cal_type,
rel_cal.sequence_number AS related_seq_num
FROM igf_aw_cal_rel_all rel,
igs_ca_inst_all cr_cal,
igs_ca_inst_all rel_cal
WHERE rel.cr_cal_type = cr_cal.cal_type
AND rel.cr_sequence_number = cr_cal.sequence_number
AND rel.related_cal_type = rel_cal.cal_type -- Hypothetical column
AND rel.related_sequence_number = rel_cal.sequence_number -- Hypothetical column
AND rel.org_id = 123;
Related Objects
The table's integrity is maintained through defined relationships with other core EBS objects. Based on the provided metadata:
- Primary Keys: The table has two primary key constraints:
IGF_AW_CAL_REL_PKonCREL_IDandIGF_AW_CAL_REL_ALL_UKon the composite of (CR_CAL_TYPE,CR_SEQUENCE_NUMBER). - Foreign Key (Outgoing): The table contains a foreign key that references the
IGS_CA_INST_ALL(Calendar Instance) table. This links theCR_CAL_TYPEandCR_SEQUENCE_NUMBERcolumns to a valid calendar entry, ensuring referential integrity for one side of the award year relationship.
-
Table: IGF_AW_CAL_REL_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AW_CAL_REL_ALL, object_name:IGF_AW_CAL_REL_ALL, status:VALID, product: IGF - Financial Aid , description: Stores the relationship two award years , implementation_dba_data: IGF.IGF_AW_CAL_REL_ALL ,
-
Table: IGF_AW_FUND_ROLLOVER_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AW_FUND_ROLLOVER_ALL, object_name:IGF_AW_FUND_ROLLOVER_ALL, status:VALID, product: IGF - Financial Aid , description: Stores all the details of those funds whose details got rolled over , implementation_dba_data: IGF.IGF_AW_FUND_ROLLOVER_ALL ,
-
View: IGF_AW_CAL_REL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_CAL_REL_V, object_name:IGF_AW_CAL_REL_V, status:VALID, product: IGF - Financial Aid , description: Stores the relationships between calendar instances , implementation_dba_data: APPS.IGF_AW_CAL_REL_V ,
-
View: IGF_AW_FUND_ROLLOVER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_FUND_ROLLOVER_V, object_name:IGF_AW_FUND_ROLLOVER_V, status:VALID, product: IGF - Financial Aid , description: Stores the relationships between funds that rollover , implementation_dba_data: APPS.IGF_AW_FUND_ROLLOVER_V ,
-
View: IGF_AW_CAL_REL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_CAL_REL, object_name:IGF_AW_CAL_REL, status:VALID, product: IGF - Financial Aid , description: Stores the relationships between calendar instances , implementation_dba_data: APPS.IGF_AW_CAL_REL ,
-
View: IGF_AW_FUND_ROLLOVER
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_FUND_ROLLOVER, object_name:IGF_AW_FUND_ROLLOVER, status:VALID, product: IGF - Financial Aid , description: Stores the relationships between rollover funds , implementation_dba_data: APPS.IGF_AW_FUND_ROLLOVER ,