Andrey,
Asking all users to change this value under their personal settings might be
a large task. I have one other option for you that a colleague of mine
discovered in respect to globally changing the default personal notification
option for all users. It requires updating a single value in the Published
database.
Be aware that updating the SQL database directly is not supported or
recommended by Microsoft and I personally make no guarantees to the effects
this would have on your environment. However, I have tested this out on a
development environment of mine and it seems to work fine.
Go to the Published database on your SQL Server and run the SELECT statement
below to view all the default notification options. You will see they are
all turned on by default (i.e. Set to 1)
QUERY:
SELECT [ALERT_NAME],[ALERT_ENABLED_BY_DEFAULT]
FROM [MSP_ALERT_DEFINITION]
RESULTS:
"ALERT_ME"
"ALERT_ENABLED_BY_DEFAULT"
AssignmentDeleted 1
ManagerRejectsNewTask 1
ResourceUpdatesAssignment 1
EnterpriseResourceDeleted 1
ManagerRejectsNewAssignment 1
QueueJobFailed 1
ResourceSubmitsNewTask 1
AssignmentCreated 1
StatusReportRequestChanged 1
ResourceSubmitsStatusReport 1
ManagerRejectsUpdateToAssignment 1
AssignmentModified 1
ResourceSubmitsAdminTime 1
ManagerRequestsTaskUpdate 1
TaskDelegationRequest 1
You can either run this UPDATE statement or go directly into the database
table to update the value for 'Assignment Modified ' to 0
update [MSP_ALERT_DEFINITION]
set [ALERT_ENABLED_BY_DEFAULT] = 0
where [ALERT_NAME] = 'AssignmentModified'
Now, when the resource goes to their "Personal Settings>Manage My Alerts and
Reminders" they will see that the checkbox next to "Task Alerts>My project
tasks are modified" is unchecked.
Hope this helps,
Jonathan
Dale Howard said:
AndreyZ --
I would recommend that everyone in your organization log into PWA and then
click the "Personal Settings" link in the Quick Launch menu. On the
Personal Settings page, click the "Manage My Alerts and Reminders" link.
On the Manage My Alerts and Reminders page, deselect the "My project tasks
are modified" option and then click the Save button. This is the one sure
way to eliminate those pesky e-mail messages that feel like spam to your
team members. Hope this helps.