EDR_RECORD_SIGNERS

This table stores the signer information for each ERES transaction.

Details

  • Schema: FUSION

  • Object owner: EDR

  • Object type: TABLE

  • Tablespace: Default

Primary Key

Name Columns

EDR_RECORD_SIGNERS_PK

RECORD_SIGNER_ID

Columns

Name Datatype Length Precision Not-null Comments
RECORD_SIGNER_ID NUMBER 18 Yes This is the primary key and its value is an application generated unique id. It is used to uniquely identify each signer 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.
RECORD_ID NUMBER 18 Yes Represents foreign key to EDR_RECORDS table.
ROOT_TASK_ID VARCHAR2 64 Yes Unique identifier of the root human task associated with the signature process for an ERES transaction.
TASK_ID VARCHAR2 64 Yes Unique identifier of sub tasks associated with the signature process for an ERES transaction.
SIGNATURE_TYPE VARCHAR2 30 Represents the signer role and valid values are Creator, Approver and Reviewer.
SIGNER_NAME VARCHAR2 400 Indicates the username of the signer.
SIGNER_OUTCOME VARCHAR2 100 Represents the sub task outcome. e.g.: REJECT, APPROVE.
SIGNED_DATE TIMESTAMP Represents the date on which the record is signed.
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_RECORD_SIGNERS edr_records RECORD_ID

Indexes

Index Uniqueness Tablespace Columns
EDR_RECORD_SIGNERS_N01 Non Unique Default RECORD_ID
EDR_RECORD_SIGNERS_U01 Unique Default RECORD_SIGNER_ID
EDR_RECORD_SIGNERS_U02 Unique Default ROOT_TASK_ID, TASK_ID, SIGNER_NAME