Search Results igf_se_auth
Overview
The IGF_SE_AUTH table belongs to the IGF (Financial Aid) product family, which is documented as obsolete in Oracle E-Business Suite. In the context of EBS 12.1.1 and 12.2.2, this table was originally designed to store authorization details that were transmitted to the interface layer. The entity functioned as an interface table, accumulating authorization records passed to downstream processing while simultaneously preserving the history of inactive or superseded authorizations. A defining business rule is that only one authorization record may remain active for a given line at any point in time, which makes the table a time-versioned staging construct rather than a pure reference table.
The ETRM metadata indicates that this object is not implemented in the current database. Because it is documented as obsolete, DBAs and developers should generally expect no data and no runtime dependency, though the physical definition may persist for upgrade compatibility. From a Data Vault modeling perspective, the heuristic classification mined from the foreign key structure is standalone, meaning the table neither behaves as a dependent satellite nor anchors a broad hub-and-link network. It can be treated as an independent staging or interface entity whose relationships are limited to a small number of outbound references.
Key Information Stored
The documented physical schema for ETRM 12.1.1 contains 48 columns under the IGF owner. The surrogate primary key is defined by the constraint IGF_SE_AUTH_PK on the SEQUENCE_NO column, and a unique index IGF_SE_AUTH_U1 also exists on SEQUENCE_NO, confirming it as the primary business-key candidate. Among the remaining columns, the most significant in practice include:
- AUTH_ID — the authorization identifier, which also participates in the foreign key to JTF_XML_INV_AUTHS.
- AWARD_ID — the award reference, linking the record to IGF_AW_AWARD_ALL.
- PERSON_ID — the party identifier for the individual associated with the authorization.
- FIRST_NAME, LAST_NAME, ADDRESS1–ADDRESS4, CITY, STATE, PROVINCE, COUNTY, COUNTRY — denormalized party and address attributes captured at the time the authorization was generated.
- SEX, BIRTH_DT, SSN_NO, MARITAL_STATUS — demographic elements used for eligibility determination.
- VISA_TYPE, VISA_CATEGORY, VISA_NUMBER, VISA_EXPIRY_DT, ENTRY_DATE — immigration-related data relevant to financial aid eligibility.
- FUND_ID, ACCEPTED_AMNT, AUTHORIZATION_DATE, NOTIFICATION_DATE — funding source, monetary value, and lifecycle timestamps.
- FLAG — a status indicator used to distinguish the single active record from historical rows.
- Standard WHO columns such as CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, and REQUEST_ID provide audit and concurrent-program traceability.
Common Use Cases and Queries
Because the table is obsolete and not implemented, its practical value in an active 12.1.1/12.2.2 environment is primarily historical or migration-oriented. Typical scenarios include auditing legacy authorizations, correlating authorization history with award and fund records, and confirming that only one active row exists per line.
Identifying the active record for a given line and award follows a pattern such as:
SELECT * FROM igf_se_auth WHERE flag = 'Y' AND award_id = :p_award_id;SELECT sequence_no, auth_id, award_id, accepted_amnt FROM igf_se_auth WHERE person_id = :p_person_id ORDER BY authorization_date DESC;SELECT auth_id, COUNT(*) FROM igf_se_auth GROUP BY auth_id HAVING COUNT(*) > 1;to detect multiple active records as a data quality check.
Reporting use cases generally involve reconciling authorization counts and amounts by fund, award calendar, or date range, joined to IGF_AW_AWARD_ALL for award context.
Related Objects
The documented foreign keys anchor the table to two parent entities, and these are the most significant related objects:
- JTF_XML_INV_AUTHS — referenced through IGF_SE_AUTH.AUTH_ID; provides the XML authorization envelope metadata.
- IGF_AW_AWARD_ALL — referenced through IGF_SE_AUTH.AWARD_ID; supplies award-level information for financial aid processing.
- IGF_SE_AUTH_PK / IGF_SE_AUTH_U1 — the primary key and unique index, both defined on SEQUENCE_NO.
- IGF_AW_AWARD_ALL and JTF_XML_INV_AUTHS should be treated as the principal join partners in any legacy query or migration assessment.
Given its obsolete status, no Oracle-provided APIs or active views are expected to depend on this table; any dependency should be verified against the specific instance before relying on it.
-
Table: IGF_SE_AUTH
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Stores the authorization details sent to the interface layer. This entity also stores the history or inactive authorization records. At one line only one authorization record can remain active. This entity acts as an interface table, howev , implementation_dba_data: Not implemented in this database ,
-
Table: IGF_SE_AUTH
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SE_AUTH, object_name:IGF_SE_AUTH, status:VALID, product: IGF - Financial Aid , description: Stores the authorization details sent to the interface layer. This entity also stores the history or inactive authorization records. At one line only one authorization record can remain active. This entity acts as an interface table, howev , implementation_dba_data: IGF.IGF_SE_AUTH ,
-
VIEW: APPS.IGFBV_STUDENT_AUTHORIZATIONS
12.1.1
-
VIEW: APPS.IGF_SE_WORK_AWD_PRG_V
12.1.1
-
SYNONYM: APPS.IGF_SE_AUTH
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGF_SE_AUTH, status:VALID,
-
VIEW: APPS.IGFFV_STUDENT_AUTHORIZATIONS
12.1.1
-
APPS.IGF_SE_GEN_001 SQL Statements
12.1.1
-
VIEW: APPS.IGF_SE_AUTHORIZATION_V
12.1.1
-
VIEW: APPS.IGF_SE_AUTH_V
12.1.1
-
APPS.IGF_SE_AUTH_PKG SQL Statements
12.1.1
-
PACKAGE: APPS.IGF_SE_GEN_001
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGF_SE_GEN_001, status:VALID,
-
PACKAGE BODY: APPS.IGF_SE_AUTH_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_SE_AUTH_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGF_SE_PAYMENT_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_SE_PAYMENT_PUB, status:VALID,
-
PACKAGE BODY: APPS.IGF_SE_PAYMENT_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_SE_PAYMENT_PKG, status:VALID,
-
View: IGFBV_STUDENT_AUTHORIZATIONS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Base view for the entity that holds Student Work Authorizations , implementation_dba_data: Not implemented in this database ,
-
APPS.IGF_SE_PAYMENT_PUB SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGF_SE_GEN_001
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_SE_GEN_001, status:VALID,
-
View: IGFBV_STUDENT_AUTHORIZATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_STUDENT_AUTHORIZATIONS, object_name:IGFBV_STUDENT_AUTHORIZATIONS, status:VALID, product: IGF - Financial Aid , description: Base view for the entity that holds Student Work Authorizations , implementation_dba_data: APPS.IGFBV_STUDENT_AUTHORIZATIONS ,
-
View: IGF_SE_WORK_AWD_PRG_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: View that holds student work award progress information in an award year , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SE_AUTHORIZATION_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Public view to derive active work authorizations , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SE_WORK_AWD_PRG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SE_WORK_AWD_PRG_V, object_name:IGF_SE_WORK_AWD_PRG_V, status:VALID, product: IGF - Financial Aid , description: View that holds student work award progress information in an award year , implementation_dba_data: APPS.IGF_SE_WORK_AWD_PRG_V ,
-
View: IGF_SE_AUTHORIZATION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SE_AUTHORIZATION_V, object_name:IGF_SE_AUTHORIZATION_V, status:VALID, product: IGF - Financial Aid , description: Public view to derive active work authorizations , implementation_dba_data: APPS.IGF_SE_AUTHORIZATION_V ,
-
View: IGFFV_STUDENT_AUTHORIZATIONS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Full View for the Entity that holds Student Work Authorizations , implementation_dba_data: Not implemented in this database ,
-
View: IGFFV_STUDENT_AUTHORIZATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_STUDENT_AUTHORIZATIONS, object_name:IGFFV_STUDENT_AUTHORIZATIONS, status:VALID, product: IGF - Financial Aid , description: Full View for the Entity that holds Student Work Authorizations , implementation_dba_data: APPS.IGFFV_STUDENT_AUTHORIZATIONS ,
-
PACKAGE BODY: APPS.IGF_AW_FISAP_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AW_FISAP_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGF_AW_GEN_003
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AW_GEN_003, status:VALID,
-
PACKAGE BODY: APPS.IGF_AW_LI_IMPORT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AW_LI_IMPORT, status:VALID,
-
View: IGF_SE_AUTH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SE_AUTH_V, object_name:IGF_SE_AUTH_V, status:VALID, product: IGF - Financial Aid , description: The entity contains the authorization details sent to the interface layer. This entity also at the same time has the history or inactive authorization records. At one line only one authorization record can remain active. , implementation_dba_data: APPS.IGF_SE_AUTH_V ,
-
View: IGF_SE_AUTH_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: The entity contains the authorization details sent to the interface layer. This entity also at the same time has the history or inactive authorization records. At one line only one authorization record can remain active. , implementation_dba_data: Not implemented in this database ,
-
12.2.2 FND Design Data
12.2.2
-
TABLE: IGF.IGF_SE_AUTH
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SE_AUTH, object_name:IGF_SE_AUTH, status:VALID,
-
PACKAGE BODY: APPS.IGF_SE_AUTH_PKG
12.1.1
-
PACKAGE BODY: APPS.IGF_AW_PACKAGING
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AW_PACKAGING, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.IGF_SE_AUTHORIZATION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SE_AUTHORIZATION_V, object_name:IGF_SE_AUTHORIZATION_V, status:VALID,
-
VIEW: APPS.IGF_SE_WORK_AWD_PRG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SE_WORK_AWD_PRG_V, object_name:IGF_SE_WORK_AWD_PRG_V, status:VALID,
-
VIEW: APPS.IGF_SE_AUTH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SE_AUTH_V, object_name:IGF_SE_AUTH_V, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
APPS.IGF_SE_PAYMENT_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGF_SE_GEN_001
12.1.1
-
VIEW: APPS.IGFBV_STUDENT_AUTHORIZATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_STUDENT_AUTHORIZATIONS, object_name:IGFBV_STUDENT_AUTHORIZATIONS, status:VALID,
-
VIEW: APPS.IGFFV_STUDENT_AUTHORIZATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_STUDENT_AUTHORIZATIONS, object_name:IGFFV_STUDENT_AUTHORIZATIONS, status:VALID,
-
PACKAGE BODY: APPS.IGF_SE_PAYMENT_PUB
12.1.1
-
APPS.IGF_SE_PAYMENT_PUB dependencies on IGF_SE_AUTH
12.1.1
-
APPS.IGF_AW_FISAP_PKG dependencies on IGF_SE_AUTH
12.1.1
-
APPS.IGF_AW_LI_IMPORT dependencies on IGF_SE_AUTH
12.1.1
-
APPS.IGF_AW_GEN_003 dependencies on IGF_SE_AUTH
12.1.1
-
APPS.IGF_SE_GEN_001 dependencies on IGF_SE_AUTH
12.1.1