Search Results igs_fi_subaccts_all
Overview
The table IGS_FI_SUBACCTS_ALL is a core data structure within the Oracle E-Business Suite (EBS) Student System (IGS), specifically for financial management. It functions as the master repository for all defined sub-accounts within an institution. A sub-account is a critical financial entity used to segregate and track accounting transactions, such as receivables, revenue, and cash, for specific purposes, departments, or programs. This table supports multi-org architecture, as indicated by the '_ALL' suffix and the ORG_ID column in its unique key, allowing data to be partitioned by operating unit. Its primary role is to provide a centralized definition that is referenced by numerous transactional and setup tables across the student financials module to ensure consistent financial posting and reporting.
Key Information Stored
Each row in IGS_FI_SUBACCTS_ALL defines a single, valid sub-account. While the full column list is not detailed in the provided metadata, the description and key structure highlight the essential data points. The primary identifier is SUBACCOUNT_ID. Crucially, the unique key combines ORG_ID, SUBACCOUNT_NAME, and EFFECTIVE_START_DATE, enforcing that sub-account names are unique within an operating unit from a specific date. According to the description, each row stores the sub-account's name and description, along with associated account details for receivables, revenue, cash, and unapplied amounts. It also stores receipt lockbox numbers assigned to the sub-account, linking it to automated cash receipt processing.
Common Use Cases and Queries
This table is primarily referenced for setup validation, transaction processing, and financial reporting. Common operational scenarios include validating a sub-account during fee assessment or cash receipt entry, and generating reports that summarize financial activity by sub-account. Typical queries involve joining to transactional tables to aggregate balances or retrieve setup information for a given transaction. For example, to list all active sub-accounts for a specific operating unit, one might use:
- SELECT subaccount_name, description FROM igs_fi_subaccts_all WHERE org_id = :org_id AND SYSDATE BETWEEN effective_start_date AND NVL(effective_end_date, SYSDATE) ORDER BY subaccount_name;
Another common pattern is joining to the IGS_FI_BALANCES table to analyze financial summaries:
- SELECT sa.subaccount_name, fb.balance_amt FROM igs_fi_subaccts_all sa, igs_fi_balances fb WHERE sa.subaccount_id = fb.subaccount_id AND sa.org_id = :org_id;
Related Objects
As evidenced by the extensive foreign key relationships, IGS_FI_SUBACCTS_ALL is a pivotal parent table. Key child tables include IGS_FI_BALANCES (stores running balances), IGS_FI_CREDITS_ALL (credit memos), IGS_FI_FEE_TYPE_ALL (fee type setup), IGS_FI_BILL_ALL (invoices), and IGS_FI_PARTY_SUBACTS (assigns sub-accounts to customers/students). It is also referenced by configuration tables for lockboxes (IGS_FI_SA_LOCKBOXES), payment plans (IGS_FI_FIN_LT_PLAN), and credit types (IGS_FI_CR_TYPES_ALL). This wide integration underscores its central role in ensuring that all financial transactions in the Student System are posted to a valid and properly configured sub-account.
-
Table: IGS_FI_SUBACCTS_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: Stores information about each defined sub account. Each row contains information for a specific sub account, including name, description, receivables, revenue, cash and unapplied account details and receipt lockbox numbers that are assigned , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_FI_PARTY_SA
12.2.2
product: IGS - Student System (Obsolete) , description: Stores the mapping between the party id and the sub account id , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_FI_FIN_LT_PLAN
12.2.2
product: IGS - Student System (Obsolete) , description: Contains the plans for Finance and Late fee Charges , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_FI_P_SA_NOTES
12.2.2
product: IGS - Student System (Obsolete) , description: Contains any textual notes for a sub account and a person context. This tracks the notes with an effective date. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_FI_SA_SEGMENTS_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: This table captures the entities and their respective orders in the account hierarchy defined in the table , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_FI_FEE_TYPE_HIST_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the fee types used throughout the system for the purpose of applying fees and charges. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_FI_INV_INT_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: This interface table stores invoice data generated by invoice process. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_FI_SA_LOCKBOXES
12.2.2
product: IGS - Student System (Obsolete) , description: No longer used. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_FI_PARTY_SUBACTS
12.2.2
product: IGS - Student System (Obsolete) , description: Captures information that are specific to a person and sub account relationship. This table contains holds threshold amount , holds waiver flag etc. that are pertinent to the party and sub account context. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_FI_HOLD_PLN_LNS
12.2.2
product: IGS - Student System (Obsolete) , description: This table holds the data for the criteria defined for a particular hold plan. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_FI_BAL_EX_SACCTS
12.2.2
product: IGS - Student System (Obsolete) , description: This table captures information of Sub Accounts that need to be ignored for Balance Calculation. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_FI_BILL_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: IGS_FI_BILL_ALL is the relation where the Billing Header information is recorded. Here the Bill Numbers are generated and Bill header details such as Bill Date, Due Date, Billed Person, Sub Account and Balances are recorded. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_FI_FEE_TYPE_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes special contract based fee assessment rates , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_FI_CREDITS_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: This table contains information about all credit or payment transactions and is the central repository for all credits and payments related information in Student Finance. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_FI_CR_TYPES_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: Stores information about the 'credit type' of a credit transaction. The credit type provides the debit and credit account information to a credit transaction along with some other information like credit class etc. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_FI_BALANCES
12.2.2
product: IGS - Student System (Obsolete) , description: This table contains balance amount for a party in the context of an Account. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_FI_F_TYP_CA_INST_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the periods of fee assessment fee calendar instances applicable to a fee type. , implementation_dba_data: Not implemented in this database ,