I have the field body which is a concatenated field of 8 columns. and i am trying to include the comment columns data into the body(datatype is text 16), comment column is a ntext(datatype), could you please tell e how i can include the comment to body.Thank you very much for the information.'Comment: ' + rtrim(isnull(a.comment,'')) + char(13) +CREATE PROCEDURE dbo.USP_SendEmailActionsSUM (@ModuleID int) ASINSERT INTO Tab_ccsNetEmailsum (toemail, alerttime, body, emailsubject)Select u.Email, getdate(), 'Program: ' + pg.progno + char(13) + 'Project: ' + pj.projno + char(13) + 'Contract: ' + ct.contractno + char(13) + 'Due Date: ' + CONVERT(varchar(10),a.DueDate,101) + char(13) + 'Company: ' + rtrim(isnull(a.company,'')) + char(13) + 'Action Description: ' + a.actiondescription + char(13) + 'Status: ' + rtrim(isnull(a.status,'')) + char(13) + 'Assigned To: ' + u.UserName + char(13) as body,'you have a task assigned on CCS'from tab_ccsnetactions a, tab_ccsnetprograms pg, tab_ccsnetprojects pj,tab_ccsnetcontracts ct, TAB_ccsNetUsers u, tab_ccsnetcn m where a.ModuleRecordID = m.cnid anda.assignedto = u.UserID andm.progid = pg.progid and m.projid = pj.projid andm.contractid = ct.contractid anda.modulerecordid = @ModuleIDGO