GLPOSTPROCESSPOSTMETHOD
                                        Defines how (detail or summary) transactions will be posted to GL.  
                                        Primary Key
                                        
                                            
                                                
                                                    | Primary Key | Field Type | 
                                            
                                            
                                                
                                                    | ID | uniqueidentifier | 
                                            
                                        
                                        Fields
                                        
                                            
                                                
                                                    | Field | Field Type | Null | Notes | Description | 
                                            
                                            
                                                
                                                    | 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. | 
                                                
                                                    | POSTMETHODCODE | tinyint |  | Default = 3 | Code for how to summarize transaction records. | 
                                                
                                                    | POSTMETHOD | nvarchar(21) (Computed) | yes | CASE [POSTMETHODCODE] WHEN 1 THEN N'Detail' WHEN 2 THEN N'Detail by transaction' WHEN 3 THEN N'Summary' END | Provides a translation for the 'POSTMETHODCODE' 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 | 
                                            
                                            
                                                
                                                    | GLPOSTPROCESSID | uniqueidentifier |  | GLPOSTPROCESS.ID | FK to FTM Posting Process | 
                                                
                                                    | 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_GLPOSTPROCESSPOSTMETHOD_DATEADDED | DATEADDED |  |  | yes | 
                                                
                                                    | IX_GLPOSTPROCESSPOSTMETHOD_DATECHANGED | DATECHANGED |  |  |  | 
                                                
                                                    | IX_GLPOSTPROCESSPOSTMETHOD_GLPOSTPROCESSID | GLPOSTPROCESSID |  |  |  | 
                                                
                                                    | PK_GLPOSTPROCESSPOSTMETHOD | ID | yes | yes |  | 
                                            
                                        
                                        Triggers