Search Results igs_fi_refund_int
Overview
IGS_FI_REFUND_INT is a public APPS-schema view in the Oracle E-Business Suite Student System (IGS) product family. It serves as an interface view for transferring student refund data to Oracle Payables, presenting refund transactions in a structure suitable for generating accounts payable invoices and payments. The view is catalogued as VALID in both Oracle EBS 12.1.1 and 12.2.2. Its primary integration role is to expose refund records—including debit and credit accounting flexfield combinations, refund amounts, fee attributes, and payment instructions—so that downstream Oracle Payables processes can create supplier invoices, credit memos, and payments for student refunds.
The column DR_GL_CCID, which the user searched for, is a core element of this view: it carries the debit General Ledger Code Combination ID (CCID) that determines the accounting entry generated on the debit side of a refund. Its counterpart CR_GL_CCID carries the credit side. Together they drive the accounting distribution written to Oracle Payables and subsequently to Oracle General Ledger.
Underlying Base Objects
Per documented view text, IGS_FI_REFUND_INT is defined over the base table IGS_FI_REFUND_INT_ALL. The view selects ROWID and a defined column list from that single base object. No additional referenced base objects are documented in ETRM metadata, so the view's data set is derived entirely from IGS_FI_REFUND_INT_ALL, which itself is multipurpose (the _ALL suffix indicating an org-striped table governed by ORG_ID and, in some deployments, row-level security via MO or a similar operating-unit policy). Consequently, IGS_FI_REFUND_INT exposes the same rows as its base table, filtered by whatever security context is applied to the base object. Because the view is a straightforward projection without joins or transformations, its cardinality and refresh characteristics mirror IGS_FI_REFUND_INT_ALL exactly. The view does not cache data; it reflects the base table in real time.
Key Columns
- REFUND_ID — Primary identifier for the student refund record; supports joins back to related IGS refund entities.
- DR_GL_CCID / CR_GL_CCID — Debit and credit GL code combination IDs. These populate accounting distributions in Oracle Payables. The searched term DR_GL_CCID corresponds to the debit CCID that identifies the debit accounting flexfield combination (for example, an expense or refund clearing account).
- DR_ACCOUNT_CD / CR_ACCOUNT_CD — Human-readable debit and credit account codes mirroring the GL CCIDs.
- REFUND_AMOUNT — Monetary value of the refund to be paid.
- PERSON_ID / PAY_PERSON_ID — The student/person owing or receiving the refund, and the payee person used for payment processing.
- VOUCHER_DATE, PAYMENT_DATE, GL_DATE — Document, payment, and accounting dates controlling posting periods.
- PAYMENT_NUMBER, PAYMENT_MODE — Payment reference and method instructions.
- FEE_TYPE, FEE_CAL_TYPE, FEE_CI_SEQUENCE_NUMBER — Fee classification and calendar context for the refunded fee.
- INVOICE_ID, SOURCE_REFUND_ID — Ties the refund to an originating invoice or a prior refund record.
- ORG_ID, REQUEST_ID, PROGRAM_ID — Operating unit, concurrent request, and program identifiers for traceability and multi-org filtering.
- ATTRIBUTE_CATEGORY, ATTRIBUTE1–ATTRIBUTE20 — Descriptive flexfield context and values.
- Standard audit columns: CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN, PROGRAM_APPLICATION_ID, PROGRAM_UPDATE_DATE.
Common Use Cases and Queries
Typical use cases include reconciling refunds headed to Payables, verifying debit/credit CCID assignments, and diagnosing accounting issues. A representative query to inspect debit CCID assignments is:
SELECT refund_id, dr_gl_ccid, cr_gl_ccid,
dr_account_cd, cr_account_cd, refund_amount
FROM apps.igs_fi_refund_int
WHERE org_id = :p_org_id;
To audit refunds awaiting payment, filter by refund amount and payment attributes:
SELECT refund_id, pay_person_id, refund_amount,
payment_number, payment_mode, gl_date
FROM apps.igs_fi_refund_int
WHERE refund_amount > 0
AND gl_date BETWEEN :start_date AND :end_date;
For integration troubleshooting, join DR_GL_CCID to GL_CODE_COMBINATIONS to confirm the account string resolves correctly:
SELECT r.refund_id, r.dr_gl_ccid,
g.segment1||'.'||g.segment2 AS dr_account_string
FROM apps.igs_fi_refund_int r,
apps.gl_code_combinations g
WHERE r.dr_gl_ccid = g.code_combination_id;
-
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 ,
-
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 ,
-
SYNONYM: APPS.IGS_FI_REFUND_INT_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_FI_REFUND_INT_ALL, status:VALID,
-
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,
-
APPS.IGS_FI_REFUNDS_PROCESS SQL Statements
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
APPS.IGS_FI_REFUNDS_PROCESS 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'. ,