Primary Key Field Type
 ID uniqueidentifier

Field Field Type Null Notes Description
 POSTINGOPTIONCODE tinyint   Default = 0 Code to indicate the posting option selected by the user.
 POSTINGOPTION nvarchar(8) (Computed) CASE [POSTINGOPTIONCODE] WHEN 0 THEN N'All' WHEN 1 THEN N'Selected' WHEN 2 THEN N'None' END Provides a translation for the 'POSTINGOPTIONCODE' 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
 GLPOSTPROCESSID uniqueidentifier   GLPOSTPROCESS.ID FK to FTM Posting Process
 FINANCIALSYSTEMTRANSACTIONTYPEID uniqueidentifier   FINANCIALSYSTEMTRANSACTIONTYPE.ID FK that indicates what transaction type the record is for
 IDSETREGISTERID uniqueidentifier IDSETREGISTER.ID FK to the ID set used to filter the records included in the post process.
 ADDEDBYID uniqueidentifier   CHANGEAGENT.ID FK to CHANGEAGENT.
 CHANGEDBYID uniqueidentifier   CHANGEAGENT.ID FK to CHANGEAGENT.

Index Name Field(s) Unique Primary Clustered
 IX_GLPOSTPROCESSTRANSACTIONCRITERIA_DATEADDED DATEADDED    
 IX_GLPOSTPROCESSTRANSACTIONCRITERIA_DATECHANGED DATECHANGED      
 IX_GLPOSTPROCESSTRANSACTIONCRITERIA_GLPOSTPROCESSID GLPOSTPROCESSID      
 PK_GLPOSTPROCESSTRANSACTIONCRITERIA ID  

Trigger Name Description
 TR_GLPOSTPROCESSTRANSACTIONCRITERIA_AUDIT_UPDATE
 TR_GLPOSTPROCESSTRANSACTIONCRITERIA_AUDIT_DELETE

Entity-Relationship diagram of this table