PLANNEDGIFTACKNOWLEDGEMENTPROCESS
                                        Contains information pertaining to the planned gift acknowledgement process.  
                                        Primary Key
                                        
                                            
                                                
                                                    | Primary Key | Field Type | 
                                            
                                            
                                                
                                                    | ID | uniqueidentifier | 
                                            
                                        
                                        Fields
                                        
                                            
                                                
                                                    | Field | Field Type | Null | Notes | Description | 
                                            
                                            
                                                
                                                    | NAME | nvarchar(100) |  | Default = '' | The name of the parameter set. | 
                                                
                                                    | DESCRIPTION | nvarchar(255) |  | Default = '' | The description of the parameter set. | 
                                                
                                                    | CREATEOUTPUTIDSET | bit |  | Default = 0 | Designates whether or not an ID set should be created as a result of the acknowledgement process. | 
                                                
                                                    | OUTPUTIDSETNAME | nvarchar(100) |  | Default = '' | The name of the output ID set to be created by the acknowledgement process. | 
                                                
                                                    | OVERWRITEOUTPUTIDSET | bit |  | Default = 0 | Designates whether or not to overwrite the output ID set if one with the same name already exists. | 
                                                
                                                    | MARKLETTERSACKNOWLEDGED | bit |  | Default = 0 | Indicates whether or not letters for this process should be marked as sent. | 
                                                
                                                    | ACKNOWLEDGEDATETYPECODE | tinyint |  | Default = 0 | Designates whether to use today's date or a specific date in the acknowledgement process as the acknowledge date. | 
                                                
                                                    | ACKNOWLEDGEDATE | datetime | yes |  | This date is used as the acknowledge date when marking records as acknowledged. | 
                                                
                                                    | LABELFILENAME | nvarchar(255) |  | Default = '' | The original file name for the label template. | 
                                                
                                                    | LABELFILE | varbinary | yes |  | The actual file for the label template. | 
                                                
                                                    | 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. | 
                                                
                                                    | ACKNOWLEDGEDATETYPE | nvarchar(13) (Computed) | yes | CASE [ACKNOWLEDGEDATETYPECODE] WHEN 0 THEN N'Today' WHEN 1 THEN N'Specific date' END | Provides a translation for the 'ACKNOWLEDGEDATETYPECODE' field. | 
                                            
                                        
                                        Foreign Keys
                                        
                                            
                                                
                                                    | Foreign Key | Field Type | Null | Notes | Description | 
                                            
                                            
                                                
                                                    | IDSETREGISTERID | uniqueidentifier | yes | IDSETREGISTER.ID | A foreign key to the ID set used to filter the records included in the acknowledgement process. | 
                                                
                                                    | OUTPUTIDSETRECORDTYPEID | uniqueidentifier | yes | RECORDTYPE.ID | A foreign key to the record type of the output ID set to be created by the acknowledgement process. | 
                                                
                                                    | PLANNEDGIFTLETTERCODEID | uniqueidentifier |  | PLANNEDGIFTLETTERCODE.ID | A foreign key to the planned gift letter code this process will use to acknowledge. | 
                                                
                                                    | ADDEDBYID | uniqueidentifier |  | CHANGEAGENT.ID | FK to CHANGEAGENT. | 
                                                
                                                    | CHANGEDBYID | uniqueidentifier |  | CHANGEAGENT.ID | FK to CHANGEAGENT. | 
                                            
                                        
                                        Indexes
                                        
                                            
                                                
                                                    | Index Name | Fields | Unique | Primary | Clustered | 
                                            
                                            
                                                
                                                    | IX_PLANNEDGIFTACKNOWLEDGEMENTPROCESS_DATEADDED | DATEADDED |  |  | yes | 
                                                
                                                    | IX_PLANNEDGIFTACKNOWLEDGEMENTPROCESS_DATECHANGED | DATECHANGED |  |  |  | 
                                                
                                                    | PK_PLANNEDGIFTACKNOWLEDGEMENTPROCESS | ID | yes | yes |  | 
                                                
                                                    | UC_PLANNEDGIFTACKNOWLEDGEMENTPROCESS_NAME | NAME | yes |  |  | 
                                            
                                        
                                        Triggers
                                        
                                        Referenced by