Search Results error_account
Overview
IGS_FI_UNPOSTED_TRANSACTIONS is a reporting and integration view in the Oracle E-Business Suite Financials product family, specifically within the Student Systems / Financial Aid (IGS) schema. It is owned by APPS and exposes general ledger-bound transactions that have been generated but not yet posted to the General Ledger. The view consolidates unposted debits and credits from several IGS transaction sources—fee invoice lines, cash receipt activities, application adjustments, and admissions application fee requests—into a single, consistent presentation of accounting entries awaiting GL posting.
Its primary role is to drive the "unposted transactions" inquiry and the downstream GL posting programs within Student Financials. Because each source row is emitted as either a debit or credit line, the view produces a classic double-entry projection. The column GL_DATE is central to this view: it is the prospective accounting date that will be written to General Ledger when the transaction is posted, and it is a mandatory filter throughout the union (each contributing SELECT enforces "GL_DATE IS NOT NULL"). Users searching for "gl_date" are typically seeking to understand how the accounting date is derived, which records are eligible for transfer to GL, and how to reconcile unposted balances by accounting period.
Underlying Base Objects
The view is defined as a UNION ALL over four base IGS tables. Each base table contributes a debit leg and a credit leg:
- IGS_FI_INVLN_INT — fee invoice line interface records. Contributes debit (REC_ACCOUNT_CD / REC_GL_CCID) and credit (REV_ACCOUNT_CD / REV_GL_CCID) rows, but only when IGS_FI_GEN_005.FINP_GET_ACCT_METH equals 'ACCRUAL' and ERROR_ACCOUNT is not 'Y'.
- IGS_FI_CR_ACTIVITIES — cash receipt activities. Debit and credit legs are included where the respective GL code or account column is populated.
- IGS_FI_APPLICATIONS — application of payments against charges. Debit (DR_GL_CODE_CCID) and credit (CR_GL_CODE_CCID) legs are included using AMOUNT_APPLIED.
- IGS_AD_APP_REQ — admissions application fee requests. Debit (CASH_GL_CCID) and credit (REV_GL_CCID) legs are included using FEE_AMOUNT.
Eligibility across all sources requires POSTING_ID and POSTING_CONTROL_ID to be null (or GL_POSTED_DATE to be null for IGS_AD_APP_REQ), confirming the record has not been posted or submitted for posting. No additional base objects are documented, though IGS_FI_GEN_005 is referenced as a package function controlling the accounting method.
Key Columns
- GL_DATE — the accounting date proposed for the General Ledger entry. Non-nullable within the view; rows without a GL_DATE are excluded.
- ACCOUNT_CD columns (REC_ACCOUNT_CD, REV_ACCOUNT_CD, DR_ACCOUNT_CD, CR_ACCOUNT_CD, CASH_ACCOUNT_CD) — flexfield account codes for the debit/credit side.
- GL_CCID columns (REC_GL_CCID, REV_GL_CCID, DR_GL_CCID, CR_GL_CCID, CASH_GL_CCID, DR_GL_CODE_CCID, CR_GL_CODE_CCID) — numeric code combination identifiers mapping to GL_CODE_COMBINATIONS.
- AMOUNT / AMOUNT_APPLIED / FEE_AMOUNT — monetary value of the entry, mapped to a common amount position.
- DR / CR literal — a constant indicator denoting the debit or credit nature of the row.
Common Use Cases and Queries
Typical uses include reconciliation of unposted balances, review of GL dates awaiting posting, and feeding external reporting or interfaces. Example:
- Unposted entries by GL date:
SELECT gl_date, account_cd, amount, dr_cr FROM apps.igs_fi_unposted_transactions ORDER BY gl_date; - Period exposure: aggregate amounts within a date range to project GL impact before posting.
- Dr/Cr balancing check: group by GL_DATE and the 'DR'/'CR' literal to confirm debits equal credits prior to transfer to GL.
Because the view surfaces only unposted records, it is best treated as a point-in-time work queue: as the GL posting process runs and populates POSTING_ID/POSTING_CONTROL_ID, rows drop out of the view.
-
VIEW: APPS.IGS_FI_UNPOSTED_TRANSACTIONS
12.1.1
-
View: IGS_FI_INVLN_INT
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_FI_INVLN_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_INVLN_INT, object_name:IGS_FI_INVLN_INT, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_FI_INVLN_INT ,
-
View: IGS_FI_UNPOSTED_TRANSACTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_UNPOSTED_TRANSACTIONS, object_name:IGS_FI_UNPOSTED_TRANSACTIONS, status:VALID, product: IGS - Student System , description: Displays the un-posted transactions in Student Finance. , implementation_dba_data: APPS.IGS_FI_UNPOSTED_TRANSACTIONS ,
-
VIEW: APPS.IGS_FI_INVLN_INT
12.1.1
-
View: IGS_FI_UNPOSTED_TRANSACTIONS
12.2.2
product: IGS - Student System (Obsolete) , description: Displays the un-posted transactions in Student Finance. , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_FI_INVLN_INT_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGS_FI_INVLN_INT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_INVLN_INT_V, object_name:IGS_FI_INVLN_INT_V, status:VALID,
-
VIEW: APPS.IGS_FI_INVLN_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_INVLN_INT, object_name:IGS_FI_INVLN_INT, status:VALID,
-
View: IGSBV_PARTY_CHARGES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PARTY_CHARGES, object_name:IGSBV_PARTY_CHARGES, status:VALID, product: IGS - Student System , description: Contains details of charges for a person , implementation_dba_data: APPS.IGSBV_PARTY_CHARGES ,
-
View: IGSBV_PARTY_CHARGES
12.2.2
product: IGS - Student System (Obsolete) , description: Contains details of charges for a person , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_FI_PRC_APPL SQL Statements
12.1.1
-
View: IGS_FI_INVLN_INT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_INVLN_INT_V, object_name:IGS_FI_INVLN_INT_V, status:VALID, product: IGS - Student System , description: This view is created from multi-org filtered flat view IGS_FI_INVLN_INT for presentation of data in Charges History Form. , implementation_dba_data: APPS.IGS_FI_INVLN_INT_V ,
-
TABLE: IGS.IGS_FI_INVLN_INT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_INVLN_INT_ALL, object_name:IGS_FI_INVLN_INT_ALL, status:VALID,
-
View: IGS_FI_INVLN_INT_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view is created from multi-org filtered flat view IGS_FI_INVLN_INT for presentation of data in Charges History Form. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSBV_PARTY_CHARGES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PARTY_CHARGES, object_name:IGSBV_PARTY_CHARGES, status:VALID,
-
View: IGSFV_PARTY_CHARGES
12.2.2
product: IGS - Student System (Obsolete) , description: Contains details of charges for a person , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSFV_PARTY_CHARGES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PARTY_CHARGES, object_name:IGSFV_PARTY_CHARGES, status:VALID,
-
PACKAGE: APPS.IGS_FI_INVLN_INT_PKG
12.1.1
-
View: IGSFV_PARTY_CHARGES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PARTY_CHARGES, object_name:IGSFV_PARTY_CHARGES, status:VALID, product: IGS - Student System , description: Contains details of charges for a person , implementation_dba_data: APPS.IGSFV_PARTY_CHARGES ,
-
PACKAGE BODY: APPS.IGS_FI_INVLN_INT_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_FI_COM_REC_INTERFACE
12.1.1
-
APPS.IGS_FI_GEN_007 SQL Statements
12.1.1
-
APPS.IGS_FI_GL_INTERFACE SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_FI_PRC_APPL
12.1.1
-
APPS.IGS_AS_SS_DOC_REQUEST dependencies on IGS_FI_INVLN_INT_ALL
12.1.1
-
APPS.IGS_FI_PRC_APPL dependencies on IGS_FI_INVLN_INT
12.1.1
-
PACKAGE BODY: APPS.IGS_FI_GL_INTERFACE
12.1.1
-
APPS.IGS_FI_GEN_007 dependencies on IGS_FI_INVLN_INT
12.1.1
-
APPS.IGS_AS_SS_DOC_REQUEST dependencies on IGS_FI_INV_INT
12.1.1
-
APPS.IGS_AS_SS_DOC_REQUEST SQL Statements
12.1.1
-
APPS.IGS_FI_INVLN_INT_PKG dependencies on IGS_FI_INVLN_INT_ALL
12.1.1
-
APPS.IGS_FI_GL_INTERFACE dependencies on GL_JE_CATEGORIES
12.1.1
-
APPS.IGS_FI_INVLN_INT_PKG dependencies on APP_EXCEPTION
12.1.1
-
APPS.IGS_FI_INVLN_INT_PKG dependencies on IGS_GE_MSG_STACK
12.1.1
-
APPS.IGS_FI_INVLN_INT_PKG dependencies on FND_MESSAGE
12.1.1
-
PACKAGE BODY: APPS.IGS_FI_GEN_007
12.1.1
-
APPS.IGS_FI_COM_REC_INTERFACE dependencies on FND_FILE
12.1.1
-
APPS.IGS_FI_GL_INTERFACE dependencies on GL_INTERFACE
12.1.1
-
PACKAGE BODY: APPS.IGS_AS_SS_DOC_REQUEST
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'. ,