Search Results igs_fi_refund_int_all
Overview
The IGS_FI_REFUND_INT_ALL table is a core interface (staging) table within the Oracle E-Business Suite IGS — Student System product. Its documented description states that it serves as the "interface table for transfer of refund data to a payables system." In practice, this means the table acts as the intermediary holding area through which refund transactions originating in the Student System (fees, charges, and related financial activity) are staged before being handed off to Oracle Payables for the creation of invoices and payments. The table is owned by the IGS schema and carries a status of VALID in both Oracle EBS 12.1.1 and 12.2.2.
From a modeling perspective, the provided metadata classifies this object heuristically as a link table. This classification is mined from the foreign-key structure, which shows PAY_PERSON_ID and PERSON_ID both referencing HZ_PARTIES. As a modeling suggestion, this link role indicates the table associates parties (refund recipients) with refund transactions, rather than functioning as a pure reference hub or a descriptive satellite.
Key Information Stored
The table is documented with 50 physical columns under the 12.1.1 schema. The most significant columns fall into three functional groupings:
- Identity and keys:
REFUND_IDis the surrogate primary key (constraintIGS_FI_REFUND_INT_PK) and the sole documented unique-index/business-key candidate.SOURCE_REFUND_IDlinks back to the originating refund record. - Party linkage:
PERSON_IDandPAY_PERSON_IDidentify the student/person and the payee, both referencingHZ_PARTIES. - Financial and accounting detail:
REFUND_AMOUNT,DR_GL_CCID,CR_GL_CCID,DR_ACCOUNT_CD,CR_ACCOUNT_CD,VOUCHER_DATE, andGL_DATEcapture the monetary and GL-coding aspects of the refund. - Payment attributes:
PAYMENT_NUMBER,PAYMENT_DATE, andPAYMENT_MODEdescribe how the refund is disbursed. - Fee context:
FEE_TYPE,FEE_CAL_TYPE, andFEE_CI_SEQUENCE_NUMBERtie the refund to the fee structure that generated it.INVOICE_IDandREASONprovide reconciliation and audit context. - Flexfield and audit:
ATTRIBUTE_CATEGORY,ATTRIBUTE1–ATTRIBUTE20,ORG_ID, and the standard WHO columns (CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE,LAST_UPDATE_LOGIN) plus concurrent-program columns (REQUEST_ID,PROGRAM_APPLICATION_ID,PROGRAM_ID,PROGRAM_UPDATE_DATE) support multi-org security and process traceability.
Common Use Cases and Queries
Typical scenarios include monitoring unprocessed refunds awaiting transfer to Payables, reconciling refund amounts against GL distributions, and auditing refunds by party or fee type. Representative query patterns:
- List refunds pending interface:
SELECT refund_id, person_id, refund_amount, voucher_date FROM igs_fi_refund_int_all WHERE gl_date IS NULL; - Aggregate refunds by payment mode:
SELECT payment_mode, SUM(refund_amount) FROM igs_fi_refund_int_all GROUP BY payment_mode; - Join to parties for recipient detail:
SELECT r.refund_id, p.party_name, r.refund_amount FROM igs_fi_refund_int_all r, hz_parties p WHERE r.pay_person_id = p.party_id;
Related Objects
- HZ_PARTIES — referenced twice:
IGS_FI_REFUND_INT_ALL.PAY_PERSON_ID → HZ_PARTIESandIGS_FI_REFUND_INT_ALL.PERSON_ID → HZ_PARTIES. - IGS_FI_REFUND_INT_PK — primary-key constraint on
REFUND_ID. - IGS_FI_REFUND_INT_ALL_PK — unique index supporting the business key.
- Downstream Oracle Payables interface objects receive the staged data via the Student System's refund transfer concurrent program.
- GL_CODE_COMBINATIONS — implicitly referenced by
DR_GL_CCIDandCR_GL_CCID.
-
Table: IGS_FI_REFUND_INT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_REFUND_INT_ALL, object_name:IGS_FI_REFUND_INT_ALL, status:VALID, product: IGS - Student System , description: Interface table for transfer of refund data to a payables system. , implementation_dba_data: IGS.IGS_FI_REFUND_INT_ALL ,
-
Table: IGS_FI_REFUND_INT_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: Interface table for transfer of refund data to a payables system. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_FI_REFUND_INT
12.1.1
-
APPS.IGS_FI_REFUND_INT_PKG SQL Statements
12.1.1
-
SYNONYM: APPS.IGS_FI_REFUND_INT_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_FI_REFUND_INT_ALL, status:VALID,
-
PACKAGE BODY: APPS.IGS_FI_REFUND_INT_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_REFUND_INT_PKG, status:VALID,
-
TABLE: IGS.IGS_FI_REFUND_INT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_REFUND_INT_ALL, object_name:IGS_FI_REFUND_INT_ALL, status:VALID,
-
View: IGS_FI_REFUND_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_REFUND_INT, object_name:IGS_FI_REFUND_INT, status:VALID, product: IGS - Student System , description: Interface view for transfer of data to account payables. , implementation_dba_data: APPS.IGS_FI_REFUND_INT ,
-
View: IGS_FI_REFUND_INT
12.2.2
product: IGS - Student System (Obsolete) , description: Interface view for transfer of data to account payables. , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_FI_REFUND_INT_PKG
12.1.1
-
VIEW: APPS.IGS_FI_REFUND_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_REFUND_INT, object_name:IGS_FI_REFUND_INT, status:VALID,
-
Table: HZ_PARTIES
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_PARTIES, object_name:HZ_PARTIES, status:VALID, product: AR - Receivables , description: Information about parties such as organizations, people, and groups , implementation_dba_data: AR.HZ_PARTIES ,
-
Table: HZ_PARTIES
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_PARTIES, object_name:HZ_PARTIES, status:VALID, product: AR - Receivables , description: Information about parties such as organizations, people, and groups , implementation_dba_data: AR.HZ_PARTIES ,
-
APPS.IGS_FI_REFUND_INT_PKG dependencies on IGS_FI_REFUND_INT_ALL
12.1.1
-
APPS.IGS_FI_REFUNDS_PROCESS SQL Statements
12.1.1
-
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
-
APPS.IGS_FI_REFUND_INT_PKG dependencies on IGS_FI_REFUND_INT_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_FI_REFUNDS_PROCESS
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'. ,
-
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'. ,