Sandra Tibbs 2.Jun.11 02:32 PM a Web browser Domino Designer7.0.3 FP1All Platforms
I have a simple database set up to track and place time off requests in my office. I have a submit button code that sents and e-mail off to the supervisor to approve the request. The would like the field "Body" to be added to the send @mailsend to the supername code line. Need to know how to do this. Here is my code for the submit button:
@If(todate < frdate;@Prompt([Ok];"Date Error";"To Date is less then the From Date. Submission Cancel by system. Please correct To Date");
@Do(
FIELD Form:="vTimeOff";
FIELD ReadersMbr:=@Name([CN];eename) + ", [Managers], [Administrator], [Payroll], " + @UserName;
@StatusBar("Sending Mail");
@If(@Command([FileSave]);
@Do(@Command([FileCloseWindow]);
@MailSend(supername;"";"";"Time Off Request";"Time Off Request / Report Submitted for your approval" + @NewLine;
@Name([CN];Createdby) + " created a request for approval for "+ @Name([CN];eename)
+ " to have time off from " + @Text(frdate;"D0") + " to " + @Text(todate;"D0") + ". Time - From " + @Text(frtime;"T1") + " to " + @Text(totime;"T1") + " for the folllowing reason: " + reason + @NewLine + @NewLine + @NewLine + @NewLine + "Please check the Time Off Request Database in Lotus Note by clicking on the following link: - > " ;[PriorityHigh] : [IncludeDoclink] );
@MailSend(eename;"";"";"Time Off Request Submitted";"Time Off Request / Report submitted for you." + @NewLine;
@Name([CN];CreatedBy) + " has created a requested for Time Off for "+ @Name([CN];eename)
+ " for the following reason: " + reason + @NewLine + @NewLine + "Please check the Time Off Request Database in Lotus Note by clicking on the following link: - > " ;[PriorityHigh] : [IncludeDoclink] ));
@StatusBar("Save Unsuccessful - Request was NOT sent")) ;
@Success))
Also would like the like to move the field changes and the status changes to inside the second do....