Mail sending for alerting

uttar_naguttar_nag Member Posts: 19
How can I Do this which are Given below?

I want to Pop up mail for alerting to Person regarding Date . This means, First i want to match between System date and Invoice Date. If System date= Invoice date, then i want to pop up mail for alerting your Invoice date is over. How can we do this?

My Navision Version 4.0 SP3.

Comments

  • MalajloMalajlo Member Posts: 294
    Pop up a mail for notifying user?
    Perhaps you mean (in CU:80)
    Name	ConstValue
    Text50000	Document date is not equal working date!\Would you like to continue?
    
    
    OnRun(VAR Rec : Record "Sales Header")
    IF WORKDATE <> "Document Date" THEN IF NOT CONFIRM(Text50000,FALSE) THEN ERROR(Text50001) ;
    
  • WaldoWaldo Member Posts: 3,412
    Mind that there is a difference between WORKDATE and TODAY.
    In this case, I think you don't need the system date, but the WORKDATE.

    Furthermore, I think you mean pop up a message in stead of a mail?

    Eric Wauters
    MVP - Microsoft Dynamics NAV
    My blog
Sign In or Register to comment.