Search Results iex_litigations
Overview
IEX_LITIGATIONS is a transaction-detail table within the Oracle EBS Advanced Collections (IEX) module. It stores litigation-related records raised against delinquent customer accounts, capturing the legal actions, court events, judgements, and hold requests associated with a collections dispute. Rows in this table are owned by the IEX schema and are keyed by the surrogate primary key ILT_PK, which is physically implemented as the LITIGATION_ID column through the unique index IEX_LITIGATIONS_U1. In Oracle EBS 12.1.1 and 12.2.2 the table is registered as VALID and forms part of the collections delinquency workflow that collectors and credit analysts use to escalate non-paying customers into formal legal proceedings.
The ETRM metadata classifies IEX_LITIGATIONS as a standalone object under the heuristic Data Vault model. Because it references multiple parent entities (delinquencies, customer accounts, and security groups) without being joined through an intermediate link table, the most natural Data Vault interpretation is that it behaves as a satellite attached to the delinquency hub, with additional dimensional references to customer and security-group hubs. It is not a pure hub or link in its own right.
Key Information Stored
The table contains 47 documented columns covering identification, legal status, workflow flags, and standard WHO/audit attributes. The columns of greatest functional importance are:
- LITIGATION_ID — surrogate primary key (ILT_PK / IEX_LITIGATIONS_U1), a system-generated identifier for each litigation record.
- DELINQUENCY_ID — foreign key to IEX_DELINQUENCIES_ALL; ties the litigation to the underlying delinquency case.
- CUST_ACCOUNT_ID — foreign key to HZ_CUST_ACCOUNTS; identifies the customer account being litigated.
- PARTY_ID and CUSTOMER_SITE_USE_ID — party and site-level references for the customer.
- JUDGEMENT_DATE, JUDGEMENT_CODE, and DISPOSITION_CODE / COURT_CASE_DISPOSITION_CODE — chronological and outcome attributes of the legal action.
- COURT_DATE — scheduled or actual court hearing date.
- REASON_CODE and UNPAID_REASON_CODE — categorize why the case entered litigation.
- DIRECT_SUIT_YN — indicates whether the matter proceeded directly to suit.
- CREDIT_HOLD_REQUEST_FLAG, CREDIT_HOLD_APPROVED_FLAG, SERVICE_HOLD_REQUEST_FLAG, SERVICE_HOLD_APPROVED_FLAG, SUGGESTION_APPROVED_FLAG — workflow flags for placing the customer on credit or service hold.
- ORG_ID — multi-org operating unit discriminator.
- CONTRACT_ID / CONTRACT_NUMBER — optional contract reference.
- SECURITY_GROUP_ID — foreign key to FND_SECURITY_GROUPS, enforcing row-level security.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard audit columns.
Common Use Cases and Queries
Collections analysts query IEX_LITIGATIONS to monitor litigation pipelines, ageing of court cases, and hold decisions. A typical join returns the customer and delinquency context for each litigation:
- Open litigations by customer: join IEX_LITIGATIONS L to HZ_CUST_ACCOUNTS HCA on L.CUST_ACCOUNT_ID = HCA.CUST_ACCOUNT_ID, filtered by ORG_ID and disposition code.
- Litigations raised against delinquencies: join to IEX_DELINQUENCIES_ALL on DELINQUENCY_ID to obtain the collection status that triggered the legal action.
- Court calendar report: filter on COURT_DATE between system dates to produce upcoming hearings, grouped by DISPOSITION_CODE.
- Hold approval audit: select rows where CREDIT_HOLD_REQUEST_FLAG = 'Y' and CREDIT_HOLD_APPROVED_FLAG = 'N' to identify pending approvals.
- Multi-org reporting: always constrain on ORG_ID and SECURITY_GROUP_ID to respect operating-unit and security-group visibility.
Related Objects
The most significant objects related to IEX_LITIGATIONS through documented keys are:
- IEX_DELINQUENCIES_ALL — parent delinquency table joined on DELINQUENCY_ID.
- HZ_CUST_ACCOUNTS — customer master joined on CUST_ACCOUNT_ID.
- FND_SECURITY_GROUPS — security model joined on SECURITY_GROUP_ID.
- HZ_CUST_ACCT_SITES_ALL / HZ_CUST_SITE_USES_ALL — resolved via CUSTOMER_SITE_USE_ID for site-level context.
- IEX_LITIGATIONS_U1 — unique index enforcing the business key on LITIGATION_ID.
- OKC_CONTRACTS_ALL — contract reference resolved via CONTRACT_ID / CONTRACT_NUMBER.
In practice, these objects are consumed together through the Collections workbench and related concurrent programs rather than directly via public APIs, so report developers should treat IEX_LITIGATIONS as an internal IEX detail table and respect its security-group and org constraints in every query.
-
Table: IEX_LITIGATIONS
12.2.2
owner:IEX, object_type:TABLE, fnd_design_data:IEX.IEX_LITIGATIONS, object_name:IEX_LITIGATIONS, status:VALID, product: IEX - Collections , description: Details for Litigation , implementation_dba_data: IEX.IEX_LITIGATIONS ,
-
VIEW: APPS.IEX_LITIGATIONS_BALI_V
12.2.2
-
VIEW: APPS.IEX_LITIGATIONS_BALI_V
12.1.1
-
SYNONYM: APPS.IEX_LITIGATIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IEX_LITIGATIONS, status:VALID,
-
SYNONYM: APPS.IEX_LITIGATIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IEX_LITIGATIONS, status:VALID,
-
APPS.IEX_WF_DEL_REQ_CREDIT_PUB SQL Statements
12.2.2
-
APPS.IEX_WF_DEL_REQ_SERVICE_PUB SQL Statements
12.2.2
-
VIEW: IEX.IEX_LITIGATIONS#
12.2.2
owner:IEX, object_type:VIEW, object_name:IEX_LITIGATIONS#, status:VALID,
-
APPS.IEX_WF_DEL_STATUS_PUB SQL Statements
12.1.1
-
APPS.IEX_WF_DEL_STATUS_PUB SQL Statements
12.2.2
-
VIEW: IEX.IEX_LITIGATIONS#
12.2.2
-
APPS.IEX_WF_DEL_REQ_SERVICE_PUB SQL Statements
12.1.1
-
APPS.IEX_WF_DEL_REQ_CREDIT_PUB SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IEX_WF_DEL_STATUS_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IEX_WF_DEL_STATUS_PUB, status:VALID,
-
PACKAGE BODY: APPS.IEX_WF_DEL_STATUS_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IEX_WF_DEL_STATUS_PUB, status:VALID,
-
PACKAGE BODY: APPS.IEX_LITIGATIONS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IEX_LITIGATIONS_PKG, status:VALID,
-
PACKAGE BODY: APPS.IEX_WF_DEL_REQ_SERVICE_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IEX_WF_DEL_REQ_SERVICE_PUB, status:VALID,
-
PACKAGE BODY: APPS.IEX_WF_DEL_REQ_CREDIT_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IEX_WF_DEL_REQ_CREDIT_PUB, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.IEX_WF_DEL_REQ_CREDIT_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IEX_WF_DEL_REQ_CREDIT_PUB, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.IEX_LITIGATIONS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IEX_LITIGATIONS_PKG, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.IEX_WF_DEL_REQ_SERVICE_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IEX_WF_DEL_REQ_SERVICE_PUB, status:VALID,
-
PACKAGE BODY: APPS.IEX_CASE_UTL_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IEX_CASE_UTL_PUB, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.IEX_MERGE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IEX_MERGE_PVT, status:VALID,
-
APPS.IEX_LITIGATIONS_PKG SQL Statements
12.1.1
-
VIEW: APPS.IEX_LITIGATIONS_BALI_V
12.1.1
owner:APPS, object_type:VIEW, object_name:IEX_LITIGATIONS_BALI_V, status:VALID,
-
VIEW: APPS.IEX_LITIGATIONS_BALI_V
12.2.2
owner:APPS, object_type:VIEW, object_name:IEX_LITIGATIONS_BALI_V, status:VALID,
-
APPS.IEX_LITIGATIONS_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.IEX_MERGE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IEX_MERGE_PVT, status:VALID,
-
PACKAGE BODY: APPS.IEX_CASE_UTL_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IEX_CASE_UTL_PUB, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.IEX_DELINQUENCIES_STAGE_V
12.2.2
-
VIEW: APPS.IEX_LATER_STAGE_DELINQUENCY_V
12.2.2
owner:APPS, object_type:VIEW, object_name:IEX_LATER_STAGE_DELINQUENCY_V, status:VALID,
-
VIEW: APPS.IEX_DELINQUENCIES_STAGE_V
12.1.1
owner:APPS, object_type:VIEW, object_name:IEX_DELINQUENCIES_STAGE_V, status:VALID,
-
VIEW: APPS.IEX_DELINQUENCIES_STAGE_V
12.2.2
owner:APPS, object_type:VIEW, object_name:IEX_DELINQUENCIES_STAGE_V, status:VALID,
-
VIEW: APPS.IEX_LATER_STAGE_DELINQUENCY_V
12.1.1
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.IEX_DELINQUENCIES_STAGE_V
12.1.1
-
APPS.IEX_CUST_OVERVIEW_PVT SQL Statements
12.2.2
-
VIEW: APPS.IEX_LATER_STAGE_DELINQUENCY_V
12.1.1
owner:APPS, object_type:VIEW, object_name:IEX_LATER_STAGE_DELINQUENCY_V, status:VALID,
-
VIEW: APPS.IEX_LATER_STAGE_DELINQUENCY_V
12.2.2
-
TABLE: IEX.IEX_LITIGATIONS
12.1.1
owner:IEX, object_type:TABLE, object_name:IEX_LITIGATIONS, status:VALID,
-
TABLE: IEX.IEX_LITIGATIONS
12.2.2
owner:IEX, object_type:TABLE, fnd_design_data:IEX.IEX_LITIGATIONS, object_name:IEX_LITIGATIONS, status:VALID,
-
APPS.IEX_CUST_OVERVIEW_PVT SQL Statements
12.1.1