Search Results iex_repos_objects
Overview
IEX_REPOS_OBJECTS is a Collections module table in the Oracle E-Business Suite (EBS) IEX schema. It stores information about assets that are undergoing repossession, providing the granular detail behind each repossession activity. Where the parent table IEX_REPOSSESSIONS captures the repossession event, IEX_REPOS_OBJECTS records the individual objects (assets) linked to that event. The table is marked VALID and is present in both EBS 12.1.1 and 12.2.2, with the documented 12.2.2 physical schema comprising 35 columns owned by IEX.
From a Data Vault modeling perspective, the mined FK structure classifies this object as standalone — a heuristic suggestion that it behaves more like a satellite or an independent detail entity rather than a pure junction/link hub. This classification reflects that the table carries descriptive asset attributes (ASSET_ID, RNA_ID, ART_ID) tied to a single parent repossession record rather than defining many-to-many relationships among independent hubs.
Key Information Stored
The surrogate primary key is REPOS_OBJECT_ID (constraint IEX_REP_PK), which uniquely identifies each repossession object row. The principal parent link is REPOSSESSION_ID, a foreign key to IEX_REPOSSESSIONS, tying each object to its repossession event. Additional business-identifying attributes include:
- REPOS_OBJECT_ID — Surrogate primary key for the row.
- REPOSSESSION_ID — FK identifying the parent repossession record.
- ASSET_ID — The asset being repossessed.
- RNA_ID / RNA_SITE_ID — Related receivable/agreement and site references.
- ART_ID — Associated ART (account receivable transaction) identifier.
- ACTIVE_YN — Active status flag for the object record.
- ORG_ID — Operating unit, enabling multi-org reporting.
- SECURITY_GROUP_ID — FK to FND_SECURITY_GROUPS for access control.
- REQUEST_ID / PROGRAM_ID / PROGRAM_APPLICATION_ID — Concurrent program context.
- OBJECT_VERSION_NUMBER — Optimistic locking column used by the framework.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — Standard WHO audit columns.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE15 — Flexfield descriptor columns for descriptive extensions.
No separate unique business index is documented in the metadata beyond the surrogate primary key; business-key candidacy rests on the combination of REPOSSESSION_ID and ASSET_ID.
Common Use Cases and Queries
Typical usage centers on reporting and reconciliation of repossessed collateral. Common scenarios include listing all assets for a given repossession, identifying active repossessions by operating unit, and joining to asset master tables to enrich descriptions.
- List objects for a repossession:
SELECT * FROM iex_repos_objects WHERE repossession_id = :p_id AND active_yn = 'Y'; - Multi-org filter:
SELECT repos_object_id, asset_id FROM iex_repos_objects WHERE org_id = :org_id; - Detail query joining parent:
SELECT r.repossession_id, o.asset_id FROM iex_repossessions r, iex_repos_objects o WHERE r.repossession_id = o.repossession_id; - Audit/change tracking via OBJECT_VERSION_NUMBER and LAST_UPDATE_DATE.
Because attribute columns form a DFF, reporting on ATTRIBUTE1–15 yields custom classifications configured by the implementation.
Related Objects
The most significant related objects derive from the documented FK relationships and IEX Collections context:
- IEX_REPOSSESSIONS — Parent table; join on REPOSSESSION_ID = REPOSSESSION_ID. This is the primary dependency.
- FND_SECURITY_GROUPS — Join on SECURITY_GROUP_ID; governs row visibility.
- FA_ASSETS (or the corresponding asset master) — Linked via ASSET_ID for asset detail.
- IEX_RNA / receivable-related tables — Linked via RNA_ID and RNA_SITE_ID.
- ART (AR transactions) — Linked via ART_ID for transaction context.
- FND_CONCURRENT_REQUESTS — Join on REQUEST_ID for concurrent process traceability.
Together these relationships position IEX_REPOS_OBJECTS as the asset-level detail layer within the IEX Collections repossession subsystem.
-
Table: IEX_REPOS_OBJECTS
12.2.2
owner:IEX, object_type:TABLE, fnd_design_data:IEX.IEX_REPOS_OBJECTS, object_name:IEX_REPOS_OBJECTS, status:VALID, product: IEX - Collections , description: Stores information of assets that are undergoing repossession. , implementation_dba_data: IEX.IEX_REPOS_OBJECTS ,
-
SYNONYM: APPS.IEX_REPOS_OBJECTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IEX_REPOS_OBJECTS, status:VALID,
-
SYNONYM: APPS.IEX_REPOS_OBJECTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IEX_REPOS_OBJECTS, status:VALID,
-
VIEW: APPS.IEX_REPOS_OBJECTS_V
12.1.1
-
VIEW: APPS.IEX_REPOS_OBJECTS_V
12.2.2
-
VIEW: IEX.IEX_REPOS_OBJECTS#
12.2.2
owner:IEX, object_type:VIEW, object_name:IEX_REPOS_OBJECTS#, status:VALID,
-
VIEW: APPS.IEX_REPOS_AVAIL_ASSETS_UV2
12.1.1
-
VIEW: APPS.IEX_REPOS_OBJECTS_UV
12.1.1
-
VIEW: APPS.IEX_REPOS_AVAIL_ASSETS_UV2
12.2.2
-
VIEW: IEX.IEX_REPOS_OBJECTS#
12.2.2
-
VIEW: APPS.IEX_REPOS_OBJECTS_UV
12.2.2
-
VIEW: APPS.IEX_REPOS_AVAIL_ASSETS_UV
12.1.1
-
VIEW: APPS.IEX_REPOS_AVAIL_ASSETS_UV
12.2.2
-
APPS.IEX_REP_PVT SQL Statements
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.IEX_REP_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IEX_REP_PVT, status:VALID,
-
TABLE: IEX.IEX_REPOS_OBJECTS
12.1.1
owner:IEX, object_type:TABLE, object_name:IEX_REPOS_OBJECTS, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE: APPS.IEX_REP_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IEX_REP_PVT, status:VALID,
-
PACKAGE: APPS.IEX_REP_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:IEX_REP_PVT, status:VALID,
-
APPS.IEX_REP_PVT SQL Statements
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.IEX_REP_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IEX_REP_PVT, status:VALID,
-
TABLE: IEX.IEX_REPOS_OBJECTS
12.2.2
owner:IEX, object_type:TABLE, fnd_design_data:IEX.IEX_REPOS_OBJECTS, object_name:IEX_REPOS_OBJECTS, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.IEX_REPOS_OBJECTS_UV
12.2.2
owner:APPS, object_type:VIEW, object_name:IEX_REPOS_OBJECTS_UV, status:VALID,
-
VIEW: APPS.IEX_REPOS_OBJECTS_UV
12.1.1
owner:APPS, object_type:VIEW, object_name:IEX_REPOS_OBJECTS_UV, status:VALID,
-
VIEW: APPS.IEX_REPOS_AVAIL_ASSETS_UV2
12.2.2
owner:APPS, object_type:VIEW, object_name:IEX_REPOS_AVAIL_ASSETS_UV2, status:VALID,
-
VIEW: APPS.IEX_REPOS_AVAIL_ASSETS_UV
12.2.2
owner:APPS, object_type:VIEW, object_name:IEX_REPOS_AVAIL_ASSETS_UV, status:VALID,
-
VIEW: APPS.IEX_REPOS_AVAIL_ASSETS_UV2
12.1.1
owner:APPS, object_type:VIEW, object_name:IEX_REPOS_AVAIL_ASSETS_UV2, status:VALID,
-
VIEW: APPS.IEX_REPOS_AVAIL_ASSETS_UV
12.1.1
owner:APPS, object_type:VIEW, object_name:IEX_REPOS_AVAIL_ASSETS_UV, status:VALID,
-
VIEW: APPS.IEX_REPOS_OBJECTS_V
12.1.1
owner:APPS, object_type:VIEW, object_name:IEX_REPOS_OBJECTS_V, status:VALID,
-
VIEW: APPS.IEX_REPOS_OBJECTS_V
12.2.2
owner:APPS, object_type:VIEW, object_name:IEX_REPOS_OBJECTS_V, status:VALID,
-
PACKAGE BODY: APPS.IEX_REPOSSESS_PVT
12.2.2
-
PACKAGE BODY: APPS.IEX_REPOSSESS_PVT
12.1.1
-
APPS.IEX_REP_PVT dependencies on IEX_REPOS_OBJECTS
12.1.1
-
APPS.IEX_REP_PVT dependencies on IEX_REPOS_OBJECTS
12.2.2
-
APPS.IEX_REP_PVT dependencies on IEX_REPOS_OBJECTS
12.1.1
-
APPS.IEX_REP_PVT dependencies on IEX_REPOS_OBJECTS
12.2.2
-
PACKAGE: APPS.IEX_REP_PVT
12.2.2
-
PACKAGE: APPS.IEX_REP_PVT
12.1.1
-
PACKAGE BODY: APPS.IEX_REP_PVT
12.1.1
-
PACKAGE BODY: APPS.IEX_REP_PVT
12.2.2
-
eTRM - IEX Tables and Views
12.2.2
description: xdo requested history for Collections ,
-
APPS.IEX_REPOSSESS_PVT dependencies on IEX_REPOS_OBJECTS_PUB
12.1.1