Search Results edr_process_erecords_t
Overview
EDR_PROCESS_ERECORDS_T is a table owned by the EDR schema within Oracle E-Business Suite, where EDR denotes the E-Records product. According to the ETRM metadata, its documented purpose is to serve as a temporary table holding run-time e-record object data during processing. In practice, rows are transient: they represent the working set of e-record instances being assembled, validated, or transitioned through an Electronic Records and Transaction Manager (ETRM) workflow, and are typically consumed and cleared by concurrent processing rather than retained as long-term history.
The object is marked VALID in the 12.1.1 and 12.2.2 releases and is documented with 26 physical columns. The heuristic Data Vault classification supplied with the metadata is satellite-leaning, which is consistent with a table that holds descriptive attributes for a specific business process instance rather than acting as a central hub or many-to-many link. Under that modeling suggestion, ERECORD_SEQUENCE_ID behaves as the surrogate key of the satellite, with the owning process referenced through ERES_PROCESS_ID.
Key Information Stored
The primary key is defined by the unique index EDR_PROCESS_ERECORDS_T_P on ERECORD_SEQUENCE_ID. No separate business-key unique index is documented; the metadata lists only a system LOB index (SYS_IL0000396569C00005$$) alongside the primary key, indicating that PAYLOAD is stored as a LOB. The most significant columns fall into four functional groups:
- Process linkage:
ERES_PROCESS_IDties each row to its parent ETRM process run;REQUESTERidentifies the requesting user and carries a foreign key toFND_USER. - Transaction identity:
TRANSACTION_NAME,TRANSACTION_KEY, andTRANSACTION_AUDIT_IDdescribe the business transaction the e-record represents. - Payload and keys:
PAYLOADholds the serialized e-record content;USER_KEY_LABELandUSER_KEY_VALUEcarry the user-visible record key;ERECORD_ID,PARENT_NAME,PARENT_KEY,PARENT_ERECORD_ID, andCHILD_ERECORD_IDSexpress the e-record hierarchy. - Workflow and status:
STATUS,DEFERRED_MODE,POST_OP_API,WF_ITEM_TYPE,WF_ITEM_KEY,WF_PROCESS, andSOURCE_APPLICATIONdrive or reflect processing state. - Audit columns:
CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_LOGIN, andLAST_UPDATE_DATEare the standard EBS WHO columns.
Common Use Cases and Queries
Because the table is transient, the dominant use cases are diagnostics and process monitoring. A support engineer investigating a stalled e-record run would join the table to FND_USER and filter by process identifier:
SELECT p.ERECORD_SEQUENCE_ID, p.TRANSACTION_NAME, p.STATUS, u.USER_NAME FROM EDR_PROCESS_ERECORDS_T p, FND_USER u WHERE p.REQUESTER = u.USER_ID AND p.ERES_PROCESS_ID = :process_id;- Correlating rows to an active workflow by querying
WF_ITEM_TYPE,WF_ITEM_KEY, andWF_PROCESSfor a givenTRANSACTION_KEY. - Inspecting e-record hierarchies through
PARENT_ERECORD_IDandCHILD_ERECORD_IDSto confirm parent-child assembly before posting. - Checking
STATUSandDEFERRED_MODEto distinguish records awaiting post-processing from those already dispatched toPOST_OP_API. - Age-based housekeeping, using
CREATION_DATEto detect orphaned rows left behind by failed concurrent requests.
Reporting against this table for historical trend analysis is not advisable, since row retention is bounded by run-time processing; the audit and archive tables populated at process completion should be used instead.
Related Objects
The documented foreign key relationships define the two anchors of this table. REQUESTER references FND_USER, enabling the user-name joins shown above. ERES_PROCESS_ID references EDR_ERESMANAGER_T, the process manager table that owns the run-time context in which these temporary e-record rows are created. Beyond those two documented references, the workflow columns imply dependencies on the standard Oracle Workflow tables WF_ITEMS and WF_PROCESS_ACTIVITIES, and the ETRM post-processing columns imply interaction with the e-record transaction and audit structures maintained elsewhere in the EDR schema. The primary key constraint EDR_PROCESS_ERECORDS_T_P is the object most likely to be referenced if the table is extended, though its temporary nature makes inbound foreign keys from other tables unlikely.
-
Table: EDR_PROCESS_ERECORDS_T
12.1.1
owner:EDR, object_type:TABLE, fnd_design_data:EDR.EDR_PROCESS_ERECORDS_T, object_name:EDR_PROCESS_ERECORDS_T, status:VALID, product: EDR - E-Records , description: Temporary table to hold the run time erecord object data , implementation_dba_data: EDR.EDR_PROCESS_ERECORDS_T ,
-
Table: EDR_PROCESS_ERECORDS_T
12.2.2
owner:EDR, object_type:TABLE, fnd_design_data:EDR.EDR_PROCESS_ERECORDS_T, object_name:EDR_PROCESS_ERECORDS_T, status:VALID, product: EDR - E-Records , description: Temporary table to hold the run time erecord object data , implementation_dba_data: EDR.EDR_PROCESS_ERECORDS_T ,
-
APPS.EDR_EINITIALS_PVT SQL Statements
12.2.2
-
APPS.EDR_EINITIALS_PVT SQL Statements
12.1.1
-
VIEW: EDR.EDR_PROCESS_ERECORDS_T#
12.2.2
owner:EDR, object_type:VIEW, object_name:EDR_PROCESS_ERECORDS_T#, status:VALID,
-
SYNONYM: APPS.EDR_PROCESS_ERECORDS_T
12.2.2
owner:APPS, object_type:SYNONYM, object_name:EDR_PROCESS_ERECORDS_T, status:VALID,
-
SYNONYM: APPS.EDR_PROCESS_ERECORDS_T
12.1.1
owner:APPS, object_type:SYNONYM, object_name:EDR_PROCESS_ERECORDS_T, status:VALID,
-
APPS.EDR_ERES_EVENT_PVT SQL Statements
12.1.1
-
APPS.EDR_ERES_EVENT_PVT SQL Statements
12.2.2
-
VIEW: EDR.EDR_PROCESS_ERECORDS_T#
12.2.2
-
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.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
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
-
TABLE: EDR.EDR_PROCESS_ERECORDS_T
12.2.2
owner:EDR, object_type:TABLE, fnd_design_data:EDR.EDR_PROCESS_ERECORDS_T, object_name:EDR_PROCESS_ERECORDS_T, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.EDR_EINITIALS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:EDR_EINITIALS_PVT, status:VALID,
-
TABLE: EDR.EDR_PROCESS_ERECORDS_T
12.1.1
owner:EDR, object_type:TABLE, fnd_design_data:EDR.EDR_PROCESS_ERECORDS_T, object_name:EDR_PROCESS_ERECORDS_T, status:VALID,
-
PACKAGE BODY: APPS.EDR_ERES_EVENT_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:EDR_ERES_EVENT_PVT, status:VALID,
-
PACKAGE BODY: APPS.EDR_EINITIALS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:EDR_EINITIALS_PVT, status:VALID,
-
TABLE: EDR.EDR_ERESPARAMETERS_T
12.2.2
owner:EDR, object_type:TABLE, fnd_design_data:EDR.EDR_ERESPARAMETERS_T, object_name:EDR_ERESPARAMETERS_T, status:VALID,
-
TABLE: EDR.EDR_ERESPARAMETERS_T
12.1.1
owner:EDR, object_type:TABLE, fnd_design_data:EDR.EDR_ERESPARAMETERS_T, object_name:EDR_ERESPARAMETERS_T, status:VALID,
-
PACKAGE BODY: APPS.EDR_ERES_EVENT_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:EDR_ERES_EVENT_PVT, status:VALID,
-
PACKAGE BODY: APPS.EDR_UTILITIES
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:EDR_UTILITIES, status:VALID,
-
PACKAGE BODY: APPS.EDR_EINITIALS_PVT
12.2.2
-
PACKAGE BODY: APPS.EDR_EINITIALS_PVT
12.1.1
-
PACKAGE BODY: APPS.EDR_UTILITIES
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:EDR_UTILITIES, status:VALID,
-
Table: FND_USER
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_USER, object_name:FND_USER, status:VALID, product: FND - Application Object Library , description: Application users , implementation_dba_data: APPLSYS.FND_USER ,
-
Table: FND_USER
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_USER, object_name:FND_USER, status:VALID, product: FND - Application Object Library , description: Application users , implementation_dba_data: APPLSYS.FND_USER ,
-
PACKAGE BODY: APPS.EDR_ERES_EVENT_PVT
12.2.2
-
PACKAGE BODY: APPS.EDR_ERES_EVENT_PVT
12.1.1
-
eTRM - EDR Tables and Views
12.2.2
description: eRecords Reports Temporary Table ,
-
eTRM - EDR Tables and Views
12.1.1
description: eRecords Reports Temporary Table ,
-
APPS.EDR_UTILITIES SQL Statements
12.1.1
-
APPS.EDR_UTILITIES SQL Statements
12.2.2
-
APPS.EDR_ERES_EVENT_PVT dependencies on EDR_PROCESS_ERECORDS_T
12.2.2
-
APPS.EDR_UTILITIES dependencies on EDR_PROCESS_ERECORDS_T
12.2.2
-
APPS.EDR_UTILITIES dependencies on EDR_PROCESS_ERECORDS_T
12.1.1
-
PACKAGE: APPS.EDR_ERES_EVENT_PVT
12.1.1
-
APPS.EDR_ERES_EVENT_PVT dependencies on EDR_PROCESS_ERECORDS_T
12.1.1
-
APPS.EDR_EINITIALS_PVT dependencies on EDR_PROCESS_ERECORDS_T
12.2.2
-
APPS.EDR_EINITIALS_PVT dependencies on EDR_PROCESS_ERECORDS_T
12.1.1
-
PACKAGE: APPS.EDR_ERES_EVENT_PVT
12.2.2
-
APPS.EDR_ERES_EVENT_PVT dependencies on EDR_ERESPARAMETERS_T
12.1.1
-
eTRM - EDR Tables and Views
12.1.1
description: eRecords Reports Temporary Table ,