Search Results manage_accounts




Overview

APPS.IGS_FI_CONTROL is a financial control view in the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 environment. The IGS prefix places it within the Student Systems / Financials integration area, where it serves as a single-row configuration repository that governs how financial transactions are processed, posted, and reconciled. The view exposes control-level parameters such as accounting methods, general ledger code combinations, refund destinations, invoice numbering, and supplier defaults that drive the behavior of the receivables and payables interfaces used by student financials.

In practice, the view functions as a reporting and integration surface rather than a transactional object. Application logic reads these control records to determine which GL accounts to debit or credit, how payment terms and invoice types are assigned, and whether credits, waivers, and account conversion processes are enabled. Because it presents this configuration in a denormalized, easy-to-query form, it is commonly used by developers and analysts building reports, validation queries, and diagnostic scripts.

Underlying Base Objects

The view is defined over the base table IGS_FI_CONTROL_ALL. The naming convention of the base table indicates that it holds a superset of data across operating units, with each row identified by ORG_ID. The view applies a security predicate based on USERENV('CLIENT_INFO'), the mechanism EBS uses to propagate the current operating unit context for multi-org (MOAC) security. Specifically, the predicate compares the ORG_ID column against the operating unit identifier embedded in the client information, defaulting to -99 when no value is available.

This design means the view returns only the row (or rows) relevant to the operating unit in the user's current session context. No additional base tables are documented as being referenced directly by the view definition; all columns are drawn from the single control table.

Key Columns

The view exposes columns that fall into several functional groups, and several are directly relevant to the "manage accounts" search that surfaced this object:

Common Use Cases and Queries

The view is most often queried to validate financial configuration for an operating unit before running interface or conversion programs. A typical query to inspect account management and GL defaults is:

  • SELECT org_id, manage_accounts, rec_gl_ccid, cash_gl_ccid, unapp_gl_ccid, set_of_books_id FROM apps.igs_fi_control;

Analysts use it to confirm that refund accounts and accounting methods are correctly populated, and to audit the timestamps of the last account, payment term, and payment transactions for troubleshooting stalled interfaces. Because the view enforces operating unit security automatically, queries return only the applicable configuration row, making it suitable for embedded validation logic in concurrent programs and custom reports.