Search Results igs_fi_anc_int
Overview
IGS_FI_ANC_INT is a Student System interface view exposed within the obsolete IGS (Student Systems) product family in Oracle E-Business Suite 12.1.1 and 12.2.2. The view represents the interface layer for ancillary attributes associated with students, providing the staging surface through which ancillary fee and attribute data flows into downstream financial processing. In the wider EBS architecture, interface tables and views of this type act as a hand-off point between the operational Student System and the financial modules, allowing batches of student ancillary records to be loaded, validated, and subsequently consumed by import or accounting processes. The documentation explicitly notes that the object is not implemented in the current database, indicating that within the version documented it exists as a defined view specification with no populated runtime instantiation.
Users querying IGS_FI_ANC_INT are typically investigating interface batch status, diagnosing import failures, or reconciling staged ancillary records against validated results. The presence of the VALIDATION_FLAG column, which is the search term that surfaces this object, reflects the view's role as a validation checkpoint: each staged row carries a flag indicating whether the record passed the interface validation rules before being promoted to permanent ancillary data.
Underlying Base Objects
The ETRM metadata documents no referenced base objects for this view. That is consistent with the status note that the view is "Not implemented in this database." Where an implemented equivalent exists, such a view would normally be defined over one or more IGS interface tables, most plausibly a table such as IGS_FI_ANC_INT_T, holding the same column set. Because the metadata supplies no confirmed base object, the view text itself must be treated as the authoritative structural reference. The SELECT list constructs a ROW_ID alias from ROWID, which is a common ETRM view pattern used to expose a pseudo-key for downstream processing while keeping the underlying table columns directly accessible.
Key Columns
- ANCILLARY_INT_ID — Primary batch/interface identifier for each ancillary record.
- PERSON_ID / PERSON_ID_TYPE / API_PERSON_ID — Student identity keys, distinguishing the internal person ID, its type, and the API-facing identifier.
- STATUS / VALIDATION_FLAG / ERROR_MSG — Core validation triad: the processing status, a flag indicating the validation outcome, and the error text when validation fails. These three columns drive interface troubleshooting.
- FEE_TYPE / FEE_CAL_TYPE / FEE_CI_SEQUENCE_NUMBER — The fee classification and calendar/sequence references that link the ancillary to a specific fee structure and period.
- OVERRIDE_DR_REC_ACCOUNT_CD, OVERRIDE_DR_REC_CCID, OVERRIDE_CR_REV_ACCOUNT_CD, OVERRIDE_CR_REV_CCID — Accounting overrides for the debit receivable and credit revenue sides, supplied as both accounting-flex code strings and code combination IDs.
- ANCILLARY_ATTRIBUTE1 … ANCILLARY_ATTRIBUTE15 — Fifteen descriptive-attribute slots dedicated to ancillary detail.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1 … ATTRIBUTE20 — Standard EBS descriptive-flexfield columns used for extensible business data.
- EFFECTIVE_DT / TRANSACTION_DT — Effective and transactional dating for the interface record.
- ORG_ID — Multi-org operating unit discriminator.
- REQUEST_ID / PROGRAM_ID — Concurrent program identifiers that tie the record to the batch that created it, enabling traceability back to the submitting request.
- ROW_ID — ROWID-based surrogate identifier exposed by the view.
Common Use Cases and Queries
The dominant use case is locating interface rows that failed validation, so that corrections can be applied and the batch resubmitted. Because the object carries VALIDATION_FLAG, STATUS, and ERROR_MSG, a targeted query filters on those columns:
- Identify failed or unvalidated ancillary interface rows for a given person.
- Reconcile rows by ORG_ID and REQUEST_ID to confirm that a specific concurrent request loaded and validated its records.
- Inspect accounting override columns before releasing data to the receivable and revenue accounts.
A representative query:
SELECT ANCILLARY_INT_ID, PERSON_ID, STATUS, VALIDATION_FLAG, ERROR_MSG, FEE_TYPE, EFFECTIVE_DT
FROM IGS_FI_ANC_INT
WHERE VALIDATION_FLAG = 'E'
AND ORG_ID = :p_org_id
ORDER BY ANCILLARY_INT_ID;
Given the documented "Not implemented in this database" status, such queries may return no rows or fail with an invalid-identifier error depending on whether the view was ever created in the target 12.1.1 or 12.2.2 instance. Consultants should confirm existence via ALL_OBJECTS and the compiled view definition in ALL_VIEWS before relying on it in custom logic, and should treat the view text above as the definitive column inventory.
-
View: IGS_FI_ANC_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_ANC_INT, object_name:IGS_FI_ANC_INT, status:VALID, product: IGS - Student System , description: The interface table for the Ancillary attributes for the students. , implementation_dba_data: APPS.IGS_FI_ANC_INT ,
-
View: IGS_FI_ANC_INT
12.2.2
product: IGS - Student System (Obsolete) , description: The interface table for the Ancillary attributes for the students. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_FI_ANC_INT_V
12.1.1
-
SYNONYM: APPS.IGS_FI_ANC_INT_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_FI_ANC_INT_ALL, status:VALID,
-
PACKAGE BODY: APPS.IGS_FI_PRC_IMPCLC_ANC_CHGS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_PRC_IMPCLC_ANC_CHGS, status:VALID,
-
View: IGS_FI_ANC_INT_V
12.2.2
product: IGS - Student System (Obsolete) , description: The interface table for the Ancillary attributes for the students. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_FI_ANC_INT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_ANC_INT_V, object_name:IGS_FI_ANC_INT_V, status:VALID, product: IGS - Student System , description: The interface table for the Ancillary attributes for the students. , implementation_dba_data: APPS.IGS_FI_ANC_INT_V ,
-
APPS.IGS_FI_PRC_IMPCLC_ANC_CHGS SQL Statements
12.1.1
-
VIEW: APPS.IGS_FI_ANC_INT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_ANC_INT_V, object_name:IGS_FI_ANC_INT_V, status:VALID,
-
VIEW: APPS.IGS_FI_ANC_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_ANC_INT, object_name:IGS_FI_ANC_INT, status:VALID,
-
APPS.IGS_FI_PRC_IMPCLC_ANC_CHGS dependencies on IGS_FI_ANC_INT
12.1.1
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.IGS_FI_PRC_IMPCLC_ANC_CHGS
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
APPS.IGS_FI_PRC_IMPCLC_ANC_CHGS dependencies on IGS_FI_IMPCHGS_LINES
12.1.1
-
APPS.IGS_FI_PRC_IMPCLC_ANC_CHGS dependencies on IGS_FI_ANC_RATES
12.1.1
-
APPS.IGS_FI_PRC_IMPCLC_ANC_CHGS dependencies on IGS_FI_IMP_CHGS
12.1.1
-
APPS.IGS_FI_PRC_IMPCLC_ANC_CHGS dependencies on IGS_FI_GEN_GL
12.1.1
-
APPS.IGS_FI_PRC_IMPCLC_ANC_CHGS dependencies on FND_MESSAGE
12.1.1
-
12.1.1 DBA Data
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'. ,
-
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'. ,