InterviewSolution
Saved Bookmarks
| 1. |
Send A Background Email When Any User Unblock An Item Card? |
|
Answer» Here is the simple program inside Item Card, "Blocked - OnValidate()" IF (Rec.Blocked = xRec.Blocked ) OR (Blocked = TRUE ) THEN EXIT; CurrPage.UPDATE; SMAIL.CreateMessage( ......... ); SmailSent; //Smail is Codeunit SMTP Mail. Here is the simple program inside Item Card, "Blocked - OnValidate()" IF (Rec.Blocked = xRec.Blocked ) OR (Blocked = TRUE ) THEN EXIT; CurrPage.UPDATE; Smail.CreateMessage( ......... ); SmailSent; //Smail is Codeunit SMTP Mail. |
|