Search Results igs_fi_acc
Overview
IGS_FI_ACC is a database view delivered within the Oracle E-Business Suite Student System (IGS) product family. In the ETRM metadata for release 12.2.2, the object is classified under the IGS - Student System module and carries an explicit "Obsolete" designation. It exposes financial account data maintained by the Student System's financials component, presenting one row per account record along with descriptive attributes and standard Oracle EBS audit columns.
The view performs a critical function common to multi-org (multi-organization) enabled IGS objects: it applies an operating unit filter at query time. Rather than presenting every account across all organizations, the view restricts the result set to records whose ORG_ID matches the organization identifier supplied through the USERENV('CLIENT_INFO') session context. This makes IGS_FI_ACC a reporting- and integration-safe interface, since it inherits the security and data segmentation behavior of the underlying _ALL table.
Underlying Base Objects
The view is defined solely over a single base table, IGS_FI_ACC_ALL. The "_ALL" suffix is the standard Oracle Applications convention indicating a table that stores rows for multiple operating units, with ORG_ID as the discriminating column. The view does not join to any additional IGS tables, nor does it incorporate lookups or reference data; it is a direct projection of selected columns from IGS_FI_ACC_ALL.
The view definition aliases the base table as "A" and exposes the table's ROWID as ROW_ID, which preserves a unique physical row identifier for update or drill-down operations. The WHERE clause is the only logic applied, and it compares the base table's ORG_ID to a value decoded from the CLIENT_INFO session variable, with a NVL wrapper and a sentinel value of -99 to handle null or uninitialized session contexts.
Key Columns
- ROW_ID — The physical ROWID of the underlying IGS_FI_ACC_ALL row; useful for joins, updates, and Drilldown links.
- FIN_CAL_TYPE — Financial calendar type, identifying which calendar the account's financial periods are based on.
- FIN_CI_SEQUENCE_NUMBER — Financial calendar instance sequence number, tying the account to a specific calendar instance.
- ACCOUNT_CD — The account code, the business-readable identifier for the financial account.
- DESCRIPTION — Free-text description of the account.
- CLOSED_IND — Indicator (typically Y/N) denoting whether the account is closed.
- ACCOUNT_ID — Internal surrogate primary key for the account record.
- ORG_ID — Operating unit identifier, the column used by the view's WHERE clause for data segmentation.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — Standard Oracle EBS audit columns recording who created and last modified the row and when.
Common Use Cases and Queries
The view is typically used for financial account validation, account listing in concurrent programs or reports, and integration extracts that must respect operating unit boundaries. A basic query selecting the active accounts for the current session's organization is:
SELECT account_cd, description, fin_cal_type, fin_ci_sequence_number
FROM igs_fi_acc
WHERE NVL(closed_ind, 'N') = 'N';
Because the view enforces ORG_ID filtering internally, callers generally do not add an explicit ORG_ID predicate; however, reports intending to display the organization explicitly may include it. A drill-down to the base table, or an update path, uses ROW_ID:
SELECT row_id, account_id, org_id, last_update_date
FROM igs_fi_acc
WHERE account_cd = :account_code;
Note that because the ETRM metadata marks this object as not implemented in the documented database and the product as obsolete, references to IGS_FI_ACC in 12.1.1 and 12.2.2 should be verified against the actual instance before use in new development.
-
View: IGS_FI_ACC
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_FI_ACC
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_ACC, object_name:IGS_FI_ACC, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_FI_ACC ,
-
VIEW: APPS.IGS_FI_CONTROL_V
12.1.1
-
VIEW: APPS.IGS_FI_CR_TYPES_V
12.1.1
-
VIEW: APPS.IGS_FI_CR_ACTIVITIES_V
12.1.1
-
View: IGS_FI_CONTROL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_CONTROL_V, object_name:IGS_FI_CONTROL_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_FI_CONTROL_V ,
-
View: IGS_FI_CONTROL_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_FI_CR_TYPES_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view is created to be used in Credit Types form. All associated descriptions are obtained by joining with the setup tables. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_FI_OTC_CHARGES_V
12.1.1
-
VIEW: APPS.IGS_FI_REFUNDS_V
12.1.1
-
View: IGS_FI_CR_ACTIVITIES_V
12.2.2
product: IGS - Student System (Obsolete) , description: Retrieves the records from the Credit Activities table. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_FI_CR_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_CR_TYPES_V, object_name:IGS_FI_CR_TYPES_V, status:VALID, product: IGS - Student System , description: This view is created to be used in Credit Types form. All associated descriptions are obtained by joining with the setup tables. , implementation_dba_data: APPS.IGS_FI_CR_TYPES_V ,
-
View: IGS_FI_CR_ACTIVITIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_CR_ACTIVITIES_V, object_name:IGS_FI_CR_ACTIVITIES_V, status:VALID, product: IGS - Student System , description: Retrieves the records from the Credit Activities table. , implementation_dba_data: APPS.IGS_FI_CR_ACTIVITIES_V ,
-
View: IGS_FI_REFUNDS_V
12.2.2
product: IGS - Student System (Obsolete) , description: Contains all refund transactions which have been created due to excess unapplied credits along with information about payee. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_FI_OTC_CHARGES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_OTC_CHARGES_V, object_name:IGS_FI_OTC_CHARGES_V, status:VALID, product: IGS - Student System , description: The view contains information on the charges(of type external) that are created at the time of receipt creation. , implementation_dba_data: APPS.IGS_FI_OTC_CHARGES_V ,
-
View: IGS_FI_OTC_CHARGES_V
12.2.2
product: IGS - Student System (Obsolete) , description: The view contains information on the charges(of type external) that are created at the time of receipt creation. , implementation_dba_data: Not implemented in this database ,
-
SYNONYM: APPS.IGS_FI_ACC_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_FI_ACC_ALL, status:VALID,
-
View: IGS_FI_REFUNDS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_REFUNDS_V, object_name:IGS_FI_REFUNDS_V, status:VALID, product: IGS - Student System , description: Contains all refund transactions which have been created due to excess unapplied credits along with information about payee. , implementation_dba_data: APPS.IGS_FI_REFUNDS_V ,
-
PACKAGE BODY: APPS.IGS_FI_VAL_FTCI
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_VAL_FTCI, status:VALID,
-
PACKAGE BODY: APPS.IGS_FI_PRC_ACCT_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_PRC_ACCT_PKG, status:VALID,
-
VIEW: APPS.IGS_FI_ACC
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_ACC, object_name:IGS_FI_ACC, status:VALID,
-
PACKAGE BODY: APPS.IGS_FI_PRC_FEE_ROLLV
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_PRC_FEE_ROLLV, status:VALID,
-
VIEW: APPS.IGS_FI_CR_ACTIVITIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_CR_ACTIVITIES_V, object_name:IGS_FI_CR_ACTIVITIES_V, status:VALID,
-
VIEW: APPS.IGS_FI_CR_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_CR_TYPES_V, object_name:IGS_FI_CR_TYPES_V, status:VALID,
-
PACKAGE: APPS.IGS_FI_VAL_FTCI
12.1.1
-
APPS.IGS_FI_VAL_FTCI SQL Statements
12.1.1
-
VIEW: APPS.IGS_FI_CONTROL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_CONTROL_V, object_name:IGS_FI_CONTROL_V, status:VALID,
-
VIEW: APPS.IGS_FI_REFUNDS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_REFUNDS_V, object_name:IGS_FI_REFUNDS_V, status:VALID,
-
VIEW: APPS.IGS_FI_OTC_CHARGES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_OTC_CHARGES_V, object_name:IGS_FI_OTC_CHARGES_V, status:VALID,
-
PACKAGE BODY: APPS.IGS_FI_VAL_FTCI
12.1.1
-
APPS.IGS_FI_VAL_FTCI dependencies on IGS_FI_ACC
12.1.1
-
APPS.IGS_FI_PRC_ACCT_PKG dependencies on IGS_FI_ACC
12.1.1
-
APPS.IGS_FI_PRC_FEE_ROLLV dependencies on IGS_FI_ACC
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_VAL_FTCI dependencies on IGS_CA_INST_REL
12.1.1
-
APPS.IGS_FI_PRC_FEE_ROLLV SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_FI_PRC_FEE_ROLLV
12.1.1
-
APPS.IGS_FI_VAL_FTCI dependencies on IGS_CA_INST
12.1.1
-
APPS.IGS_FI_PRC_FEE_ROLLV dependencies on IGS_FI_FTCI_ACCTS
12.1.1
-
APPS.IGS_FI_PRC_FEE_ROLLV dependencies on IGS_FI_F_TYP_CA_INST
12.1.1
-
APPS.IGS_FI_PRC_FEE_ROLLV dependencies on FND_FILE
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'. ,
-
12.1.1 DBA Data
12.1.1
-
APPS.IGS_FI_PRC_FEE_ROLLV dependencies on IGS_CA_INST
12.1.1
-
APPS.IGS_FI_PRC_FEE_ROLLV dependencies on FND_MESSAGE
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'. ,