GLPOSTPROCESSPOSTMETHODTRANSLATION
Summarizes post methods for display on the generic GL post page.
Primary Key
Primary Key |
Field Type |
ID |
uniqueidentifier |
Fields
Field |
Field Type |
Null |
Notes |
Description |
DESCRIPTION |
nvarchar(100) |
|
Default = '' |
Caption on the add/edit form |
TRANSACTIONTYPECODE |
tinyint |
|
Default = 0 |
Transaction type - Debit or Credit |
TRANSACTIONTYPE |
nvarchar(6) (Computed) |
yes |
CASE [TRANSACTIONTYPECODE] WHEN 0 THEN N'Debit' WHEN 1 THEN N'Credit' END |
Provides a translation for the 'TRANSACTIONTYPECODE' field. |
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
Foreign Key |
Field Type |
Null |
Notes |
Description |
FINANCIALSYSTEMID |
uniqueidentifier |
yes |
FINANCIALSYSTEM.ID
|
FK to the Financial system |
FINANCIALSYSTEMTRANSACTIONTYPEID |
uniqueidentifier |
|
FINANCIALSYSTEMTRANSACTIONTYPE.ID
|
FK that indicates what transaction type the record is for |
ADDEDBYID |
uniqueidentifier |
|
CHANGEAGENT.ID
|
FK to CHANGEAGENT. |
CHANGEDBYID |
uniqueidentifier |
|
CHANGEAGENT.ID
|
FK to CHANGEAGENT. |
Indexes
Index Name |
Fields |
Unique |
Primary |
Clustered |
IX_GLPOSTPROCESSPOSTMETHODTRANSLATION_DATEADDED |
DATEADDED |
|
|
yes |
IX_GLPOSTPROCESSPOSTMETHODTRANSLATION_DATECHANGED |
DATECHANGED |
|
|
|
IX_GLPOSTPROCESSPOSTMETHODTRANSLATION_FINANCIALSYSTEMID |
FINANCIALSYSTEMID |
|
|
|
PK_GLPOSTPROCESSPOSTMETHODTRANSLATION |
ID |
yes |
yes |
|
Triggers