Search Results csi_i_asset_interface
Overview
The CSI_I_ASSET_INTERFACE table is an Install Base (CSI) interface table within Oracle E-Business Suite, identified in the ETRM repository as a VALID, standalone table owned by the CSI schema. Its documented description, "Instance Asset Interface," indicates that it serves as a staging and reconciliation structure through which fixed asset information is synchronized with Oracle Install Base instance records. In the EBS architecture, interface tables such as this one typically receive rows from external or upstream processes, expose them to validation and concurrent processing, and then update the corresponding base entities. The table holds 19 documented columns and a single unique index, CSI_I_ASSET_INTERFACE_U1, defined on IA_INTERFACE_ID.
From a data modeling perspective, the ETRM metadata classifies this object heuristically as standalone, meaning it does not participate in the documented foreign key network in a way that would place it as a classic hub or link. Given its interface nature, the most appropriate modeling suggestion is to treat it as a satellite-like staging entity anchored to the instance asset it ultimately references, with INSTANCE_ASSET_ID acting as the semantic link to the CSI_I_ASSETS base table.
Key Information Stored
The table's surrogate primary key and unique business-key candidate is IA_INTERFACE_ID, which uniquely identifies each interface row and is enforced by the unique index CSI_I_ASSET_INTERFACE_U1. The foreign key column INSTANCE_ASSET_ID references CSI_I_ASSETS and ties each interface record to the target instance asset.
- IA_INTERFACE_ID — Surrogate identifier for the interface row; the documented unique key.
- INST_INTERFACE_ID — Identifier linking this asset interface row to the parent instance interface transaction.
- INSTANCE_ASSET_ID — Foreign key to CSI_I_ASSETS; identifies the instance asset being synchronized.
- INSTANCE_ID — Identifies the owning instance in Install Base.
- FA_ASSET_ID, FA_ASSET_NUMBER — Fixed Assets identifiers for the source asset being interfaced.
- FA_BOOK_TYPE_CODE — Fixed Assets book under which the asset is recorded.
- FA_LOCATION_ID — Fixed Assets location reference for the asset.
- ASSET_QUANTITY — Quantity of the asset represented by the interface row.
- FA_SYNC_FLAG — Indicator controlling or recording synchronization with Fixed Assets.
- UPDATE_STATUS — Processing status of the interface record (for example, pending, processed, or errored).
- ACTIVE_START_DATE, ACTIVE_END_DATE — Effective dating of the interface record's validity.
- OBJECT_VERSION_NUMBER — Optimistic locking column used by the EBS framework.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — Standard WHO audit columns.
Common Use Cases and Queries
Typical use cases center on reconciling Fixed Assets data with Install Base instances, monitoring interface processing status, and diagnosing rows that failed validation. A common reporting pattern joins the interface table to the base asset table on INSTANCE_ASSET_ID, filtering by UPDATE_STATUS to isolate unprocessed rows:
SELECT i.IA_INTERFACE_ID, i.INSTANCE_ASSET_ID, i.FA_ASSET_NUMBER, i.UPDATE_STATUS
FROM CSI.CSI_I_ASSET_INTERFACE i
WHERE i.UPDATE_STATUS IS NULL OR i.UPDATE_STATUS = 'PENDING';
Analysts also reconcile by FA_BOOK_TYPE_CODE to confirm which fixed asset books have been synchronized, and use ACTIVE_START_DATE and ACTIVE_END_DATE to report effective-dated asset associations. Because INST_INTERFACE_ID groups rows under a parent interface transaction, it supports batch-level auditing of a single interface run.
Related Objects
- CSI_I_ASSETS — The principal referenced table; joined via INSTANCE_ASSET_ID, the documented foreign key target.
- CSI_I_ASSET_INTERFACE_U1 — Unique index enforcing IA_INTERFACE_ID and supporting efficient single-row lookups.
- CSI_II_INTERFACE / CSI_INTERFACE tables — Parent instance interface tables commonly associated with INST_INTERFACE_ID.
- CSI_INSTANCE_ASSETS / CSI_ITEM_INSTANCES — Install Base instance and asset tables supplying INSTANCE_ID context.
- FA_ADDITIONS / FA_BOOKS — Fixed Assets source tables underlying FA_ASSET_ID and FA_BOOK_TYPE_CODE.
- CSI Install Base concurrent programs — Processing programs that read this interface table and update UPDATE_STATUS upon completion.
-
Table: CSI_I_ASSET_INTERFACE
12.1.1
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_I_ASSET_INTERFACE, object_name:CSI_I_ASSET_INTERFACE, status:VALID, product: CSI - Install Base , description: Instance Asset Interface , implementation_dba_data: CSI.CSI_I_ASSET_INTERFACE ,
-
Table: CSI_I_ASSET_INTERFACE
12.2.2
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_I_ASSET_INTERFACE, object_name:CSI_I_ASSET_INTERFACE, status:VALID, product: CSI - Install Base , description: Instance Asset Interface , implementation_dba_data: CSI.CSI_I_ASSET_INTERFACE ,
-
SYNONYM: APPS.CSI_I_ASSET_INTERFACE
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CSI_I_ASSET_INTERFACE, status:VALID,
-
SYNONYM: APPS.CSI_I_ASSET_INTERFACE
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CSI_I_ASSET_INTERFACE, status:VALID,
-
VIEW: CSI.CSI_I_ASSET_INTERFACE#
12.2.2
owner:CSI, object_type:VIEW, object_name:CSI_I_ASSET_INTERFACE#, status:VALID,
-
VIEW: CSI.CSI_I_ASSET_INTERFACE#
12.2.2
-
APPS.CSI_ML_CREATE_PVT SQL Statements
12.1.1
-
APPS.CSI_ML_CREATE_PVT SQL Statements
12.2.2
-
TABLE: CSI.CSI_I_ASSET_INTERFACE
12.1.1
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_I_ASSET_INTERFACE, object_name:CSI_I_ASSET_INTERFACE, status:VALID,
-
PACKAGE BODY: APPS.CSI_ML_CREATE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_ML_CREATE_PVT, status:VALID,
-
PACKAGE BODY: APPS.CSI_ML_UPDATE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_ML_UPDATE_PVT, status:VALID,
-
PACKAGE BODY: APPS.CSI_ML_UPDATE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_ML_UPDATE_PVT, status:VALID,
-
TABLE: CSI.CSI_I_ASSET_INTERFACE
12.2.2
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_I_ASSET_INTERFACE, object_name:CSI_I_ASSET_INTERFACE, status:VALID,
-
PACKAGE BODY: APPS.CSI_ML_CREATE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_ML_CREATE_PVT, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.CSI_ML_INTERFACE_TXN_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_ML_INTERFACE_TXN_PVT, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.CSI_ASSET_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_ASSET_PVT, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.CSI_ML_INTERFACE_TXN_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_ML_INTERFACE_TXN_PVT, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.CSI_ML_PROGRAM_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_ML_PROGRAM_PUB, status:VALID,
-
PACKAGE BODY: APPS.CSI_ML_PROGRAM_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_ML_PROGRAM_PUB, status:VALID,
-
PACKAGE BODY: APPS.CSI_ASSET_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_ASSET_PVT, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
APPS.CSI_ML_INTERFACE_TXN_PVT SQL Statements
12.2.2
-
APPS.CSI_ML_PROGRAM_PUB SQL Statements
12.1.1
-
PACKAGE BODY: APPS.CSI_ML_UTIL_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_ML_UTIL_PVT, status:VALID,
-
PACKAGE BODY: APPS.CSI_ML_UTIL_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_ML_UTIL_PVT, status:VALID,
-
APPS.CSI_ML_INTERFACE_TXN_PVT SQL Statements
12.1.1
-
APPS.CSI_ML_PROGRAM_PUB SQL Statements
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
APPS.CSI_ASSET_PVT SQL Statements
12.1.1
-
APPS.CSI_ASSET_PVT SQL Statements
12.2.2
-
APPS.CSI_ASSET_PVT dependencies on CSI_I_ASSET_INTERFACE
12.2.2
-
APPS.CSI_ML_UTIL_PVT SQL Statements
12.2.2
-
APPS.CSI_ML_UPDATE_PVT dependencies on CSI_I_ASSET_INTERFACE
12.2.2
-
APPS.CSI_ML_CREATE_PVT dependencies on CSI_I_ASSET_INTERFACE
12.2.2
-
PACKAGE BODY: APPS.CSI_ML_PROGRAM_PUB
12.1.1
-
APPS.CSI_ML_UTIL_PVT SQL Statements
12.1.1
-
APPS.CSI_ASSET_PVT dependencies on CSI_I_ASSET_INTERFACE
12.1.1
-
APPS.CSI_ML_INTERFACE_TXN_PVT dependencies on CSI_I_ASSET_INTERFACE
12.2.2
-
PACKAGE BODY: APPS.CSI_ML_PROGRAM_PUB
12.2.2
-
APPS.CSI_ML_CREATE_PVT dependencies on CSI_I_ASSET_INTERFACE
12.1.1
-
APPS.CSI_ML_INTERFACE_TXN_PVT dependencies on CSI_I_ASSET_INTERFACE
12.1.1
-
APPS.CSI_ML_UTIL_PVT dependencies on CSI_I_ASSET_INTERFACE
12.1.1