Way to mass remove the deleted (X tasks) in the PWA side?

S

Sandy

Short of clicking on each task, and then clicking on Hide, is there a way to
remove them all at once?
 
C

Christophe Fiessinger [MS]

Sandy,
You can setup a scheduled job in SQL server to execute the following T-SQL
command:
Update From MSP_WEB_ASSIGNMENTS

Set WASSN_REMOVED_BY_RESOURCE = 1

Where WASSN_DELETED_IN_PROJ = 1

Regards,

CF.
 
Top