Search Results debit_account_code
Overview
IGSBV_PERSON_DEPOSITS is a read-only reporting view belonging to the IGS (Student System) product family, specifically the Student Finance component. According to the documented ETRM metadata, the view "Stores all Student Deposits in Student Finance." It presents a denormalized, business-friendly projection of student deposit activity by joining credit header records with their corresponding credit activities, party records, and credit type definitions. The view is classified under the Obsolete product designation, and the ETRM metadata explicitly notes "Not implemented in this database," indicating that in many 12.1.1 and 12.2.2 environments the view is absent or has been superseded. Where it exists, its primary role is to support inquiry screens, deposit reconciliation reports, and downstream integrations requiring a single row per deposit with both credit and cash-application attributes.
Underlying Base Objects
The view text is defined over four base tables joined on their primary foreign keys:
- IGS_FI_CREDITS_ALL (CR) — the credit header, holding deposit amounts, currency, dates, instrument details, and reversal information.
- IGS_FI_CR_ACTIVITIES (CA) — the credit activity or cash-application lines, carrying the accounting code combinations and general ledger posting information.
- HZ_PARTIES (PA) — the Trading Community Architecture party record supplying party number and name.
- IGS_FI_CR_TYPES_ALL (CP) — the credit type definition, used here to restrict results to the 'OTHDEPOSIT' and 'ENRDEPOSIT' credit classes.
The join is established as CR.CREDIT_ID = CA.CREDIT_ID, CR.PARTY_ID = PA.PARTY_ID, and CR.CREDIT_TYPE_ID = CP.CREDIT_TYPE_ID. The view is defined WITH READ ONLY. The ETRM metadata records no referenced base objects, so the preceding mapping is derived entirely from the embedded view text.
Key Columns
- CREDIT_NUMBER, CREDIT_DESC, AMOUNT, UNAPPLIED_AMOUNT, CURRENCY_CD, EXCHANGE_RATE — core deposit identification and value attributes.
- TRANSACTION_DATE, EFFECTIVE_DATE, DEPOSIT_DATE, GL_DATE, GL_POSTED_DATE — the dates governing recognition, deposit, and general ledger posting.
- DR_ACCOUNT_CD, CR_ACCOUNT_CD, DR_GL_CCID, CR_GL_CCID — the debit and credit accounting code combinations. The user search term "debit_account_code" maps conceptually to DR_ACCOUNT_CD and its corresponding code combination identifier DR_GL_CCID, which are the fields referenced when tracing the debit side of a deposit entry.
- CHECK_NUMBER, CREDIT_CARD_NUMBER, CREDIT_CARD_APPROVAL_CODE, RECEIPT_LOCKBOX_NUMBER, BATCH_NAME — payment instrument and receipt-processing attributes.
- REVERSAL_DATE, REVERSAL_REASON_CODE, REVERSAL_COMMENTS — reversal handling.
- PARTY_NUMBER, PARTY_NAME, PARTY_ID — depositor identification.
- BILL_NUMBER, BILL_DATE, BILL_ID, POSTING_ID, POSTING_CONTROL_ID — billing and posting linkage.
- Several columns are exposed through label-substitution aliases (for example "_LA:CR.CREDIT_STATUS", "_LA:CR.CREDIT_INSTRUMENT", "_LA:CR.CREDIT_CARD_CODE") that resolve lookup meanings at runtime via IGS_LOOKUP_VALUES.
Common Use Cases and Queries
The view supports deposit reconciliation, student account inquiry, and audit reporting. A typical query retrieving deposits with their debit accounting code is:
SELECT credit_number, credit_desc, amount, currency_cd, deposit_date, dr_account_cd, dr_gl_ccid, cr_account_cd FROM igsbv_person_deposits WHERE party_number = :party_number AND deposit_date BETWEEN :from_date AND :to_date;
To isolate unapplied deposits for follow-up:
SELECT credit_number, party_name, amount, unapplied_amount, deposit_date FROM igsbv_person_deposits WHERE unapplied_amount > 0 ORDER BY deposit_date;
Because the view is read-only and filtered to OTHDEPOSIT and ENRDEPOSIT credit classes, it cannot be used for data maintenance; update operations must target IGS_FI_CREDITS_ALL or IGS_FI_CR_ACTIVITIES directly. Given the obsolete designation and the "Not implemented" note, DBAs should verify existence before referencing the view and confirm whether a replacement object has been provided in the target 12.1.1 or 12.2.2 instance.
-
View: IGSBV_PERSON_DEPOSITS
12.2.2
product: IGS - Student System (Obsolete) , description: Stores all Student Deposits in Student Finance , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSBV_PARTY_REFUNDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PARTY_REFUNDS, object_name:IGSBV_PARTY_REFUNDS, status:VALID,
-
View: IGSBV_PARTY_CREDITS
12.2.2
product: IGS - Student System (Obsolete) , description: Stores all Party Credits in Student Finance , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_PARTY_REFUNDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PARTY_REFUNDS, object_name:IGSBV_PARTY_REFUNDS, status:VALID, product: IGS - Student System , description: Stores all refund transactions, which have been created due to excess unapplied credits. , implementation_dba_data: APPS.IGSBV_PARTY_REFUNDS ,
-
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 ,
-
VIEW: APPS.IGSFV_PARTY_REFUNDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PARTY_REFUNDS, object_name:IGSFV_PARTY_REFUNDS, status:VALID,
-
View: IGSBV_PARTY_REFUNDS
12.2.2
product: IGS - Student System (Obsolete) , description: Stores all refund transactions, which have been created due to excess unapplied credits. , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_PERSON_DEPOSITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PERSON_DEPOSITS, object_name:IGSBV_PERSON_DEPOSITS, status:VALID, product: IGS - Student System , description: Stores all Student Deposits in Student Finance , implementation_dba_data: APPS.IGSBV_PERSON_DEPOSITS ,
-
View: IGSBV_PARTY_CREDITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PARTY_CREDITS, object_name:IGSBV_PARTY_CREDITS, status:VALID, product: IGS - Student System , description: Stores all Party Credits in Student Finance , implementation_dba_data: APPS.IGSBV_PARTY_CREDITS ,
-
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_PERSON_DEPOSITS
12.2.2
product: IGS - Student System (Obsolete) , description: Stores all Student Deposits in Student Finance , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_PARTY_REFUNDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PARTY_REFUNDS, object_name:IGSFV_PARTY_REFUNDS, status:VALID, product: IGS - Student System , description: Stores all refund transactions, which have been created due to excess unapplied credits. , implementation_dba_data: APPS.IGSFV_PARTY_REFUNDS ,
-
View: IGSFV_PARTY_REFUNDS
12.2.2
product: IGS - Student System (Obsolete) , description: Stores all refund transactions, which have been created due to excess unapplied credits. , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_PARTY_CREDITS
12.2.2
product: IGS - Student System (Obsolete) , description: Stores all Party Credits in Student Finance , implementation_dba_data: Not implemented in this database ,
-
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 ,
-
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.IGSBV_PERSON_DEPOSITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PERSON_DEPOSITS, object_name:IGSBV_PERSON_DEPOSITS, status:VALID,
-
View: IGSFV_PERSON_DEPOSITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PERSON_DEPOSITS, object_name:IGSFV_PERSON_DEPOSITS, status:VALID, product: IGS - Student System , description: Stores all Student Deposits in Student Finance , implementation_dba_data: APPS.IGSFV_PERSON_DEPOSITS ,
-
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,
-
TABLE: IGS.IGS_FI_COM_RECS_INT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_COM_RECS_INT, object_name:IGS_FI_COM_RECS_INT, status:VALID,
-
VIEW: APPS.IGSBV_PARTY_CREDITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PARTY_CREDITS, object_name:IGSBV_PARTY_CREDITS, status:VALID,
-
View: IGSFV_PARTY_CREDITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PARTY_CREDITS, object_name:IGSFV_PARTY_CREDITS, status:VALID, product: IGS - Student System , description: Stores all Party Credits in Student Finance , implementation_dba_data: APPS.IGSFV_PARTY_CREDITS ,
-
VIEW: APPS.IGSFV_PERSON_DEPOSITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PERSON_DEPOSITS, object_name:IGSFV_PERSON_DEPOSITS, status:VALID,
-
APPS.IGS_FI_COM_RECS_INT_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGSFV_PARTY_CREDITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PARTY_CREDITS, object_name:IGSFV_PARTY_CREDITS, status:VALID,
-
PACKAGE BODY: APPS.IGS_FI_COM_RECS_INT_PKG
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'. ,