Search Results ibe_lead_import_log
Overview
The IBE_LEAD_IMPORT_LOG table is an operational audit and diagnostics table within the Oracle E-Business Suite iStore (IBE) module. It records the results of each attempt to import leads into the iStore application, capturing timing, mode of import, and the disposition of individual records processed during a run. In Oracle EBS 12.1.1 and 12.2.2, iStore supports the capture of marketing and sales leads through the storefront, and the batch import of leads from external sources. Each such import execution results in a log row in this table, making it the primary reference point for administrators investigating why leads did or did not load successfully.
The ETRM metadata classifies this object as standalone under the heuristic Data Vault classification, meaning it has no mandatory parent relationship other than a reference to the security group. In Data Vault modeling terms, IBE_LEAD_IMPORT_LOG behaves most naturally as a satellite attached to an import execution hub, since it carries descriptive, time-stamped attributes about a business event rather than representing a business entity in its own right. The single outbound foreign key to FND_SECURITY_GROUPS confirms the multi-org/security-group partitioning that is standard across iStore tables.
Key Information Stored
The table contains 17 documented columns. The most significant are:
- LOG_ID — the surrogate primary key, enforced by
IBE_LEAD_IMPORT_LOG_PKand also present as the unique indexIBE_LEAD_IMPORT_LOG_U1. This is the single business-key candidate documented for the table. - LEAD_TYPE — identifies the category of lead being imported, allowing import runs to be distinguished by lead classification.
- STATUS — the outcome state of the import execution.
- IMPORT_MODE — indicates the mode under which the import was executed, distinguishing interactive from scheduled or batch processing.
- ELAPSED_TIME — the duration of the import run, useful for performance monitoring.
- NUM_IMPORTED — the total number of lead records read by the import process.
- NUM_SUCCESS — the number of leads that imported successfully.
- NUM_FAILED — the number that failed validation or insert.
- BEGIN_DATE and END_DATE — the execution window of the import run.
- SECURITY_GROUP_ID — the foreign key to
FND_SECURITY_GROUPS, scoping the log entry to a security group. - OBJECT_VERSION_NUMBER — the standard EBS optimistic locking column, together with the
CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE, andLAST_UPDATE_LOGINWHO columns.
Common Use Cases and Queries
The principal use case is troubleshooting failed or partial lead imports. An administrator can list the most recent import runs and their success/failure counts:
SELECT log_id, lead_type, status, import_mode, num_imported, num_success, num_failed, begin_date, end_date FROM ibe.ibe_lead_import_log ORDER BY creation_date DESC;- Filtering by security group:
... WHERE security_group_id = :p_security_group_id ORDER BY begin_date DESC; - Performance review:
SELECT log_id, elapsed_time, num_imported FROM ibe.ibe_lead_import_log WHERE begin_date BETWEEN :from_date AND :to_date;
Reporting use cases include monitoring daily lead-import throughput, identifying recurring failure patterns by LEAD_TYPE or IMPORT_MODE, and providing audit evidence of when a given batch was executed. Because the table is append-style, it also supports trend analysis of import efficiency over time.
Related Objects
The most significant related objects are:
FND_SECURITY_GROUPS— joined onIBE_LEAD_IMPORT_LOG.SECURITY_GROUP_IDto resolve the security group owning each log entry.- The iStore lead tables themselves (for example the lead header and lead line tables in the IBE schema), which hold the actual imported lead records that the counts in
NUM_IMPORTED,NUM_SUCCESS, andNUM_FAILEDsummarize. IBE_LEAD_IMPORT_LOG_PKandIBE_LEAD_IMPORT_LOG_U1— the primary key constraint and unique index onLOG_ID, which enforce the uniqueness of each run identifier.- Concurrent program and request tables such as
FND_CONCURRENT_REQUESTS, commonly correlated with import runs when lead import is scheduled through the concurrent manager. - Standard EBS WHO/audit columns and the
FND_USERtable, joined throughCREATED_BYto attribute each import to a user.
-
Table: IBE_LEAD_IMPORT_LOG
12.2.2
owner:IBE, object_type:TABLE, fnd_design_data:IBE.IBE_LEAD_IMPORT_LOG, object_name:IBE_LEAD_IMPORT_LOG, status:VALID, product: IBE - iStore , description: This table contains the log information for Leads that are imported. , implementation_dba_data: IBE.IBE_LEAD_IMPORT_LOG ,
-
Table: IBE_LEAD_IMPORT_LOG
12.1.1
owner:IBE, object_type:TABLE, fnd_design_data:IBE.IBE_LEAD_IMPORT_LOG, object_name:IBE_LEAD_IMPORT_LOG, status:VALID, product: IBE - iStore , description: This table contains the log information for Leads that are imported. , implementation_dba_data: IBE.IBE_LEAD_IMPORT_LOG ,
-
SYNONYM: APPS.IBE_LEAD_IMPORT_LOG
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IBE_LEAD_IMPORT_LOG, status:VALID,
-
SYNONYM: APPS.IBE_LEAD_IMPORT_LOG
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IBE_LEAD_IMPORT_LOG, status:VALID,
-
VIEW: IBE.IBE_LEAD_IMPORT_LOG#
12.2.2
owner:IBE, object_type:VIEW, object_name:IBE_LEAD_IMPORT_LOG#, status:VALID,
-
VIEW: IBE.IBE_LEAD_IMPORT_LOG#
12.2.2
-
APPS.IBE_LEAD_IMPORT_PVT SQL Statements
12.1.1
-
APPS.IBE_LEAD_IMPORT_PVT SQL Statements
12.2.2
-
TABLE: IBE.IBE_LEAD_IMPORT_LOG
12.1.1
owner:IBE, object_type:TABLE, fnd_design_data:IBE.IBE_LEAD_IMPORT_LOG, object_name:IBE_LEAD_IMPORT_LOG, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
TABLE: IBE.IBE_LEAD_IMPORT_LOG
12.2.2
owner:IBE, object_type:TABLE, fnd_design_data:IBE.IBE_LEAD_IMPORT_LOG, object_name:IBE_LEAD_IMPORT_LOG, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.IBE_LEAD_IMPORT_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IBE_LEAD_IMPORT_PVT, status:VALID,
-
PACKAGE BODY: APPS.IBE_LEAD_IMPORT_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IBE_LEAD_IMPORT_PVT, status:VALID,
-
PACKAGE BODY: APPS.IBE_LEAD_IMPORT_PVT
12.2.2
-
PACKAGE BODY: APPS.IBE_LEAD_IMPORT_PVT
12.1.1
-
APPS.IBE_LEAD_IMPORT_PVT dependencies on IBE_LEAD_IMPORT_LOG
12.2.2
-
APPS.IBE_LEAD_IMPORT_PVT dependencies on IBE_LEAD_IMPORT_LOG
12.1.1
-
eTRM - IBE Tables and Views
12.2.2
description: This table stores information about supported Work Flow notifications in iStore. ,
-
eTRM - IBE Tables and Views
12.1.1
description: This table stores information about supported Work Flow notifications in iStore. ,
-
APPS.IBE_LEAD_IMPORT_PVT dependencies on IBE_LEAD_IMPORT_DETAILS
12.2.2
-
APPS.IBE_LEAD_IMPORT_PVT dependencies on IBE_LEAD_IMPORT_DETAILS
12.1.1
-
eTRM - IBE Tables and Views
12.2.2
description: This table stores information about supported Work Flow notifications in iStore. ,
-
eTRM - IBE Tables and Views
12.1.1
description: This table stores information about supported Work Flow notifications in iStore. ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1