J --
Are you referring specifically to the person that Project Server designates
as the Manager of each task? The Manager is the person who initially
publishes the task assignments using Collaborate - Publish - New and Changed
Assignments, or the person who takes over as manager by clicking
Collaborate - Publish - Repubish Assignments and selects the "Become the
manager for these assignments" option. The Manager is also the person to
whom task updates are sent from team members when the click the Update All
or Update Selected Tasks button on their PWA timesheet page. If the Manager
of each task is what you seek, you can see this information in the View
Resource Assignments page if you add the Manager field to the list of fields
in the Summary view in the Assignment section.
An alternate approach would be to use a SQL Server query such as follows:
SELECT MSP_WEB_PROJECTS.PROJ_NAME, MSP_WEB_ASSIGNMENTS.TASK_NAME,
MSP_WEB_RESOURCES.RES_NAME AS Resource,
MSP_WEB_RESOURCES_1.RES_NAME AS Manager
FROM MSP_WEB_ASSIGNMENTS INNER JOIN
MSP_WEB_RESOURCES ON MSP_WEB_ASSIGNMENTS.WRES_ID =
MSP_WEB_RESOURCES.WRES_ID INNER JOIN
MSP_WEB_RESOURCES MSP_WEB_RESOURCES_1 ON
MSP_WEB_ASSIGNMENTS.WRES_ID_MGR =
MSP_WEB_RESOURCES_1.WRES_ID INNER JOIN
MSP_WEB_PROJECTS ON MSP_WEB_ASSIGNMENTS.WPROJ_ID =
MSP_WEB_PROJECTS.WPROJ_ID
Please keep in mind that I am not a SQL Server DBA professionally, but I was
able to hack together a Query that revealed the Manager of each task
assignment in the Project Server database. Hope this helps.