Tasks Reminders and Notifications

J

Jon Kingsley

Everyone,

I have set my task reminders and notifications to remind
resources of upcoming tasks 1 day in advance to e-mail me
and the resource.

Situation: Resources still get notified about their task
even after I have deleted them off the task. How do I stop
them from receiving e-mails from a deleted task?

Regards,
Jon
 
S

Steve

If the tasks are at 100% in Project Web Access and email
notifications are still going out, a definite workaround
is the following SQL script:

Delete from
MSP_WEB_ASSIGNMENTS
where
WPROJ_ID <> 1
and WASSN_PCT_COMP = 100
 
Top