Primary Key Field Type
 ID uniqueidentifier

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) 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) CONVERT(bigint, TS) Numeric representation of the timestamp.

Foreign Key Field Type Null Notes Description
 FINANCIALSYSTEMID uniqueidentifier 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.

Index Name Field(s) Unique Primary Clustered
 IX_GLPOSTPROCESSPOSTMETHODTRANSLATION_DATEADDED DATEADDED    
 IX_GLPOSTPROCESSPOSTMETHODTRANSLATION_DATECHANGED DATECHANGED      
 IX_GLPOSTPROCESSPOSTMETHODTRANSLATION_FINANCIALSYSTEMID FINANCIALSYSTEMID      
 PK_GLPOSTPROCESSPOSTMETHODTRANSLATION ID  

Trigger Name Description
 TR_GLPOSTPROCESSPOSTMETHODTRANSLATION_AUDIT_UPDATE
 TR_GLPOSTPROCESSPOSTMETHODTRANSLATION_AUDIT_DELETE

Entity-Relationship diagram of this table