client_KEY | int (4) | NOT NULL | Database assigned primary key for this table |
client_id | nvarchar (22) | NOT NULL | User defined identifier (unique) |
description | nvarchar (100) | NOT NULL | Client Name. This is the primary display name for the client. |
client_class_KEY | int (4) | NOT NULL | Key to a Client Class record. |
name_1 | nvarchar (100) | NOT NULL | Client Payroll Name. This name is mainly used for Payroll Compliance forms. |
name_2 | nvarchar (100) | NOT NULL | Client DBA Name. This is the Doing Busiess As name for the client. |
federal_tin | nvarchar (22) | NOT NULL | This field will hold the Fed Tax ID if the client is a non-individual, it will hold the taxpayer SSN for individual clients. |
individual_first_name | nvarchar (28) | NOT NULL | First name of the client if the client is an individual. |
individual_last_name | nvarchar (40) | NOT NULL | Last name of the client if the client is an individual. |
spouse_first_name | nvarchar (28) | NOT NULL | First name of the clients spouse if the client type is an individual. |
spouse_last_name | nvarchar (40) | NOT NULL | Last name of the clients spouse if the client type is an individual. |
record_status_KEY | int (4) | NOT NULL | Key to a Client Status record. |
industry_code | nvarchar (12) | NOT NULL | Industry code. |
fiscal_year_end_month | int (4) | NOT NULL | End month of the client's fiscal year end. |
date_opened | smalldatetime (4) | | Date the client came to your firm, default system date when a new client is added. |
date_left | smalldatetime (4) | | Date your firm terminated the client/firm relationship. |
contact_KEY | int (4) | NOT NULL | Key to the primary Contact record for this Client. |
client_id_sortable | varchar (48) | NOT NULL | A representation of the client_id column that sorts in natural order, meaning that digits are sorted as numbers while non-digits are sorted alphabetically. A trigger keeps this field synchronized with the content of client_id. |
client_inactive_reason_KEY | int (4) | | Reference to Client_Inactive_Reason. |
inactive_explanation | nvarchar (2000) | NOT NULL | Extra information regarding why the client is no longer active. |
client_type_KEY | int (4) | NOT NULL | Foreign key to the type of client |
data_origin_KEY | int (4) | NOT NULL | The origin of each client added to the database. For example, Data Entry or CSA Conversion. |
import_source_KEY | int (4) | NOT NULL | The source of imported data: Examples are Client Bookkeeping Solution and QuickBooks. Can also be set to None. |
allow_all_firm_staff_access | bit (1) | NOT NULL | True if all firm staff are allowed to access the client. |
csa_client_had_tbs_or_gl_module_marked | bit (1) | NOT NULL | True if the CSA client had either the TBS module or the GL module marked at the time the conversion to ACS took place. False if the client was not converted from CSA or if neither module was marked. |
send_w2s_to_ultra_tax | bit (1) | NOT NULL | Option to send W-2s to UltraTax through Pod REST service for staging by WebServices |
client_version | timestamp (8) | NOT NULL | The version of this row. It's an aid in versioning the row. |
client_force_new_version_toggle | bit (1) | NOT NULL | A bit to toggle that causes the client_version to update. Flip this bit when a subordinate tables are changed. |
is_checked_out | bit (1) | NOT NULL | Flag that will indicate if this client was checked out for in-field Workpaper audits. |
is_undergoing_restore | bit (1) | NOT NULL | This will be 1 during a CDMU Restore, for the client being restored from the backup file. It should never be observable as 1 from outside the CDMU transaction, always visible as 0. Do not confuse with a client_type_KEY of 6 BeingRestored, which indicates that the client is the previously-existing copy of a client being restored over, and which will be discarded on successful completion of the CDMU Restore. |