DISBURSEMENTPROCESSSIGNATURE
Signatures assigned to a disbursement process
Primary Key
Primary Key |
Field Type |
ID |
uniqueidentifier |
Fields
Field |
Field Type |
Null |
Notes |
Description |
TYPECODE |
tinyint |
|
Default = 0 |
Signature 1 or Signature 2? |
TYPE |
nvarchar(11) (Computed) |
yes |
CASE [TYPECODE] WHEN 0 THEN N'Signature 1' WHEN 1 THEN N'Signature 2' END |
Provides a translation for the 'TYPECODE' field. |
FROMAMOUNT |
money |
|
Default = 0 |
Amount the range starts from |
DATEADDED |
datetime |
|
Default = getdate() |
Indicates the date this record was added. |
DATECHANGED |
datetime |
|
Default = getdate() |
Indicates the date this record was last changed. |
TS |
timestamp |
|
|
Timestamp. |
TSLONG |
bigint (Computed) |
yes |
CONVERT(bigint, TS) |
Numeric representation of the timestamp. |
Foreign Keys
Indexes
Index Name |
Fields |
Unique |
Primary |
Clustered |
IX_DISBURSEMENTPROCESSSIGNATURE_DATEADDED |
DATEADDED |
|
|
yes |
IX_DISBURSEMENTPROCESSSIGNATURE_DATECHANGED |
DATECHANGED |
|
|
|
IX_DISBURSEMENTPROCESSSIGNATURE_DISBURSEMENTPROCESSID |
DISBURSEMENTPROCESSID |
|
|
|
PK_DISBURSEMENTPROCESSSIGNATURE |
ID |
yes |
yes |
|
UC_DISBURSEMENTPROCESSSIGNATURE_UNIQUEAMOUNT |
DISBURSEMENTPROCESSID, FROMAMOUNT, TYPECODE |
yes |
|
|
Triggers