| SHORTDESCRIPTION | nvarchar(100) |  | Default = '' | Account segment short description | 
                                                
                                                    | 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. | 
                                                
                                                    | DESCRIPTION | nvarchar(60) |  | Default = '' | A friendly description of what this element represents | 
                                                
                                                    | TYPECODE | tinyint |  | Default = 3 | Defines the type of accounting element. Should match accounting values. | 
                                                
                                                    | TYPE | nvarchar(16) (Computed) | yes | CASE [TYPECODE] WHEN 1 THEN N'Account Code' WHEN 2 THEN N'Fund' WHEN 3 THEN N'Standard Segment' WHEN 4 THEN N'Endowment' WHEN 5 THEN N'Program' WHEN 6 THEN N'Event' WHEN 7 THEN N'Special Project' WHEN 8 THEN N'Grant' WHEN 9 THEN N'Membership' END | Provides a translation for the 'TYPECODE' field. | 
                                                
                                                    | ISACTIVE | bit |  | Default = 1 | Whether this account segment is currently usable for data entry | 
                                                
                                                    | PREVENTDATAENTRY | bit |  | Default = 0 | Whether data entry is allowed to this segment | 
                                                
                                                    | PREVENTDATAENTRYBEFOREDATE | datetime | yes |  | Date until data entry is prevented | 
                                                
                                                    | PREVENTDATAENTRYAFTERDATE | datetime | yes |  | Date when data entry is prevented from | 
                                                
                                                    | PREVENTPOST | bit |  | Default = 0 | Whether posting is allowed to this segment | 
                                                
                                                    | PREVENTPOSTBEFOREDATE | datetime | yes |  | Date until posting is prevented | 
                                                
                                                    | PREVENTPOSTAFTERDATE | datetime | yes |  | Date when posting is prevented from | 
                                                
                                                    | ACCOUNTSEQUENCE | int (Computed) | yes | ([dbo].[UFN_ACCOUNTSTRUCTURE_GETSEQUENCE](PDACCOUNTSTRUCTUREID)) | Sequence in the account string where this segment falls, based on accounting element | 
                                                
                                                    | ELEMENTNAME | nvarchar(100) (Computed) | yes | ([dbo].[UFN_TRANSLATIONFUNCTION_ACCOUNTSTRUCTURE_NAME](PDACCOUNTSTRUCTUREID)) | User defined name of the element, from the Account Structure table |