Modify Task Billing Category Project Server 2010

Dears , I am filling a new timesheets, it already contains tasks from projects. can I change the billling category for these tasks?
the billing category is disabled for them.
any ideas?
Twitter : @MShoubaki | http://jo.linkedin.com/in/mshoubaki

Mohammad,
I just came across your question.  The billing category is an attribute of a timesheet line, which by default are standard.  You can have multiple timesheet lines per assignment.  In order to enter time in a non-standard billing category,
you will need to manually add the line to the timesheet, and at that time, specify the billing category to use.  The following article has additional details.
http://blogs.msdn.com/b/project/archive/2008/05/20/timesheet-classifications.aspx
I hope this helps.
Best regards,
Justin
Justin Naughton

Similar Messages

  • How to disable the edit Permission after the task approval in project server 2010.

    Hi ,
    Can this be done.
    How to disable the edit Permission after the task approval in project server 2010.
    I mean How to Disable approve/Reject Permission Once task approved in project server 2010.
    Any Help Would be more than Welcome.

    Hi Rohan,
    Just talking about the tool capabilities, preventing a task approver (status manager) to approve/reject updates once he has already approved once is not possible out-of-the-box. You grant permissions to user: if you grant a user to approve task updates then
    he has the permission to approve updates, no matter if it is the 2nd or 3rd time the task is approved or rejected.
    Then of course you could do not custom development to do that.
    I'd say that in order to help you, we would need to understand a little bit more your business need. Why do you need to achieve such a goal? We can surely propose you workaround.
    Hope this helps.
    Guillaume Rouyre - MBA, MCP, MCTS

  • An Unknown Error Has Occurred - Project Server 2010 - Tasks Page

    Greetings!   Some of my resources are recieving the error "An Unknown Error has occurred" (in red)  when trying to access their TASKS Page in Project Server 2010.  
    I've researched this error quite a bit and am finding suggestions and answers pretty much all over the board.    Before I have my server people start installing a slew of hot fixes - I want to know if anyone has an idea of the underlying cause
    for this error.    Since this issue doesn't affect everyone (i.e. I can access my task page), is it possibly related to the actual schedule in which they have assignments?    
    Any help is appreciated.
    Thanks!
    ~Randy 

    i have found the solution for this issue, you need to do this:
    in the logs you must search the "exception" and the logs give you a ID, this ID is about the task assignment in the specific resource , so this assignment is corrupt.
    this ID, you need to merge in the SQL server in the project server database, you need to merge ID task with ID Project with ID Resource, so when you identify the ID project and ID resource you can
    DELETE this assignment in the project from project profesional, because this task has a corrupt assignment, you must delete
    ONLY FROM project professional.
    This solutión solve this specific problem for this assignment  that
    IS DIFERENT TO THIS SOLUTION  post of Brian Smith:
    http://blogs.msdn.com/b/brismith/archive/2010/07/02/project-server-2010-an-unknown-error-has-occurred-in-project-center-resource-center-or-tasks.aspx?Redirected=true
    Erick Gutiérrez PMI Membership #ID 2089740 MTCS - Microsoft Project Server Managing Projects

  • Email Notifications from Project 2013 has Project Server 2010 in the subject

    When Project 2013 sends out task reminders it has "Task reminders - Microsoft Project Server 2010
    notification service" in the subject line.  Anyone know how or where this can be changed from 2010 to 2013. 
    New On premise installation of Project 2013 sp1

    I think it is a known bug, not sure if it has been corrected in the latest CU. Contact MS, they should help you with a script:
    https://social.technet.microsoft.com/Forums/en-US/6441b337-785e-48a6-a40a-6406a141001d/task-reminder-emails-for-project-server-2013-have-subject-line-task-reminders-microsoft-project?forum=projectserver2010general
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • Project Server 2010 : Webapp - tasks - "An Unknown Error has occured"

    Software used
    Project server 2010
    SharePoint 2010 RTM
    Sql Server 2008 R2
    Steps taken
    new project server 2010 setup on a virtual machine
    importing/publishing 2 projects from projectcentral 2000 to project server 2010.
    a user has 122 tasks (in project central 2000 he only gets 15 tasks in his view)
    unable to view the detail of the tasks --> unkown error.
    there is a sql time out in the log files, from the following query  (when i run it in SQL management studio it takes > 5 minutes)
    declare @ResUid UniqueIdentifier; set @ResUid = '9ffd71a7-c94a-44f5-b3b1-6d27eb17f541';
    declare @ViewUid UniqueIdentifier; set @ViewUid = 'a20480ef-c755-4da7-a36f-5fe92fed0c68'; 
    declare @P0 UniqueIdentifier; set @P0 = '9ffd71a7-c94a-44f5-b3b1-6d27eb17f541'; 
    SET NOCOUNT ON
    SELECT      MAS.ASSN_UID ,      MAS.PROJ_UID   INTO #T0 
    FROM dbo.MSP_ASSIGNMENTS_SAVED AS MAS    
          INNER JOIN dbo.MSP_PROJECTS AS MP ON MP.PROJ_UID = MAS.PROJ_UID    
          INNER JOIN dbo.MSP_TASKS_SAVED AS T ON T.PROJ_UID = MAS.PROJ_UID AND T.TASK_UID = MAS.TASK_UID    
          INNER JOIN dbo.MSP_PROJECT_RESOURCES AS R ON R.PROJ_UID = MAS.PROJ_UID AND R.RES_UID = MAS.RES_UID    
          INNER JOIN dbo.MSP_RESOURCES AS R2 ON R2.RES_UID = R.RES_DEF_ASSN_OWNER    
          LEFT JOIN dbo.MSP_RESOURCES AS R3 ON R3.RES_UID = MAS.RES_UID_OWNER    
          LEFT JOIN dbo.MSP_RESOURCES AS R4 ON R4.RES_UID = MAS.WRES_UID_MANAGER 
    WHERE MAS.WASSN_LOCKDOWN_BY_MANAGER = 0AND T.TASK_IS_ACTIVE = 1 AND ( (MAS.RES_UID_OWNER = @P0) )  
    CREATE CLUSTERED INDEX PK_#T0 ON #T0 (ASSN_UID, PROJ_UID)  
    SET NOCOUNT OFF  
    SELECT      MAS.ASSN_UID ,      MAS.PROJ_UID ,      MAS.TASK_NAME ,      MAS.ASSN_START_DATE ,      MAS.ASSN_FINISH_DATE ,     
    ASSN_REM_WORK ,      MAS.ASSN_PCT_WORK_COMPLETE ,      ASSN_WORK ,      ASSN_ACT_WORK ,      MAS.TASK_UID ,      PROJ_NAME ,     
    WASSN_IS_NEW_ASSN ,      MAS.WASSN_REMOVED_BY_RES ,      case when exists ( select * from MSP_ASSIGNMENT_TRANSACTIONS t where MAS.ASSN_UID = t.ASSN_UID and t.ASSN_TRANS_STATE_ENUM = 1) then 1 else 0 end AS
    ASSN_RESPONSE_PENDING ,      MAS.WASSN_MGR_UPDATED ,      MAS.WASSN_ACTUALS_PENDING ,      MAS.WASSN_SEND_UPDATE_NEEDED ,      MAS.WASSN_LOCKDOWN_BY_MANAGER
    ,      MAS.WASSN_DELETED_IN_PROJ ,      MAS.WASSN_COMMENTS ,      R.RES_NAME ,      T.TASK_IS_MILESTONE ,      WASSN_UPDATE_TRACKING_MODE
    ,      T.TASK_NOTES ,      T.TASK_IS_MANUAL ,      T.TASK_HIERARCHY ,      T.TASK_DUR_TXT ,      T.TASK_FINISH_TXT ,     
    T.TASK_START_TXT ,      MAS.TASK_IS_SUMMARY ,      WO.WOBJ_UID ,      MP.PROJ_OPT_MINUTES_PER_DAY ,      MP.PROJ_OPT_MINUTES_PER_WEEK ,     
    MP.PROJ_OPT_DAYS_PER_MONTH ,      MP.PROJ_OPT_CURRENCY_CODE ,      MAS.ASSN_STOP_DATE ,      T.TASK_IS_SUBPROJ ,      T.TASK_IS_ACTIVE ,     
    T.TASK_START_DATE ,      T.TASK_FINISH_DATE ,      T.TASK_DUR ,      MAS.RES_UID ,      R.RES_MATERIAL_LABEL ,      R.RES_TYPE ,     
    ASSN_UPDATE_NEEDED  
    FROM dbo.MSP_ASSIGNMENTS_SAVED AS MAS     
        INNER JOIN dbo.MSP_PROJECTS AS MP ON MP.PROJ_UID = MAS.PROJ_UID    
        INNER JOIN dbo.MSP_TASKS_SAVED AS T ON T.PROJ_UID = MAS.PROJ_UID AND T.TASK_UID = MAS.TASK_UID    
        INNER JOIN dbo.MSP_PROJECT_RESOURCES AS R ON R.PROJ_UID = MAS.PROJ_UID AND R.RES_UID = MAS.RES_UID    
        INNER JOIN dbo.MSP_RESOURCES AS R2 ON R2.RES_UID = R.RES_DEF_ASSN_OWNER    
        LEFT JOIN dbo.MSP_RESOURCES AS R3 ON R3.RES_UID = MAS.RES_UID_OWNER    
        LEFT JOIN dbo.MSP_RESOURCES AS R4 ON R4.RES_UID = MAS.WRES_UID_MANAGER   
        INNER JOIN #T0 AS keys ON keys.ASSN_UID = MAS.ASSN_UID AND keys.PROJ_UID = MAS.PROJ_UID    
        LEFT JOIN dbo.MSP_WEB_OBJECTS AS WO ON WO.WOBJ_PROJ_UID = T.PROJ_UID AND WO.WOBJ_TASK_UID = T.TASK_PUBLISHED_UID AND WO.WOBJ_TYPE = 2 
    WHERE MAS.WASSN_LOCKDOWN_BY_MANAGER = 0AND T.TASK_IS_ACTIVE = 1   
    DROP TABLE #T0;
    This query creates a tempory table -- when ran seperately = fast
    The query does a selection joining the temporary table.
    When running the second query without the join on the temp it takes 8 seconds and result in 826 records (all assignements in the db)
    After looking at the join and where clauses used in the first and second query i see they are almost identical and with only adding "AND ( (MAS.RES_UID_OWNER = @P0) ) " and not using a temp table, I get the wanted result (122) only taking half
    a second.
    So
    Suggestions how to fix, circumvent the problem?

    Exact same problem, took me hours to trace it, but i get the exact same behavior, some people can open the tasks view normally, some other people get timeouts.
    Tried multiple browsers, logging different users on different machines, different hours in the day with different loads and capacities, verified that SQL Server and SharePoint Servers and Project Servers are not over utilitized.
    There just seems to be something wrong with this query, i tried running it in SQL Server Management Studio, and it does indeed take alot of time to generate results, about 5 mins or so for some users.
    Please can anyone suggest a solution other than contacting support, this is heavily impacting our business.

  • Project Server 2010 Task page - An unknown error has occurred

    Hi All,
    I have searched inside the forum for similar problems but i didn't find any solution.
    We have Project Server 2010 with December CU installed and
    we are
    experiencing
    a serious
    problem with two enterprise resources.
    They can login to pwa succesfully but when they enter in the Task page the following error is raised:
    An unknown error has occurred
    There are no errors reported in the event viewer while in the ULS Log I found only this entry but i don't know if it's related with this issue:
    Detected use of SPRequest for previously closed SPWeb object. Please close SPWeb objects when you are done with all objects obtained from them, but not before. Stack trace:
    at Microsoft.SharePoint.SPWeb.get_CurrentUser()
    at Microsoft.Office.Project.PWA.PJContext.get_RegionalSettings()
    at Microsoft.Office.Project.PWA.PJContext.get_LocaleCulture()
    at Microsoft.Office.Project.PWA.WCFContext.AuthenticateUser(Message message, WCFContext& wcfContext, String userName, Boolean isWindowsUser)
    at Microsoft.Office.Project.PWA.WCFContext.GetContext(Message message, String userName, Boolean isWindowsUser, Boolean newCookie, Uri originalTargetUri)
    at Microsoft.Office.Project.Server.ProjectServerRouter.Microsoft.Office.Project.Server.IProjectServerRouter.ProcessMessage(Message message)
    at SyncInvokeProcessMessage(Object , Object[] , Object[] )
    at System.ServiceModel.Dispatcher.SyncMethodInvoker.Invoke(Object instance, Object[] inputs, Object[]& outputs)
    at System.ServiceModel.Dispatcher.DispatchOperationRuntime.InvokeBegin(MessageRpc& rpc)
    at System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage5(MessageRpc& rpc)
    at System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage4(MessageRpc& rpc)
    at System.ServiceModel.Dispatcher.MessageRpc.Process(Boolean isOperationContextSet)
    at System.ServiceModel.Dispatcher.ChannelHandler.DispatchAndReleasePump(RequestContext request, Boolean cleanThread, OperationContext currentOperationContext)
    at System.ServiceModel.Dispatcher.ChannelHandler.HandleRequest(RequestContext request, OperationContext currentOperationContext)
    at System.ServiceModel.Dispatcher.ChannelHandler.AsyncMessagePump(IAsyncResult result)
    at System.ServiceModel.Diagnostics.Utility.AsyncThunk.UnhandledExceptionFrame(IAsyncResult result)
    at System.ServiceModel.AsyncResult.Complete(Boolean completedSynchronously)
    at System.ServiceModel.Channels.InputQueue`1.AsyncQueueReader.Set(Item item)
    at System.ServiceModel.Channels.InputQueue`1.EnqueueAndDispatch(Item item, Boolean canDispatchOnThisThread)
    at System.ServiceModel.Channels.InputQueue`1.EnqueueAndDispatch(T item, ItemDequeuedCallback dequeuedCallback, Boolean canDispatchOnThisThread)
    at System.ServiceModel.Channels.InputQueueChannel`1.EnqueueAndDispatch(TDisposable item, ItemDequeuedCallback dequeuedCallback, Boolean canDispatchOnThisThread)
    at System.ServiceModel.Channels.SingletonChannelAcceptor`3.Enqueue(QueueItemType item, ItemDequeuedCallback dequeuedCallback, Boolean canDispatchOnThisThread)
    at System.ServiceModel.Channels.SingletonChannelAcceptor`3.Enqueue(QueueItemType item, ItemDequeuedCallback dequeuedCallback)
    at System.ServiceModel.Channels.HttpChannelListener.HttpContextReceived(HttpRequestContext context, ItemDequeuedCallback callback)
    at System.ServiceModel.Activation.HostedHttpTransportManager.HttpContextReceived(HostedHttpRequestAsyncResult result)
    at System.ServiceModel.Activation.HostedHttpRequestAsyncResult.BeginRequest()
    at System.ServiceModel.Activation.HostedHttpRequestAsyncResult.OnBeginRequest(Object state)
    at System.ServiceModel.PartialTrustHelpers.PartialTrustInvoke(ContextCallback callback, Object state)
    at System.ServiceModel.Activation.HostedHttpRequestAsyncResult.OnBeginRequestWithFlow(Object state)
    at System.ServiceModel.Channels.IOThreadScheduler.CriticalHelper.WorkItem.Invoke2()
    at System.ServiceModel.Channels.IOThreadScheduler.CriticalHelper.WorkItem.Invoke()
    at System.ServiceModel.Channels.IOThreadScheduler.CriticalHelper.ProcessCallbacks()
    at System.ServiceModel.Channels.IOThreadScheduler.CriticalHelper.CompletionCallback(Object state)
    at System.ServiceModel.Channels.IOThreadScheduler.CriticalHelper.ScheduledOverlapped.IOCallback(UInt32 errorCode, UInt32 numBytes, NativeOverlapped* nativeOverlapped)
    at System.ServiceModel.Diagnostics.Utility.IOCompletionThunk.UnhandledExceptionFrame(UInt32 error, UInt32 bytesRead, NativeOverlapped* nativeOverlapped)
    at System.Threading._IOCompletionCallback.PerformIOCompletionCallback(UInt32 errorCode, UInt32 numBytes, NativeOverlapped* pOVERLAP)
     It's not a task related errors because i have alredy done an analysis of the resorce's assignments.
    I have also verified IIS authentication settings as described in this
    post but all had been alredy correctly configured.
    We have a farm installation with two physical server:
    Application Server with Windows 2008 R2, SharePoint 2010 Enterprise, Project Server 2010
    Database Server with Windows 2008 R2 and SQL Server 2008 SP2
    Any help would be greatly appreciated!
    Thanks in advance.
    Raffaele

    Hi,
    I faced exactly the same problem: some resources try to connect to My Tasks, and get an Unknown error. No error message in ULS or Eventlog.
    I hope I solved the problem, and want to share the experience here.
    First, by reading this article,
    http://www.projectserverexperts.com/ProjectServerFAQKnowledgeBase/Unknown%20Error%20My%20Tasks%20Page.aspx: even if the SQL Query returns me no records, it gives me the idea to delete (unpublish) some tasks (i managed to identify some tasks which raised
    the problem, by assigning a test account on them, and see that the pb happened).
    So I decided to delete my project from the Published Database (and keep it in the Draft of course). Than in Project Pro, I opened and Published: the problem seem to be solved.
    I don't know the root cause of the pb: maybe some SQL data were corrupted for an unknown reason.
    Hope it could help some one ! Don't hesitate to give feedback if you solved this pb with this solution, or workaround.
    Sylvain

  • Project Server 2010 - Error Adding/Modifying Users

    Thanks in advance for any help you can offer. We are running Project Server 2010 with SharePoint 2010 on Windows Server 2008. Project Server was installed successfully and a new site was created (server.com/pwa). When I attempt to add a new user (via Server
    Settings), or modify the existing account that was added on install, I receive an error on the top of the page. For a new user the following appears:
    0de01bb7-786e-4003-8fe8-6790fae42248 -1 2 false true 3 0 00000000-0000-0000-0000-000000000000 00000000-0000-0000-0000-000000000000 false false 0de01bb7-786e-4003-8fe8-6790fae42248 true false
    Once the new user info is entered, and I click "Save", the progress icon spins and nothing happens. No user is added.
    When I go to modify the existing user, I see this on the top of the page:
    •An error was encountered in loading the page. Refresh the page, or contact your server administrator if this problem persists.
    7342ea55-fad1-4a8b-9d7b-1450e468cd2f 1 2 false true 3 0 Admin. SP A DOMAIN\account true 2014-06-30T15:28:55.12-05:00 7342ea55-fad1-4a8b-9d7b-1450e468cd2f 7342ea55-fad1-4a8b-9d7b-1450e468cd2f false false 2014-06-30T10:34:09.95-05:00 2014-06-30T10:34:46.56-05:00
    2 2 10000.000000 false b6635b2e-e747-4771-a78b-24f7509629d0 7342ea55-fad1-4a8b-9d7b-1450e468cd2f DOMAIN\account true false Admin. SP 2 2014-07-01T08:07:42.343-05:00 7342ea55-fad1-4a8b-9d7b-1450e468cd2f 100
    Any ideas on how I can resolve this issue would be greatly appreciated.
    Thanks again!
    AJ

    Much appreciated kbwrecker.  Moving forward, I am developing a plan to deploy SharePoint/Project Server 2013.  So this will hopefully, if done right, alleviate these types of issues. 
    But, as the 2010 system will be in use for awhile, I am still curious as to what is causing my current PWA issues.  I also believe it is a permission issue.  The errors I added to my first post on this topic were not from the logs.  They only
    appear on the user/group webpage in PWA.  I don't see them elsewhere.
    Here are the complete ULS logs (using ULS Viewer) from my PWA add user attempt.  This is very long.  I apologize if this is more than is needed:
    07/10/2014 08:14:43.19    w3wp.exe (0x16A4)    0x1E34    SharePoint Foundation    Logging Correlation Data    xmnv    Medium    Name=Request
    (GET:https://sharepoint.company.com:443/pwa/_layouts/pwa/Admin/ManageUsers.aspx)    9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.22    w3wp.exe (0x16A4)    0x1E34    SharePoint Foundation    Logging Correlation Data    xmnv    Medium    Site=/pwa  
     9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.23    w3wp.exe (0x16A4)    0x1E34    SharePoint Foundation    Topology    e5mc    Medium    WcfSendRequest: RemoteAddress:
    'http://spserver:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/PWA.svc' Channel: 'Microsoft.Office.Project.Server.Interfaces.IPWA' Action: 'http://schemas.microsoft.com/office/project/server/webservices/PWA/SecurityCheckUserPagePermission' MessageId: 'urn:uuid:ea31a728-db44-4c90-9284-2b991597998d'  
     9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.24    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Topology    e5mb    Medium    WcfReceiveRequest: LocalAddress:
    'http://spserver.company.com:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/PWA.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/office/project/server/webservices/PWA/SecurityCheckUserPagePermission' MessageId:
    'urn:uuid:ea31a728-db44-4c90-9284-2b991597998d'    9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.24    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Monitoring    nasq    Medium    Entering monitored
    scope (ExecuteWcfServerOperation)    9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.24    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Monitoring    b4ly    Medium    Leaving Monitored
    Scope (ExecuteWcfServerOperation). Execution Time=1.77368911411925    9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.28    w3wp.exe (0x16A4)    0x1E34    SharePoint Foundation    Topology    e5mc    Medium    WcfSendRequest: RemoteAddress:
    'http://spserver:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/PWA.svc' Channel: 'Microsoft.Office.Project.Server.Interfaces.IPWA' Action: 'http://schemas.microsoft.com/office/project/server/webservices/PWA/ResourceReadResourceCount' MessageId: 'urn:uuid:42f18fb5-adcf-4847-9883-5f8e8bd0c2b5'  
     9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.28    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Topology    e5mb    Medium    WcfReceiveRequest: LocalAddress:
    'http://spserver.company.com:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/PWA.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/office/project/server/webservices/PWA/ResourceReadResourceCount' MessageId: 'urn:uuid:42f18fb5-adcf-4847-9883-5f8e8bd0c2b5'  
     9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.28    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Monitoring    nasq    Medium    Entering monitored
    scope (ExecuteWcfServerOperation)    9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.29    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Monitoring    b4ly    Medium    Leaving Monitored
    Scope (ExecuteWcfServerOperation). Execution Time=4.15443862278586    9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.30    w3wp.exe (0x16A4)    0x1E34    SharePoint Foundation    Topology    e5mc    Medium    WcfSendRequest: RemoteAddress:
    'http://spserver:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/PWA.svc' Channel: 'Microsoft.Office.Project.Server.Interfaces.IPWA' Action: 'http://schemas.microsoft.com/office/project/server/webservices/PWA/ResourceReadUserListAll' MessageId: 'urn:uuid:5b83c471-7f9c-4fb6-bef1-861b2b6111fc'  
     9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.30    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Topology    e5mb    Medium    WcfReceiveRequest: LocalAddress:
    'http://spserver.company.com:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/PWA.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/office/project/server/webservices/PWA/ResourceReadUserListAll' MessageId: 'urn:uuid:5b83c471-7f9c-4fb6-bef1-861b2b6111fc'  
     9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.30    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Monitoring    nasq    Medium    Entering monitored
    scope (ExecuteWcfServerOperation)    9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.31    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Monitoring    b4ly    Medium    Leaving Monitored
    Scope (ExecuteWcfServerOperation). Execution Time=3.72645126685095    9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.37    w3wp.exe (0x16A4)    0x1E34    SharePoint Foundation    Topology    e5mc    Medium    WcfSendRequest: RemoteAddress:
    'http://spserver:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/Security.svc' Channel: 'Microsoft.Office.Project.Server.Interfaces.ISecurity' Action: 'http://schemas.microsoft.com/office/project/server/webservices/Security/CheckUserGlobalPermission' MessageId:
    'urn:uuid:7787e7fe-44b3-4bb0-9a16-452ac7f8f62b'    9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.38    w3wp.exe (0x1830)    0x0984    SharePoint Foundation    Topology    e5mb    Medium    WcfReceiveRequest: LocalAddress:
    'http://spserver.company.com:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/Security.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/office/project/server/webservices/Security/CheckUserGlobalPermission' MessageId:
    'urn:uuid:7787e7fe-44b3-4bb0-9a16-452ac7f8f62b'    9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.38    w3wp.exe (0x1830)    0x0984    SharePoint Foundation    Monitoring    nasq    Medium    Entering monitored
    scope (ExecuteWcfServerOperation)    9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.38    w3wp.exe (0x1830)    0x0984    SharePoint Foundation    Monitoring    b4ly    Medium    Leaving Monitored
    Scope (ExecuteWcfServerOperation). Execution Time=1.32977794663847    9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.39    w3wp.exe (0x16A4)    0x1E34    SharePoint Foundation    Topology    e5mc    Medium    WcfSendRequest: RemoteAddress:
    'http://spserver:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/PWA.svc' Channel: 'Microsoft.Office.Project.Server.Interfaces.IPWA' Action: 'http://schemas.microsoft.com/office/project/server/webservices/PWA/ResourceReadUserSummariesAll' MessageId: 'urn:uuid:844ec823-8987-42b2-bd60-e9d33e17ba89'  
     9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.40    w3wp.exe (0x1830)    0x0984    SharePoint Foundation    Topology    e5mb    Medium    WcfReceiveRequest: LocalAddress:
    'http://spserver.company.com:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/PWA.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/office/project/server/webservices/PWA/ResourceReadUserSummariesAll' MessageId: 'urn:uuid:844ec823-8987-42b2-bd60-e9d33e17ba89'  
     9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.40    w3wp.exe (0x1830)    0x0984    SharePoint Foundation    Monitoring    nasq    Medium    Entering monitored
    scope (ExecuteWcfServerOperation)    9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.41    w3wp.exe (0x1830)    0x0984    SharePoint Foundation    Monitoring    b4ly    Medium    Leaving Monitored
    Scope (ExecuteWcfServerOperation). Execution Time=10.0093726996029    9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:43.70    w3wp.exe (0x16A4)    0x1E34    SharePoint Foundation    Monitoring    b4ly    Medium    Leaving Monitored
    Scope (Request (GET:https://sharepoint.company.com:443/pwa/_layouts/pwa/Admin/ManageUsers.aspx)). Execution Time=510.331620359571    9e5ce790-3f37-48c3-a1a4-fff4e338d5b4
    07/10/2014 08:14:44.13    w3wp.exe (0x1558)    0x15F4    Excel Services Application    Excel Calculation Services    8jg2    Medium    ResourceManager.PerformCleanup:
    Memory Manager: CurrentSize=528744448.    53fed7f1-cb9f-3737-0000-000050f7b00c
    07/10/2014 08:14:46.23    w3wp.exe (0x16A4)    0x21E0    SharePoint Foundation    Monitoring    nasq    Medium    Entering monitored
    scope (Request (GET:https://sharepoint.company.com:443/pwa/_layouts/PWA/Admin/AddModifyUser.aspx?returnLocation=0))    
    07/10/2014 08:14:46.23    w3wp.exe (0x16A4)    0x21E0    SharePoint Foundation    Logging Correlation Data    xmnv    Medium    Name=Request
    (GET:https://sharepoint.company.com:443/pwa/_layouts/PWA/Admin/AddModifyUser.aspx?returnLocation=0)    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:46.28    w3wp.exe (0x16A4)    0x21E0    SharePoint Foundation    Logging Correlation Data    xmnv    Medium    Site=/pwa  
     8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:46.31    w3wp.exe (0x16A4)    0x21E0    SharePoint Foundation    Topology    e5mc    Medium    WcfSendRequest: RemoteAddress:
    'http://spserver:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/PWA.svc' Channel: 'Microsoft.Office.Project.Server.Interfaces.IPWA' Action: 'http://schemas.microsoft.com/office/project/server/webservices/PWA/SecurityCheckUserPagePermission' MessageId: 'urn:uuid:0b0c9348-49aa-40fc-b5b8-409be0fb64ab'  
     8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:46.32    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Topology    e5mb    Medium    WcfReceiveRequest: LocalAddress:
    'http://spserver.company.com:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/PWA.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/office/project/server/webservices/PWA/SecurityCheckUserPagePermission' MessageId:
    'urn:uuid:0b0c9348-49aa-40fc-b5b8-409be0fb64ab'    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:46.32    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Monitoring    nasq    Medium    Entering monitored
    scope (ExecuteWcfServerOperation)    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:46.32    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Monitoring    b4ly    Medium    Leaving Monitored
    Scope (ExecuteWcfServerOperation). Execution Time=1.83626689984342    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:46.33    w3wp.exe (0x16A4)    0x21E0    SharePoint Foundation    Topology    e5mc    Medium    WcfSendRequest: RemoteAddress:
    'http://spserver:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/Security.svc' Channel: 'Microsoft.Office.Project.Server.Interfaces.ISecurity' Action: 'http://schemas.microsoft.com/office/project/server/webservices/Security/CheckUserGlobalPermission' MessageId:
    'urn:uuid:610e3e65-f190-4f09-9bd7-bdedc0294f06'    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:46.33    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Topology    e5mb    Medium    WcfReceiveRequest: LocalAddress:
    'http://spserver.company.com:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/Security.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/office/project/server/webservices/Security/CheckUserGlobalPermission' MessageId:
    'urn:uuid:610e3e65-f190-4f09-9bd7-bdedc0294f06'    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:46.33    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Monitoring    nasq    Medium    Entering monitored
    scope (ExecuteWcfServerOperation)    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:46.33    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Monitoring    b4ly    Medium    Leaving Monitored
    Scope (ExecuteWcfServerOperation). Execution Time=1.20350491473078    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:46.52    w3wp.exe (0x16A4)    0x21E0    SharePoint Foundation    Topology    e5mc    Medium    WcfSendRequest: RemoteAddress:
    'http://spserver:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/Project.svc' Channel: 'Microsoft.Office.Project.Server.Interfaces.IProject' Action: 'http://schemas.microsoft.com/office/project/server/webservices/Project/ReadServerListSeparator' MessageId: 'urn:uuid:79fd41f4-b21a-4c0e-b8ff-022a634722ea'  
     8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:46.71    w3wp.exe (0x1830)    0x0984    SharePoint Foundation    Topology    e5mb    Medium    WcfReceiveRequest: LocalAddress:
    'http://spserver.company.com:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/Project.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/office/project/server/webservices/Project/ReadServerListSeparator' MessageId:
    'urn:uuid:79fd41f4-b21a-4c0e-b8ff-022a634722ea'    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:46.71    w3wp.exe (0x1830)    0x0984    SharePoint Foundation    Monitoring    nasq    Medium    Entering monitored
    scope (ExecuteWcfServerOperation)    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:46.71    w3wp.exe (0x1830)    0x0984    SharePoint Foundation    Monitoring    b4ly    Medium    Leaving Monitored
    Scope (ExecuteWcfServerOperation). Execution Time=2.86349242711015    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:46.71    w3wp.exe (0x16A4)    0x21E0    SharePoint Foundation    Monitoring    b4ly    High    Leaving Monitored Scope
    (ExecuteWcfOperation:http://schemas.microsoft.com/office/project/server/webservices/Project/ReadServerListSeparator). Execution Time=192.754107016395    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:46.86    w3wp.exe (0x16A4)    0x21E0    SharePoint Foundation    Topology    e5mc    Medium    WcfSendRequest: RemoteAddress:
    'http://spserver:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/Admin.svc' Channel: 'Microsoft.Office.Project.Server.Interfaces.IAdmin' Action: 'http://schemas.microsoft.com/office/project/server/webservices/Admin/GetServerCurrency' MessageId: 'urn:uuid:05bc1abb-b84f-4624-a8c8-97ff5fec5128'  
     8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:46.86    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Topology    e5mb    Medium    WcfReceiveRequest: LocalAddress:
    'http://spserver.company.com:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/Admin.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/office/project/server/webservices/Admin/GetServerCurrency' MessageId: 'urn:uuid:05bc1abb-b84f-4624-a8c8-97ff5fec5128'  
     8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:46.86    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Monitoring    nasq    Medium    Entering monitored
    scope (ExecuteWcfServerOperation)    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:46.87    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Monitoring    b4ly    Medium    Leaving Monitored
    Scope (ExecuteWcfServerOperation). Execution Time=2.57434953325073    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:48.27    w3wp.exe (0x1558)    0x1A14    Excel Services Application    Excel Calculation Services    8jg2    Medium    ResourceManager.PerformCleanup:
    Disk Manager: CurrentSize=170852.    11c5f189-cb9f-3737-0000-000050f7b00c
    07/10/2014 08:14:48.58    w3wp.exe (0x16A4)    0x0A8C    SharePoint Foundation    Topology    e5mc    Medium    WcfSendRequest: RemoteAddress:
    'http://spserver:32843/3134a6073a474d49a4f6c790255e5237/MetadataWebService.svc' Channel: 'Microsoft.SharePoint.Taxonomy.IMetadataWebServiceApplication' Action: 'http://schemas.microsoft.com/sharepoint/taxonomy/soap/IDataAccessReadOnly/GetChanges' MessageId:
    'urn:uuid:974be790-09cc-4c85-ba78-002750c5e866'    
    07/10/2014 08:14:48.58    w3wp.exe (0x1558)    0x2094    SharePoint Foundation    Topology    e5mb    Medium    WcfReceiveRequest: LocalAddress:
    'http://spserver.company.com:32843/3134a6073a474d49a4f6c790255e5237/MetadataWebService.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/sharepoint/taxonomy/soap/IDataAccessReadOnly/GetChanges' MessageId: 'urn:uuid:974be790-09cc-4c85-ba78-002750c5e866'  
     3494407d-8a15-4988-9a00-e82b6bd1c016
    07/10/2014 08:14:48.58    w3wp.exe (0x1558)    0x2094    SharePoint Foundation    Monitoring    nasq    Medium    Entering monitored
    scope (ExecuteWcfServerOperation)    3494407d-8a15-4988-9a00-e82b6bd1c016
    07/10/2014 08:14:48.58    w3wp.exe (0x1558)    0x2094    SharePoint Server    Taxonomy    fuc5    Medium    MetadataWebServiceApplication.GetChanges
    called on 'Managed Metadata Service' starting.    3494407d-8a15-4988-9a00-e82b6bd1c016
    07/10/2014 08:14:48.58    w3wp.exe (0x1558)    0x2094    SharePoint Server    Taxonomy    fuc6    Medium    MetadataWebServiceApplication.GetChanges
    called on 'Managed Metadata Service' completed.    3494407d-8a15-4988-9a00-e82b6bd1c016
    07/10/2014 08:14:48.58    w3wp.exe (0x1558)    0x2094    SharePoint Foundation    Monitoring    b4ly    Medium    Leaving Monitored
    Scope (ExecuteWcfServerOperation). Execution Time=1.98935898277574    3494407d-8a15-4988-9a00-e82b6bd1c016
    07/10/2014 08:14:49.14    w3wp.exe (0x1558)    0x15F4    Excel Services Application    Excel Calculation Services    8jg2    Medium    ResourceManager.PerformCleanup:
    Memory Manager: CurrentSize=529596416.    53fed7f1-cb9f-3737-0000-000050f7b00c
    07/10/2014 08:14:49.19    w3wp.exe (0x0A64)    0x08B0    SharePoint Foundation    Topology    e5mc    Medium    WcfSendRequest:
    RemoteAddress: 'http://spserver:32843/3134a6073a474d49a4f6c790255e5237/MetadataWebService.svc' Channel: 'Microsoft.SharePoint.Taxonomy.IMetadataWebServiceApplication' Action: 'http://schemas.microsoft.com/sharepoint/taxonomy/soap/IDataAccessReadOnly/GetChanges'
    MessageId: 'urn:uuid:08359816-04b3-4d2c-b5ac-486aa21dbd2b'    
    07/10/2014 08:14:49.20    w3wp.exe (0x1558)    0x2094    SharePoint Foundation    Topology    e5mb    Medium    WcfReceiveRequest: LocalAddress:
    'http://spserver.company.com:32843/3134a6073a474d49a4f6c790255e5237/MetadataWebService.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/sharepoint/taxonomy/soap/IDataAccessReadOnly/GetChanges' MessageId: 'urn:uuid:08359816-04b3-4d2c-b5ac-486aa21dbd2b'  
     8afd4f08-409a-4728-bdee-140f948f7ae3
    07/10/2014 08:14:49.20    w3wp.exe (0x1558)    0x2094    SharePoint Foundation    Monitoring    nasq    Medium    Entering monitored
    scope (ExecuteWcfServerOperation)    8afd4f08-409a-4728-bdee-140f948f7ae3
    07/10/2014 08:14:49.20    w3wp.exe (0x1558)    0x2094    SharePoint Server    Taxonomy    fuc5    Medium    MetadataWebServiceApplication.GetChanges
    called on 'Managed Metadata Service' starting.    8afd4f08-409a-4728-bdee-140f948f7ae3
    07/10/2014 08:14:49.20    w3wp.exe (0x1558)    0x2094    SharePoint Server    Taxonomy    fuc6    Medium    MetadataWebServiceApplication.GetChanges
    called on 'Managed Metadata Service' completed.    8afd4f08-409a-4728-bdee-140f948f7ae3
    07/10/2014 08:14:49.20    w3wp.exe (0x1558)    0x2094    SharePoint Foundation    Monitoring    b4ly    Medium    Leaving Monitored
    Scope (ExecuteWcfServerOperation). Execution Time=1.07806997816762    8afd4f08-409a-4728-bdee-140f948f7ae3
    07/10/2014 08:14:50.89    OWSTIMER.EXE (0x1734)    0x0580    SharePoint Foundation    Monitoring    nasq    Medium    Entering monitored
    scope (Timer Job Search Health Monitoring - Trace Events)    c9d438fc-b6a3-499f-9709-8566b62cb5e0
    07/10/2014 08:14:50.89    OWSTIMER.EXE (0x1734)    0x0580    SharePoint Foundation    Monitoring    b4ly    Medium    Leaving Monitored
    Scope (Timer Job Search Health Monitoring - Trace Events). Execution Time=4.99169587196138    c9d438fc-b6a3-499f-9709-8566b62cb5e0
    07/10/2014 08:14:51.10    w3wp.exe (0x16A4)    0x21E0    SharePoint Foundation    Topology    e5mc    Medium    WcfSendRequest: RemoteAddress:
    'http://spserver:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/CustomFields.svc' Channel: 'Microsoft.Office.Project.Server.Interfaces.ICustomFields' Action: 'http://schemas.microsoft.com/office/project/server/webservices/CustomFields/ReadCustomFieldsByEntity'
    MessageId: 'urn:uuid:4de9e73a-ad47-4bab-891e-bd52c7d1446b'    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:51.22    w3wp.exe (0x1830)    0x0984    SharePoint Foundation    Topology    e5mb    Medium    WcfReceiveRequest: LocalAddress:
    'http://spserver.company.com:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/CustomFields.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/office/project/server/webservices/CustomFields/ReadCustomFieldsByEntity'
    MessageId: 'urn:uuid:4de9e73a-ad47-4bab-891e-bd52c7d1446b'    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:51.22    w3wp.exe (0x1830)    0x0984    SharePoint Foundation    Monitoring    nasq    Medium    Entering monitored
    scope (ExecuteWcfServerOperation)    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:51.22    w3wp.exe (0x1830)    0x0984    SharePoint Foundation    Monitoring    b4ly    Medium    Leaving Monitored
    Scope (ExecuteWcfServerOperation). Execution Time=3.70745443904183    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:51.23    w3wp.exe (0x16A4)    0x21E0    SharePoint Foundation    Monitoring    b4ly    High    Leaving Monitored Scope
    (ExecuteWcfOperation:http://schemas.microsoft.com/office/project/server/webservices/CustomFields/ReadCustomFieldsByEntity). Execution Time=120.598847060171    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:51.32    w3wp.exe (0x16A4)    0x21E0    SharePoint Foundation    Topology    e5mc    Medium    WcfSendRequest: RemoteAddress:
    'http://spserver:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/LookupTable.svc' Channel: 'Microsoft.Office.Project.Server.Interfaces.ILookupTable' Action: 'http://schemas.microsoft.com/office/project/server/webservices/LookupTable/ReadLookupTablesByUids' MessageId:
    'urn:uuid:b196f29b-6c62-48a4-921d-90bf91d78653'    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:51.43    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Topology    e5mb    Medium    WcfReceiveRequest: LocalAddress:
    'http://spserver.company.com:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/LookupTable.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/office/project/server/webservices/LookupTable/ReadLookupTablesByUids' MessageId:
    'urn:uuid:b196f29b-6c62-48a4-921d-90bf91d78653'    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:51.43    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Monitoring    nasq    Medium    Entering monitored
    scope (ExecuteWcfServerOperation)    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:51.44    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Monitoring    b4ly    Medium    Leaving Monitored
    Scope (ExecuteWcfServerOperation). Execution Time=17.8209800407594    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:51.44    w3wp.exe (0x16A4)    0x21E0    SharePoint Foundation    Monitoring    b4ly    High    Leaving Monitored Scope
    (ExecuteWcfOperation:http://schemas.microsoft.com/office/project/server/webservices/LookupTable/ReadLookupTablesByUids). Execution Time=128.768041748323    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:51.60    w3wp.exe (0x16A4)    0x21E0    SharePoint Foundation    Topology    e5mc    Medium    WcfSendRequest: RemoteAddress:
    'http://spserver:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/Calendar.svc' Channel: 'Microsoft.Office.Project.Server.Interfaces.ICalendar' Action: 'http://schemas.microsoft.com/office/project/server/webservices/Calendar/ListCalendars' MessageId: 'urn:uuid:4f766fee-c7d6-4a41-9a4a-cfd785f9fd81'  
     8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:51.70    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Topology    e5mb    Medium    WcfReceiveRequest: LocalAddress:
    'http://spserver.company.com:32843/ca7243dbfa1e40e189c28ca8f4e1dbad/PSI/Calendar.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/office/project/server/webservices/Calendar/ListCalendars' MessageId: 'urn:uuid:4f766fee-c7d6-4a41-9a4a-cfd785f9fd81'  
     8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:51.70    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Monitoring    nasq    Medium    Entering monitored
    scope (ExecuteWcfServerOperation)    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26
    07/10/2014 08:14:51.70    w3wp.exe (0x1830)    0x18F8    SharePoint Foundation    Monitoring    b4ly    Medium    Leaving Monitored
    Scope (ExecuteWcfServerOperation). Execution Time=3.05206387962716    8ddb50f2-6ae7-4a68-a2a4-6bbddb67ac26

  • Error Message while Approving Tasks in Project Server 2010

    Hi All,
    While performing Tasks approvals in MS Project 2010 I am getting below error message:
    An Error Occured while processing one or more items. This was caused by one of the following:
    A timesheet job is failed and blocking coorelation in the queue.
    The approval item no longer exists or has already been approved
    The host server is unreachable.
    Following are the details of the error message found in Event Viewer:
    Standard Information:PSI Entry Point:
    Project User: <domain>\<windowsuserid>
    Correlation Id: 417dce51-740f-46f0-8f1e-182b4e0c635c
    PWA Site URL: http://<servername>/<projectserver>/
    SSP Name: spsusfiprojwebappservice
    PSError: GeneralQueueCorrelationBlocked (26005)
    Operation could not completed since the Queue Correlated Job Group is blocked. Correlated Job Group ID is: 2ae5d5f9-b554-4a44-93f0-f815d36976cd. The job ID of the affected job is: 82dce1fb-be71-4c4a-8d16-4516ea8c887d. The job type of the affected job is:
    TimesheetReview. You can recover from the situation by unblocking or cancelling the blocked job. To do that, go to PWA, navigate to 'Server Settings -> Manage Queue Jobs', go to 'Filter Type' section, choose 'By ID', enter the 'Job Group ID' mentioned in
    this error and click the 'Refresh Status' button at the bottom of the page. In the resulting set of jobs, click on the 'Error' column link to see more details about why the job has failed and blocked the Correlated Job Group. For more troubleshooting you can
    look at the trace log also. Once you have corrected the cause of the error, select the affected job and click on the 'Retry Jobs' or 'Cancel Jobs' button at the bottom of the page.
    In Server Settings>Manage Queues>Erro Details following information is listed
    General
    Timesheet:
    TimesheetIncorrectMode (3204). Details: id='3204' name='TimesheetIncorrectMode' uid='e53139e1-66cb-4b4a-a948-cbeda21340b8' mode='1'.
    Queue:
    GeneralQueueJobFailed (26000) - TimesheetSubmit.SubmitTimesheetMessage. Details: id='26000' name='GeneralQueueJobFailed' uid='4c09d375-cad0-4b61-be16-49abbdc149e4' JobUID='b3737c2a-11f4-4799-9fd7-1d018e4c73d1' ComputerName='JSIDBWPRJA02' GroupType='TimesheetSubmit'
    MessageType='SubmitTimesheetMessage' MessageId='1' Stage=''. For more details, check the ULS logs on machine JSIDBWPRJA02 for entries with JobUID b3737c2a-11f4-4799-9fd7-1d018e4c73d1.
    Background:
    We are gearing up to upgrade our Project Server from 2003 to 2010; as part of this process we have installed MS Project Server 2010 on our dev environment. We created Test Project plans and assigned ourselves (we admins) to these plans and all of us have
    admin privileges.

    Hi, Can you give a bit more detail on how your generating the task approval. Are you going into myTasks and doing self assignment to your test project plans or are you generating these approvals via outlook or are you updating a timesheet and sending status?
    If you're using your timesheet have you created all your timesheet periods within server settings, time and task management...Donald R. Landry

  • How to add total of actual in My work- Task in project server 2010.

    Hello all, 
    I need to add total of actual in My work->Task in project server 2010.
    How can I achieve it?
    Your help is appreciated. 

    Hi Rohit,
    Unfortunately, there is no configuration which allows having the actual total work in "my tasks" page. Note that you have the total for the period for each assignment in the column next to the "work" column. In case it doesn't suit
    your need, I'd suggest to propose for example a simple report, otherwise a development could be quite complex and time consuming.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • Problem: Task completion sync back from Exchange 2010 to Project Server 2010

    I have new installation of PS 2010 and Exchange 2010 (one server holds all roles including CAS).
    For sync between PS and EX 2010, I following the technet article Configure Project Server 2010 to work with Exchange Server 2010 at http://technet.microsoft.com/en-us/library/ff468700%28office.14%29.aspx (yes I read the second part on Impersonation, too).
    Basically I followed the video and opted for "Impersonation for all users".
    I got tasks appear in resources outlook "Tasks" folder no problem. They appeared instantly after project is published. But when the resource update the completion in outlook, it failed to update the Project server.
    The applog on Exchange server has the following events:
    A notification for subscription [IABmaWxiZXJ0Lm1zYy5hbHR1cmFzYW5hbHl0aWNzLmNvbRAAAABpsVspLo+TSpth0iMukr+TjiFq73wS0Qg=] against endpoint [http://MyPSserver/PWA/_vti_bin/PSI/ExchangeSync.asmx] couldn't be sent. (Send attempts: 2) Details: WebException:
    The remote server returned an error: (500) Internal Server Error. StatusCode: InternalServerError Internal Server Error    at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult)
       at Microsoft.Exchange.Services.Core.NotificationServiceClient.HandleResponse(IAsyncResult responseAsyncResult)
    After 8 unsuccessful attempts to send a notification for subscription [IABmaWxiZXJ0Lm1zYy5hbHR1cmFzYW5hbHl0aWNzLmNvbRAAAABaEEJ+4ahFSY6IVGcSZ7/m4kLgKCES0Qg=] against endpoint [http://MyPSserver/PWA/_vti_bin/PSI/ExchangeSync.asmx], the subscription has
    been removed. Details: WebException: The remote server returned an error: (500) Internal Server Error. StatusCode: InternalServerError Internal Server Error    at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult)
       at Microsoft.Exchange.Services.Core.NotificationServiceClient.HandleResponse(IAsyncResult responseAsyncResult
    The W3C log on PS app server has the following related entries (401 and 500 errors. 10.0.0.76 is Exch server. 10.0.0.77 is the PS app server):
    2014-03-20 18:12:39 10.0.0.77 POST /PWA/_vti_bin/PSI/ExchangeSync.asmx - 80 - 10.0.0.76 - 401 2 5 0
    2014-03-20 18:12:39 10.0.0.77 POST /PWA/_vti_bin/PSI/ExchangeSync.asmx - 80 - 10.0.0.76 - 401 1 2148074254 15
    2014-03-20 18:12:39 10.0.0.77 POST /_vti_bin/PSI/ExchangeSync.asmx - 80 MyDomain\MyExchServer$ 10.0.0.76 - 500 0 0 31
    2014-03-20 18:12:39 10.0.0.77 POST /PWA/_vti_bin/PSI/ExchangeSync.asmx - 80 - 10.0.0.76 - 401 2 5 0
    2014-03-20 18:12:39 10.0.0.77 POST /PWA/_vti_bin/PSI/ExchangeSync.asmx - 80 - 10.0.0.76 - 401 1 2148074254 0
    2014-03-20 18:12:39 10.0.0.77 POST /_vti_bin/PSI/ExchangeSync.asmx - 80 MyDomain\MyExchServer$ 10.0.0.76 - 500 0 0 31
    2014-03-20 18:12:39 10.0.0.77 POST /PWA/_vti_bin/PSI/ExchangeSync.asmx - 80 - 10.0.0.76 - 401 2 5 0
    2014-03-20 18:12:39 10.0.0.77 POST /PWA/_vti_bin/PSI/ExchangeSync.asmx - 80 - 10.0.0.76 - 401 1 2148074254 0
    2014-03-20 18:12:39 10.0.0.77 POST /_vti_bin/PSI/ExchangeSync.asmx - 80 MyDomain\MyExchServer$ 10.0.0.76 - 500 0 0 31
    2014-03-20 18:12:41 10.0.0.77 POST /PWA/_vti_bin/PSI/ExchangeSync.asmx - 80 - 10.0.0.76 - 401 2 5 0
    2014-03-20 18:12:41 10.0.0.77 POST /PWA/_vti_bin/PSI/ExchangeSync.asmx - 80 - 10.0.0.76 - 401 1 2148074254 0
    2014-03-20 18:12:41 10.0.0.77 POST /_vti_bin/PSI/ExchangeSync.asmx - 80 MyDomain\MyExchServer$ 10.0.0.76 - 500 0 0 62
    2014-03-20 18:28:39 10.0.0.77 POST /PWA/_vti_bin/PSI/ExchangeSync.asmx - 80 - 10.0.0.76 - 401 2 5 15
    2014-03-20 18:28:39 10.0.0.77 POST /PWA/_vti_bin/PSI/ExchangeSync.asmx - 80 - 10.0.0.76 - 401 1 2148074254 0
    2014-03-20 18:28:39 10.0.0.77 POST /_vti_bin/PSI/ExchangeSync.asmx - 80 MyDomain\MyExchServer$ 10.0.0.76 - 500 0 0 46
    2014-03-20 18:28:39 10.0.0.77 POST /PWA/_vti_bin/PSI/ExchangeSync.asmx - 80 - 10.0.0.76 - 401 2 5 15
    2014-03-20 18:28:39 10.0.0.77 POST /PWA/_vti_bin/PSI/ExchangeSync.asmx - 80 - 10.0.0.76 - 401 1 2148074254 0
    2014-03-20 18:28:39 10.0.0.77 POST /_vti_bin/PSI/ExchangeSync.asmx - 80 MyDomain\MyExchServer$ 10.0.0.76 - 500 0 0 31
    2014-03-20 18:28:39 10.0.0.77 POST /PWA/_vti_bin/PSI/ExchangeSync.asmx - 80 - 10.0.0.76 - 401 2 5 0
    2014-03-20 18:28:39 10.0.0.77 POST /PWA/_vti_bin/PSI/ExchangeSync.asmx - 80 - 10.0.0.76 - 401 1 2148074254 0
    2014-03-20 18:28:39 10.0.0.77 POST /_vti_bin/PSI/ExchangeSync.asmx - 80 MyDomain\MyExchServer$ 10.0.0.76 - 500 0 0 15
    2014-03-20 18:28:41 10.0.0.77 POST /PWA/_vti_bin/PSI/ExchangeSync.asmx - 80 - 10.0.0.76 - 401 2 5 15
    2014-03-20 18:28:41 10.0.0.77 POST /PWA/_vti_bin/PSI/ExchangeSync.asmx - 80 - 10.0.0.76 - 401 1 2148074254 0
    2014-03-20 18:28:41 10.0.0.77 POST /_vti_bin/PSI/ExchangeSync.asmx - 80 MyDomain\MyExchServer$ 10.0.0.76 - 500 0 0 15
    I am new to PS 2010. Help is appreciated. Thanks.

    Here are the errors found in Project Queues:
    ExchangeSyncExchangeSubscriptionUpdateForUserFailed (40511). Details: id='40511' name='ExchangeSyncExchangeSubscriptionUpdateForUserFailed' uid='ef501cc2-9305-47b5-92b3-021e3b41d1b5' teamMemberUid='b8f2e0cd-9882-4677-be61-b2780b32bae5' exception='System.NullReferenceException:
    Object reference not set to an instance of an object. at Microsoft.Office.Project.Server.ExchangeSync.ExchangeSyncUtil.UpdateExchangeSubscription(Guid resourceUid, SubscriptionContext context) at Microsoft.Office.Project.Server.ExchangeSync.ExchangeSyncUtil.UpdateExchangeSubscription(Guid
    resourceUid) at Microsoft.Office.Project.Server.ExchangeSync.ExchangeSubscriptionRefreshProcessor.Refresh(PlatformContext ctx)'.
    ReportingProjectChangeMessageFailed (24006) - The INSERT statement conflicted with the FOREIGN KEY constraint "FK_MSP_EpmAssignment_ResourceOwnerUID". The conflict occurred in database "ProjectServer_Reporting", table "dbo.MSP_EpmResource", column 'ResourceUID'.
    The statement has been terminated.. Details: id='24006' name='ReportingProjectChangeMessageFailed' uid='ef4e51a1-8cb2-4ec2-bfc4-530f1f34cd8c' QueueMessageBody='Project UID='2668bb26-5c23-42ce-843a-fa49feadba05'. PublishType='ProjectPublish'' Error='The INSERT
    statement conflicted with the FOREIGN KEY constraint "FK_MSP_EpmAssignment_ResourceOwnerUID". The conflict occurred in database "ProjectServer_Reporting", table "dbo.MSP_EpmResource", column 'ResourceUID'. The statement has been terminated.'.
    ReportingProjectChangeMessageFailed (24006) - The INSERT statement conflicted with the FOREIGN KEY constraint "FK_MSP_EpmAssignment_ResourceOwnerUID". The conflict occurred in database "ProjectServer_Reporting", table "dbo.MSP_EpmResource", column 'ResourceUID'.
    The statement has been terminated.. Details: id='24006' name='ReportingProjectChangeMessageFailed' uid='0b88178b-2e45-41af-a85f-8c5590e9c3e7' QueueMessageBody='Project UID='2668bb26-5c23-42ce-843a-fa49feadba05'. PublishType='ProjectPublish'' Error='The INSERT
    statement conflicted with the FOREIGN KEY constraint "FK_MSP_EpmAssignment_ResourceOwnerUID". The conflict occurred in database "ProjectServer_Reporting", table "dbo.MSP_EpmResource", column 'ResourceUID'. The statement has been terminated.'.
    ReportingProjectChangeMessageFailed (24006) - The INSERT statement conflicted with the FOREIGN KEY constraint "FK_MSP_EpmAssignment_ResourceOwnerUID". The conflict occurred in database "ProjectServer_Reporting", table "dbo.MSP_EpmResource", column 'ResourceUID'.
    The statement has been terminated.. Details: id='24006' name='ReportingProjectChangeMessageFailed' uid='0d7421f6-2579-4656-b956-d50ecc7f5f1c' QueueMessageBody='Project UID='2668bb26-5c23-42ce-843a-fa49feadba05'. PublishType='ProjectPublish'' Error='The INSERT
    statement conflicted with the FOREIGN KEY constraint "FK_MSP_EpmAssignment_ResourceOwnerUID". The conflict occurred in database "ProjectServer_Reporting", table "dbo.MSP_EpmResource", column 'ResourceUID'. The statement has been terminated.'.
    ReportingProjectChangeMessageFailed (24006) - The INSERT statement conflicted with the FOREIGN KEY constraint "FK_MSP_EpmAssignment_ResourceOwnerUID". The conflict occurred in database "ProjectServer_Reporting", table "dbo.MSP_EpmResource", column 'ResourceUID'.
    The statement has been terminated.. Details: id='24006' name='ReportingProjectChangeMessageFailed' uid='3456b70e-fe16-4b3a-ab66-f2a5237fbaeb' QueueMessageBody='Project UID='2668bb26-5c23-42ce-843a-fa49feadba05'. PublishType='ProjectPublish'' Error='The INSERT
    statement conflicted with the FOREIGN KEY constraint "FK_MSP_EpmAssignment_ResourceOwnerUID". The conflict occurred in database "ProjectServer_Reporting", table "dbo.MSP_EpmResource", column 'ResourceUID'. The statement has been terminated.'.
    ReportingProjectChangeMessageFailed (24006) - The INSERT statement conflicted with the FOREIGN KEY constraint "FK_MSP_EpmAssignment_ResourceOwnerUID". The conflict occurred in database "ProjectServer_Reporting", table "dbo.MSP_EpmResource", column 'ResourceUID'.
    The statement has been terminated.. Details: id='24006' name='ReportingProjectChangeMessageFailed' uid='fc78474a-bf5c-422c-a209-cb79e3201e38' QueueMessageBody='Project UID='2668bb26-5c23-42ce-843a-fa49feadba05'. PublishType='ProjectPublish'' Error='The INSERT
    statement conflicted with the FOREIGN KEY constraint "FK_MSP_EpmAssignment_ResourceOwnerUID". The conflict occurred in database "ProjectServer_Reporting", table "dbo.MSP_EpmResource", column 'ResourceUID'. The statement has been terminated.'.
    ReportingProjectChangeMessageFailed (24006) - The INSERT statement conflicted with the FOREIGN KEY constraint "FK_MSP_EpmAssignment_ResourceOwnerUID". The conflict occurred in database "ProjectServer_Reporting", table "dbo.MSP_EpmResource", column 'ResourceUID'.
    The statement has been terminated.. Details: id='24006' name='ReportingProjectChangeMessageFailed' uid='d2f4b313-0c21-4a2c-b8a7-f6bd7aef13fe' QueueMessageBody='Project UID='2668bb26-5c23-42ce-843a-fa49feadba05'. PublishType='ProjectPublish'' Error='The INSERT
    statement conflicted with the FOREIGN KEY constraint "FK_MSP_EpmAssignment_ResourceOwnerUID". The conflict occurred in database "ProjectServer_Reporting", table "dbo.MSP_EpmResource", column 'ResourceUID'. The statement has been terminated.

  • Project Server 2010 - Assigned tasks not visible in PWA

    Hi,
    When I enter an issue on a project site, the assigned issue is not visible in the PWA under Issues & Risks.
    Based on this link (http://social.technet.microsoft.com/Forums/en-US/f5abd024-3c9a-47f8-a7cb-7743fafebf2b/project-server-2010-cannot-see-assigned-issues-and-risks) I have tried to solve it however without success.
    In the queue jobs I have the following error details:
    General
    Reporting Wss list sync failed:
    ReportingWssSyncListFailed (24018) - 1100. Details: id='24018' name='ReportingWssSyncListFailed' uid='6c8a0779-3c9f-4d25-a81c-04d69d6fce1d' SPListType='2136b7a0-03b9-4547-8b2d-c66497accd08' Error='1100'. 
    ReportingWssSyncListFailed (24018) - 1101. Details: id='24018' name='ReportingWssSyncListFailed' uid='1573855e-b176-44cc-bf92-8959d167f8fe' SPListType='2136b7a0-03b9-4547-8b2d-c66497accd08' Error='1101'.....................................
    Reporting message processor failed:
    ReportingWSSSyncMessageFailed (24016) - RDS failed while trying to sync one or more SP lists. The RDS queue message will be retried.. Details: id='24016' name='ReportingWSSSyncMessageFailed' uid='839ed0b8-6b8c-4bd5-bfbe-540349c1f27a' QueueMessageBody='ProjectUID='2136b7a0-03b9-4547-8b2d-c66497accd08'.
    ForceFullSync='False'. SynchronizationType='All'' Error='RDS failed while trying to sync one or more SP lists. The RDS queue message will be retried.'. 
    ReportingWSSSyncMessageFailed (24016) - RDS failed while trying to sync one or more SP lists. The RDS queue message will be retried.. Details: id='24016' name='ReportingWSSSyncMessageFailed' uid='b0e773af-5cc3-4965-85b3-a4d8050e86f5' QueueMessageBody='ProjectUID='2136b7a0-03b9-4547-8b2d-c66497accd08'.
    ForceFullSync='False'. SynchronizationType='All'' Error='RDS failed while trying to sync one or more SP lists. The RDS queue message will be retried.'............................................
    Queue:
    GeneralQueueJobFailed (26000) - ReportingWSSSync.WSSSyncMessageEx. Details: id='26000' name='GeneralQueueJobFailed' uid='07edaa28-647c-4dee-974e-06f47e4b4e40' JobUID='899bd048-2c19-4176-bd6c-1b45b8379a40' ComputerName='NLHGOL7FPR' GroupType='ReportingWSSSync'
    MessageType='WSSSyncMessageEx' MessageId='1' Stage=''. For more details, check the ULS logs on machine NLHGOL7FPR for entries with JobUID 899bd048-2c19-4176-bd6c-1b45b8379a40.
    As I understand this error could be due to a mismatch between the fields that are 'standard' in the project server and fields that are op the project site.
    If the reporting database could not sync, will consequently also the issues not be visible on the PWA??
    Any suggestions how to solve this?
    Regards,
    Dirk

    Hello,
    Yes, if the Issues & Risks are not being synchronised to the Reporting database then this will impact the issues & risks appearing on the PWA homepage reminders web part. See this post on how the data gets to the Reminders web part in Project
    Server 2010:
    http://pwmather.wordpress.com/2012/07/13/projectserver-active-issues-and-risks-on-pwa-reminders-web-part-ps2010-sp2010-sharepoint/
    The error you are seeing is probably caused by the default Issue or Risks columns being edited or removed from the Issues or Risks lists. It might be worth taking a look at this post:
    http://pwmather.wordpress.com/2011/06/20/project-server-2010-project-site-default-fields/
    Paul
    Paul Mather | Twitter |
    http://pwmather.wordpress.com | CPS

  • Line Classification Reporting in Project Server 2010

    I’m trying to understand the Line Classification (LC) functionality and reporting in Project Server 2010 having not used this before. 
    I have added a new LC titled ‘Billable’ to the system and then added a task to my timesheet with the new Billable LC and then logged time to both the Standard and Billable LCs of the same task (not sure why MS have decided to call this Billing Category
    – rather confusing).  I was expecting that when the timesheet was approved the hours in both the Standard and Billable LCs would be combined and the total show-up on the task in the MS Project Professional plan but this appears not to be
    the case, only the hours logged to the Standard LC show in the project plan. 
    Is this correct or am I missing a step to get the new LC hours into reporting?
    Thank you.

    Hi Jane,
    I'll try to be more explicit. Hours logged against other LC than standard will NOT be lost, they will simply not be pushed to the project plan. Only those against standard LC will be pushed as actual work after PM approval.
    That being said, ALL actuals regardless of the LC will be in the Reporting DB and OLAP cubes for example. Meaning that using for example one of the 3 timehseet OLAP cubes, you'll be able to report actual hours against LC, periods, projects, resources, managers...
    Hope this helps,
    Guillaume Rouyre, MBA, MCP, MCTS |

  • Project Server 2010 - Change Status Manager

    End Goal: We would like to perform this change via SQL statement - which I believe I have  I feel like I am missing something and not sure what it is.
    Background:  We migrated from a different product to Project Server 2010, while our team members were assisting users to move their projects from the old application to Project 2010 they did not realize their names would appear as status
    managers.
    The quick solution would be to tell the owners of the projects to change the information themselves (republish or go in themselves and change every line); however we feel this can be cumbersome and too much work due to having hundreds of projects and there
    are thousands of fields that need to be modified.  I can quickly accomplish what I want with an UPDATE command and be done with it (no user involvement). 
    What I am running into in my test environment is that I can modify the fields (query below) to the appropriate status manager, but I cannot get the changes to appear in Project Professional - it still shows the old value.
    I have used the following command to change the Status Manager to the Project Owner (I'm new to SQL, and we no longer have a DBA - so if my code isnt the greatest...I'll fix it)
    USE ProjectServer_ReportingUPDATE MSP_EpmTaskSET TaskStatusManagerUID = MSP_EpmProject.ProjectOwnerResourceUIDFROM MSP_EpmProjectWHERE MSP_EpmTask.ProjectUID = MSP_EpmProject.ProjectUID
    This modifies all the values correctly - Project Owners become the Status Manager in SQL
    Question: Is there something I am missing or can do OR I am not doing to make this new value show up? Is there a better way to do this from an administrative point of view, with no customer/user interaction?
    Your help is greatly appreciated
    Thank You
    kbwrecker

    Merely my personal opinion having been a Project Server 2010 admin in a medium-sized corporation:
    I think you are going to seriously do some damage if you go about trying to modify SQL tables behind Project Server's back. There are a LOT of operations that go into a simple "publish" and I doubt that the minor changes you want to make will account for
    all of them. Are you confident you're adjusting all of the values necessary? You may have a detrimental impact on in-flight approvals, timesheets, projects, tasks, assignments.. There is just far too much IMO.
    Believe me, I know it is not an ideal solution to have the business make their own adjustments. However sometimes it is just what has to be done. My vote is to craft brief instructions and send them out to the PMs. It's easy to do, they can change one row
    and then drag the field down like in Excel to edit all the rest; it's a 1-minute operation, max.
    Due to the nature of the field, (not being something you can edit via PWA, and even in Project Pro it only allows you to change it to yourself or another current Status Mgr) I think you'll have a hard time scripting this one via macro etc.. However if you
    do find a way, seriously keep in mind your scope and don't edit them all at once, it will need to kick off publishes and check-ins for all the affected projects.
    Good luck!

  • Project Server 2010 PWA Provisioning Error - System.UnauthorizedAccessException: Access is denied.

    Hi,
    When migrating from a Prod Environment to a Test Environment using the Project Server 2010 5 Database backup and restore process (actually 6 DB's with the Project Sites DB), upon encountering a failure during provisioning the PWA Instance, we get the errors listed
    at the base of this posting in our Event Logs.
    To clarify what we have done already, we have:
    1. Backed up the 6 databases from the Source Environment.
    2. Removed the existing PWA_Content and PWS_Content (Project Sites) databases from the Target Environment Farm.
    3. Restored the 6 databases in the Target Environment.
    4. Given the SP Farm Service Account 'db_owner' rights to each of the 6 restored databases.
    5. Added the PWA_Content and PWS_Content databases  (exact same names) to the Target Environment.
    6. Locked down (offline/stopped), all of the SharePoint Content databases in the Farm except for the PWA_Content database.
    7. Run the PWA Provisioning process from the 'Project Server' SharePoint Service in Central Admin.
    It is during the PWA provisioning that we encounter these errors.
    As the Target Environment is for Test/Dev purposes, the SP Farm Service Account is setup to support all of the SharePoint Farm Services, is in the Local Admin Group of each of the Servers (App, WFE and DB), and is actually in the sysadmin
    role on the DB Server.
    Any suggestions on what is causing this denied access situation would be most appreciated.
    Cheers,
    Wayne
    Event Log Entries:
    ============================================
    Log Name:      Application
    Source:        Microsoft-SharePoint Products-Project Server
    Date:          1/22/2014 2:47:34 PM
    Event ID:      6971
    Task Category: Provisioning
    Level:         Error
    Keywords:     
    User:          ACCOUNTS\svc_psfarm
    Computer:      SERVER.accounts.domain.com
    Description:
    Failed to provision site PWA with error: Microsoft.Office.Project.Server.Administration.ProvisionException: Membership synchronization failed. ---> System.UnauthorizedAccessException: Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))
       at Microsoft.SharePoint.Library.SPRequest.AddRoleDef(String bstrUrl, String bstrName, String bstrDescription, Boolean bHidden, Int32 lRoleOrder, UInt64 iPermMask, Byte iType, Int32 lRoleDefID)
       at Microsoft.SharePoint.SPRoleDefinitionCollection.AddCore(SPRoleDefinition role)
    etc....
    Failed to create the Report Center web (Exception: PSI Entry Point:
    Project User: DOMAIN\svc_psfarm Correlation Id: c0a30b18-46e4-4447-b469-f8fd3bb1490a
    PWA Site URL: http://pstest2010/PWA
    SSP Name: Project Server
    PSError: NoError (0))
    Failed to grant 'DOMAIN\svc_psfarm' access to web application 'SPWebApplication Name=Portal'.
    Error: System.Security.SecurityException: Access denied.  Only machine administrators are allowed to create administration service job definitions of type: Microsoft.SharePoint.Administration.SPUpdateWorkerProcessGroup, Microsoft.SharePoint, Version=14.0.0.0,
    Culture=neutral, PublicKeyToken=71e9bce111e9429c.
       at Microsoft.SharePoint.Administration.SPAdministrationServiceJobDefinition..ctor(String name, SPService service, SPServer server, SPJobLockType lockType)
       at Microsoft.SharePoint.Administration.SPUpdateWorkerProcessGroup..ctor(SPTimerService timerService, String[] loginsToAdd, String[] loginsToRemove)
       at Microsoft.SharePoint.Administration.SPWebApplication.GrantAccessToProcessIdentity(String username, SPPolicyRoleType policyRole)
       at Microsoft.Office.Project.Server.Administration.PsiServiceApplication.GrantAccessToWebApp(List`1 webApps, String userName) The Zone of the assembly that failed was: MyComputer

    Is the Test and Production in the same domain. If they are not, then the SIDs associated with the SQL accounts may look the same but they are not.  At times, I have had to recreated accounts when in different domains.
    I would also use PowerShell cmdlets and see if it finds any issues, such as Test-SPContentDatase.. Validate the SharePoint content databases, because if not setup properly the Provisioning will fail.
    Also check these properties.
    $web=get-spweb http://prodproj01/pwa
    $Web.AllProperties[“PWAURL”] ### see what the value is.. you may have to blank it out, specially if it is pointing to a different URL
    Here is how to fix.
    $Web.AllProperties[“PWAURL”]=””
    $web.Update()
    Michael Wharton, MVP, MBA, PMP, MCT, MCTS, MCSD, MCSE+I, MCDBA
    Website http://www.WhartonComputer.com
    Blog http://MyProjectExpert.com contains my field notes and SQL queries

  • Project Server 2010 - Modification date and name of the person who made the last change in the project

    Hello everybody
    I'm with a doubt.
    I got in the business
    environment Project Server 2010 and
    would like to get the publication date,modification
    date and name
    of the person who made
    the last change in
    the project. It is possible
    to doby the native
    resources or is
    there any query in
    SQL Server to perform a
    query of this information.
    Thank you.
    Obrigado por contactar o fórum Microsoft Technet!

    Hi Hezequias,
    You can get the ProjectModifiedDate column in MSP_EPMProject_userView in the Reporting DB where you can
    get the data based on the projectUID. 
    The "last saved" date in the draft DB (be aware that querying in the draft DB is not supported by MS).
    For the "last modified by", I think it is not stored in any place.
    But you can develop custom code upon publishing the project (Event BeforePublish), writing the current
    date and username automatically into a custom enterprise field.
    Hope this helps,
    Guillaume Rouyre, MBA, MCP, MCTS |

Maybe you are looking for

  • About dunning form

    Hello expert, following is the standard description. In Customizing Financial Accounting->Accounts Receivable and Accounts Payable->Business Transactions->Dunning->Printout the documentation says "Note that you can define dunning forms using either S

  • Date field in DD.MM.YYYY format printing as MM.DD.YYYY

    HI all, There is a DATE field FKDAT in an invoice whose value is in DD.MM.YYYY format (01.07.2010). In the print program, this value is being passed into a CHAR field. However, when it gets printed it prints in MM.DD.YYYY format (07.01.2010). I have

  • "ORA-24344: success with compilation error" in beginDDL

    Hello, I'm facing a really strange problem. When i try to use dbms_wm.beginDDL in one of my versioned tables, i get the error: ORA-24344: success with compilation error ORA-06512: "WMSYS.LT", line 12178 ORA-06512: line 2 I just get the error if i run

  • Does UNI port drop tunneled L2 PDUs with dst MAC 01-00-0c-cd-cd-d0 ?

    Hi, Im trying to understand the correct behaviour for the UNI port and l2 tunelling on the ME3400E switch running as a layer2 device. No layer3/mpls on it.   In the setup like below, ME3400E#1 UNI facing port G0/4 has 'dot1q and l2-protocol tunnel' e

  • Distributed Builds errors

    Hello, Sometimes when try compile project via Distributed Builds have error - internal compiler error: Segmentation fault have 4 machines with one config: - mac mini 3.1 - mac os 10.6.2 - xcode 3.2.1 + iphone sdk 3.1.3 if build it several time, then