EDR_RECORDS
This table stores e-record information for each ERES transaction and also caters to e-records only scenarios.
Details
-
Schema: FUSION
-
Object owner: EDR
-
Object type: TABLE
-
Tablespace: Default
Primary Key
Name | Columns |
---|---|
EDR_RECORDS_PK |
RECORD_ID |
Columns
Name | Datatype | Length | Precision | Not-null | Comments |
---|---|---|---|---|---|
RECORD_ID | NUMBER | 18 | Yes | This is the primary key and its value is an application generated unique id. It is used to uniquely identify the e-record for an ERES transaction. | |
OBJECT_VERSION_NUMBER | NUMBER | 9 | Yes | Used to implement optimistic locking. This number is incremented every time that the row is updated. The number is compared at the start and end of a transaction to detect whether another session has updated the row since it was queried. | |
ORGANIZATION_ID | NUMBER | 18 | Yes | Unique identifier of Organization and represents the org for which ERES transaction is done. | |
TRANSACTION_TYPE_CODE | VARCHAR2 | 30 | Represents an ERES transaction type for which signature is being captured. | ||
ROOT_TASK_ID | VARCHAR2 | 64 | Unique identifier of the root human task associated with the signature process for an ERES transaction. | ||
IDENTIFICATION_KEY | VARCHAR2 | 100 | Yes | User defined id for the task and the value should be unique across task Namespace and Name. | |
TASK_OUTCOME | VARCHAR2 | 100 | Represents the final task outcome. e.g.: REJECT, APPROVE . | ||
FND_ATTACHMENT_ID | NUMBER | 18 | Unique Identifier for e-record stored in FND Attachments. | ||
ERECORD_XML | XMLTYPE | Represents XML payload used for generating e-record. | |||
REQUEST_ID | NUMBER | 18 | Enterprise Service Scheduler: indicates the request ID of the job that created or last updated the row. | ||
JOB_DEFINITION_NAME | VARCHAR2 | 100 | Enterprise Service Scheduler: indicates the name of the job that created or last updated the row. | ||
JOB_DEFINITION_PACKAGE | VARCHAR2 | 900 | Enterprise Service Scheduler: indicates the package name of the job that created or last updated the row. | ||
CREATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who created the row. | |
CREATION_DATE | TIMESTAMP | Yes | Who column: indicates the date and time of the creation of the row. | ||
LAST_UPDATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who last updated the row. | |
LAST_UPDATE_DATE | TIMESTAMP | Yes | Who column: indicates the date and time of the last update of the row. | ||
LAST_UPDATE_LOGIN | VARCHAR2 | 32 | Who column: indicates the session login associated to the user who last updated the row. |
Foreign Keys
Table | Foreign Table | Foreign Key Column |
---|---|---|
EDR_RECORDS | edr_transaction_types_b | TRANSACTION_TYPE_CODE |
edr_record_signers | edr_records | RECORD_ID |
Indexes
Index | Uniqueness | Tablespace | Columns |
---|---|---|---|
EDR_RECORDS_CTX_IDX_N03 | Non Unique | Default | ERECORD_XML |
EDR_RECORDS_N01 | Non Unique | Default | TRANSACTION_TYPE_CODE |
EDR_RECORDS_N02 | Non Unique | Default | TASK_OUTCOME |
EDR_RECORDS_N04 | Non Unique | Default | IDENTIFICATION_KEY, TRANSACTION_TYPE_CODE |
EDR_RECORDS_U01 | Unique | Default | RECORD_ID |