Search Results ibe_lead_import_log_u1




Overview

IBE.IBE_LEAD_IMPORT_LOG is a transactional logging table in the Oracle E-Business Suite iStore/IBE (Internet Business Essentials) schema. It records the outcome of each batch execution of the lead import process, which loads externally sourced order and quote leads into the IBE lead tables. Each row represents a single import run, capturing temporal, operational, and statistical attributes that describe how many leads were processed, how many succeeded, and how many failed.

The table resides in the APPS_TS_TX_DATA tablespace and is classified as VALID in the ETRM 12.2.2 data model. Because it holds no foreign keys to dependent transactional tables other than SECURITY_GROUP_ID, it is modeled as a standalone entity. Under a heuristic Data Vault classification, this table is best treated as a satellite, since it stores descriptive, time-stamped measures about an import event rather than serving as a pure hub or link. Its primary key, IBE_LEAD_IMPORT_LOG_PK, is defined on LOG_ID.

Key Information Stored

The most operationally significant columns are those describing the import run and its results:

Common Use Cases and Queries

Administrators and support analysts query this table to verify the health of the lead import concurrent program. A frequent pattern retrieves the most recent run per lead type:

SELECT LOG_ID, LEAD_TYPE, STATUS, IMPORT_MODE, BEGIN_DATE, END_DATE, NUM_IMPORTED, NUM_SUCCESS, NUM_FAILED FROM IBE.IBE_LEAD_IMPORT_LOG ORDER BY BEGIN_DATE DESC;

Performance monitoring uses ELAPSED_TIME and NUM_IMPORTED together to compute throughput. Error investigation filters on STATUS = -1 or STATUS = 2 to isolate failed or partially failed runs, while trend reporting groups counts by day using BEGIN_DATE. Because SECURITY_GROUP_ID is the only documented foreign key, security-scoped queries join to FND_SECURITY_GROUPS when data segregation is required.

Related Objects

The documented dependencies for this table are limited. SECURITY_GROUP_ID references FND_SECURITY_GROUPS, making that the primary join partner for access-control reporting. The primary key IBE_LEAD_IMPORT_LOG_PK and the unique index IBE_LEAD_IMPORT_LOG_U1 both cover LOG_ID and should be considered when tuning queries that filter or sort by that column. In practice, the lead import result of each run is consumed by the IBE lead tables (such as IBE_LEADS and their staging equivalents) and surfaced through the iStore lead administration and lead import concurrent programs. Reporting integrations typically combine this log with IBE_LEAD_IMPORT_LOG-level statistics and the corresponding concurrent program request history in FND_CONCURRENT_REQUESTS to reconcile program output against import counts.