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!

Similar Messages

  • Error when navigating to the PWA root site for Project Server 2010

    I received a nice Happy New Year from my Project Server 2010 today. I tried to navigate to the root site and received the following error.
    Error
    The base type 'Microsoft.Office.Project.PWA.PJBaseWebPartPage' is not allowed for this page. The type is
    not registered as safe.
    Troubleshoot
    issues with Microsoft SharePoint Foundation.
    Correlation ID: b1898d3e-5d41-4ed4-9466-1d7775714293
    Date and Time: 1/3/2012 10:54:53 AM
    I did some searching and found that it could be one of 2 things
    1.      
    App Pool security
    2.      
    Custom Master page.
    All the sub-sites seem to work fine, so I went with option 2. I changed the Master page of the root site back to v4.master and everything works fine again.
    So far the only solution I found to allow for using a Custom master page is to modify the web.config as suggested here:
    http://jimecox.wordpress.com/2011/05/03/project-server-2010-changing-master-page/
    My custom master was working fine for the past 6 months, so I’m not sure why I need to make this new update.
    Anyone else run into this recently with another fix? The changes seem to be opening the security on the Project web app a bit or am I wrong?
    Thank you in Advance!

    Looks like I fixed this by changing the Master page back to the OOTB version v4.master here:
    https://<pwa url>/_Layouts/ChangeSiteMasterPage.aspx
    Then I navigated to the PWA root site.
    https://<pwa url>/default.aspx
    Finally changed the master page back to my custom one. Error gone!

  • 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 |

  • Need solution to make changes in existing project sites in Project Server 2010 environment

    Dear Folks,
    Hope you all are doing good and ready to give a way for this requirement. :)
    In project server 2010 environment, I am using InfoPath documents library, Issues, Risks etc in each and every project sites.
    Say, after creation of 100 projects/project sites, I have got a requirement to make some changes in the InfoPath document library and in Issues, Risks list, so I have decided to use the following solution which is actually weird:
    Make the changes in InfoPath document library, Issues/Risks list for 1 of the project site and save that site as template and associate it with running EPT.
    Then, delete the existing project sites (after taking backup) and start recreating it from PWA/Server Settings/ Operational Policies/ Project Sites, so that it will take the latest template. But, seems like it is time taking and handy and actually it's not
    working for some of the projects.
    Request all of you to provide some solution for this.
    Ask more, if my explanation is not clear.
    Regards,
    Shravan

    Hello,
    Regarding mass deleting and recreating Project Sites via the PSI, firstly delete the project sites then run the following PowerShell script to bulk create project sites:
    https://gallery.technet.microsoft.com/Bulk-create-Server-Sites-784f7b29
    I have got a script that bulk deletes projects but this is not published as this could be a dangerous script to run if you did know what to update etc. To give you an idea of how to delete project sites via the PSI see a code snippet below:
    $EPMTYGUID = [system.guid]::empty
    $projectOwnerID = 'd6a0a720-12ac-e211-93f9-00155d153dd4'
    $ProjectList = $svcPSProxy.ReadProjectStatus("$EPMTYGUID","PublishedStore","", "0").Project | format-table proj_uid -hidetableheaders | out-string -stream
    foreach ($projectUid in $projectList)
    if ($projectUid -ne "")
    $projectsforDeletions = $svcPSProxy.ReadProject($projectUid, "PublishedStore").Project | where {$_.projectOwnerID -eq $projectOwnerID} | format-table proj_uid -hidetableheaders | out-string -stream
    foreach ($projUid in $projectsforDeletions)
    if ($projUid -ne "")
    $svcWSSProxy.DeleteWSSSite($projUid)
    Write-host 'Project UID for deleted site' $projUID
    That particular example deletes the project sites for a particular project owner, you could easily modify that to remove the project owner filter if needed.
    Regarding your query about having to delete the project sites to get the changes to take affect, there is no easy option to get the issues and risks list changes to filter though, this would either be manual on each existing site or using code to iterate
    through each existing site and apply the changes programmatically. Depending on if you used site collection content types to set up the Issues and Risks lists, it might be simple to add a new column etc. as you could do this centrally and it will cascade
    down. If you didn't use content types and or its view changes etc. this is a per site change that can be manual or programmatically done. The same applies to the document library, if this was set up using a site collection content type, the changes can
    be modified on the content type and cascaded down. If the library was set up with just a library that used local columns / templates then it will be a per site change - the same as the issues and risks.
    The company I work for (CPS) does have a site sync tool that will programmatically update existing sites based on a specified site so I know it is all possible to do in code!
    Paul
    Paul Mather | Twitter |
    http://pwmather.wordpress.com | CPS |
    MVP

  • How to change the look and feel for Heading of quick launch menu in project server 2010

    Hi
    can someone tell me how to change the look and feel of Header names in quick launch.
    I want the header to be displayed in Bold with Underline to it.
    could this be possible for just header in quick launch in project server 2010. 

    Hi Rohan
    It does not work this way. You have to use a content editor webpart.
    See references below that might help you starting with this customisation:
    Http://go4answers.webhost4life.com/Example/sharepoint-2010-quick-launch-look-feel-78379.aspx
    Http://m.sharepointpromag.com/sharepoint/four-ways-add-or-remove-quick-launch-menu-control
    Hope this helps.
    Guillaume Rouyre - MBA, MCP, MCTS

  • How to query Process Status from database in Project Server 2010

    Hello All,
    I am using Project Server 2010. 
    I need to query Process Status  from SQL. 
    where can I find Process Status in Database. 
    Thanks,
    Rohit

    Hi Rohit,
    you will not be able to find this information in reporting DB - the only database queries are supported.
    If you really want to go for an unsupported solution, you should be able to find related tables and how to join them in stored proc "MSP_WEB_SP_QRY_Statusing_ReadStatus" in published database.
    Regards
    Barbara
    To increase the value of this forum, please mark the replies that helped to solve your issue as answer. If you find answers to questions from other forum participants to be helpful, please mark them as helpful. Your participation will help others to find
    an appropriate solution faster. Thanks for your support!

  • Workflow Start "Failed But Not Blocking Correlation" - Project Server 2010 workflow for Demand Management

    Hi,
    We are using DM Dynamic Work flow in Project Server 2010 environment. When we tried to create a project the project is creating and teh workflow is not starting-- in the queue jobs the start work flow is failing withput blocking correlation -- below is teh
    eror message which we are getting
    Exception Starting Workflow: Exception has been thrown by the target of an invocation.. Trace: at System.RuntimeMethodHandle._InvokeConstructor(Object[] args, SignatureStruct& signature, IntPtr declaringType) at System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags
    invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) at System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes) at Microsoft.SharePoint.Workflow.SPWorkflowManager.LoadPluggableClass(String
    classname, String assembly, Object[] parameters) at Microsoft.SharePoint.Workflow.SPWorkflowManager.GetService(SPWorkflowAssociation association, SPWorkflowEngine engine) at Microsoft.SharePoint.Workflow.SPWorkflowManager.RunWorkflowElev(SPWorkflow workflow,
    Collection`1 events, SPWorkflowRunOptionsInternal runOptions) at Microsoft.SharePoint.Workflow.SPWorkflowManager.StartWorkflowElev(Object context, SPWorkflowAssociation association, DateTime elevationTimeUtc, SPWorkflowEvent startEvent, SPWorkflowRunOptions
    runOptions) at Microsoft.SharePoint.Workflow.SPWorkflowManager.<>c__DisplayClass13.<StartWorkflow>b__12(SPSite superUserSite, SPWeb superUserWeb) at Microsoft.SharePoint.Workflow.SPWorkflowManager.StartWorkflow(Object context, SPWorkflowAssociation
    association, SPWorkflowEvent startEvent, SPWorkflowRunOptions runOpts) at Microsoft.SharePoint.Workflow.SPWorkflowManager.StartWorkflow(Object context, SPWorkflowAssociation association, String eventData, SPWorkflowRunOptions runOptions) at Microsoft.Office.Project.Server.BusinessLayer.Workflow.<>c__DisplayClass36.<StartWorkflow>b__33()
    at Microsoft.SharePoint.SPSecurity.<>c__DisplayClass4.<RunWithElevatedPrivileges>b__2() at Microsoft.SharePoint.Utilities.SecurityContext.RunAsProcess(CodeToRunElevated secureCode) at Microsoft.SharePoint.SPSecurity.RunWithElevatedPrivileges(WaitCallback
    secureCode, Object param) at Microsoft.SharePoint.SPSecurity.RunWithElevatedPrivileges(CodeToRunElevated secureCode) at Microsoft.Office.Project.Server.BusinessLayer.Workflow.StartWorkflow(Guid projectGuid, Guid enterpriseProjectTypeUid, Boolean isNewProject,
    Guid previousEntepriseProjectTypeUid, Boolean skipStage, Guid stageToSkipTo):
    WorkflowExceptionStartingWorkflow (35115). Details: id='35115' name='WorkflowExceptionStartingWorkflow' uid='c09fc55c-4f19-49f4-8e49-17d3af3d9916'.
    Error:
    WorkflowCannotStartWorkflow (35100). Details: id='35100' name='WorkflowCannotStartWorkflow' uid='42c15879-e40c-4d04-b76d-bde108da3a67'.
    Queue:
    GeneralQueueJobFailed (26000) - WorkflowStartWorkflow.WorkflowStartWorkflowMessage. Details: id='26000' name='GeneralQueueJobFailed' uid='60422e4b-033b-4b41-aa71-503f4d7e20f4' JobUID='64b29d91-4f4e-4719-b199-d2dae88cfbd3' ComputerName='NP2EPMS600V' GroupType='WorkflowStartWorkflow'
    MessageType='WorkflowStartWorkflowMessage' MessageId='1' Stage=''. For more details, check the ULS logs on machine NP2EPMS600V for entries with JobUID 64b29d91-4f4e-4719-b199-d2dae88cfbd3.
    Request you to help as we are facing this issue from 2 days we tried most of the options like creating new workflow and the same issue persisits for the new once also.
    Thanks
    Geeth
    Geeth If you feel that the answer which i gave you is Helpful please select it as Answer/helpful.

    Hi Paul,
    We are using a third party tool called UMT Project Essentials 2012, recently we have removed the tool from sharepoint central admin and uninstalled from the server.
    We tried deleting some missing assemblies features web parts which are referencing to that tool but still we are not able to start the workflow and the same issue persists.
    below are the log file for your reference.
    09/19/2014 02:04:37.96  Microsoft.Office.Project.Server (0x100C) 0x1C20 SharePoint Foundation          Workflow Infrastructure        72fu Unexpected Load
    Workflow Class: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.IO.FileNotFoundException: Could not load file or assembly 'UMT.CostModule.Workflow, Version=2.0.0.0, Culture=neutral, PublicKeyToken=4ec97d0ba92f048f'
    or one of its dependencies. The system cannot find the file specified.  File name: 'UMT.CostModule.Workflow, Version=2.0.0.0, Culture=neutral, PublicKeyToken=4ec97d0ba92f048f'     at System.Reflection.Assembly._nLoad(AssemblyName fileName,
    String codeBase, Evidence assemblySecurity, Assembly locationHint, StackCrawlMark& stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection)     at System.Reflection.Assembly.InternalLoad(AssemblyName assemblyRef, Evidence assemblySecurity,
    StackCrawlMark& stackMar... b72f3008-fc65-400c-815d-393ccd1c8932
    09/19/2014 02:04:37.96* Microsoft.Office.Project.Server (0x100C) 0x1C20 SharePoint Foundation          Workflow Infrastructure        72fu Unexpected ...k,
    Boolean forIntrospection)     at System.Reflection.Assembly.InternalLoad(String assemblyString, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection)     at System.Reflection.Assembly.Load(String
    assemblyString)     at Microsoft.SharePoint.Workflow.ServiceConfigurationElement.get_AssemblyObject()     at Microsoft.SharePoint.Workflow.ServiceConfigurationElement.get_ClassType()     at Microsoft.SharePoint.Workflow.SPWorkflowExternalDataExchangeServiceCollection.Add(ServiceConfigurationElement
    serviceCfg)     at Microsoft.SharePoint.Workflow.SPWinOeHostServices.EnsurePluggableServices(SPSite site, SPWorkflowExternalDataExchangeServiceCollection services, ExternalDataExchangeService existingServices)     at
    Microsoft.SharePoint.Workflow.SPWinOeHostServices..ctor(SP... b72f3008-fc65-400c-815d-393ccd1c8932
    09/19/2014 02:04:37.96* Microsoft.Office.Project.Server (0x100C) 0x1C20 SharePoint Foundation          Workflow Infrastructure        72fu Unexpected ...Site
    site, SPWeb web, SPWorkflowManager manager, SPWorkflowEngine engine)    === Pre-bind state information ===  LOG: User = HALAMERICA\fhouspepmadmd  LOG: DisplayName = UMT.CostModule.Workflow, Version=2.0.0.0, Culture=neutral, PublicKeyToken=4ec97d0ba92f048f 
    (Fully-specified)  LOG: Appbase = file:///C:/Program Files/Microsoft Office Servers/14.0/Bin/  LOG: Initial PrivatePath = NULL  Calling assembly : Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c. 
    ===  LOG: This bind starts in default load context.  LOG: Using application configuration file: C:\Program Files\Microsoft Office Servers\14.0\Bin\Microsoft.Office.Project.Server.Queuing.exe.config  LOG: Using machine configuration file from
    C:\Windows\Microsoft.NET\Framework64\v2.0.50727\config\mac... b72f3008-fc65-400c-815d-393ccd1c8932
    09/19/2014 02:04:37.96* Microsoft.Office.Project.Server (0x100C) 0x1C20 SharePoint Foundation          Workflow Infrastructure        72fu Unexpected ...hine.config. 
    LOG: Post-policy reference: UMT.CostModule.Workflow, Version=2.0.0.0, Culture=neutral, PublicKeyToken=4ec97d0ba92f048f  LOG: The same bind was seen before, and was failed with hr = 0x80070002.       --- End of inner exception
    stack trace ---     at System.RuntimeMethodHandle._InvokeConstructor(Object[] args, SignatureStruct& signature, IntPtr declaringType)     at System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr,
    Binder binder, Object[] parameters, CultureInfo culture)     at System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)     at
    Microsoft.SharePoint.Workflow.SPWorkflowManager.LoadPluggableClass(String classname, String assembly, Object[] parameters) b72f3008-fc65-400c-815d-393ccd1c8932
    09/19/2014 02:04:37.96  Microsoft.Office.Project.Server (0x100C) 0x1C20 SharePoint Foundation          Workflow Infrastructure        98d8 Unexpected System.Reflection.TargetInvocationException:
    Exception has been thrown by the target of an invocation. ---> System.IO.FileNotFoundException: Could not load file or assembly 'UMT.CostModule.Workflow, Version=2.0.0.0, Culture=neutral, PublicKeyToken=4ec97d0ba92f048f' or one of its dependencies. The
    system cannot find the file specified.  File name: 'UMT.CostModule.Workflow, Version=2.0.0.0, Culture=neutral, PublicKeyToken=4ec97d0ba92f048f'     at System.Reflection.Assembly._nLoad(AssemblyName fileName, String codeBase, Evidence
    assemblySecurity, Assembly locationHint, StackCrawlMark& stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection)     at System.Reflection.Assembly.InternalLoad(AssemblyName assemblyRef, Evidence assemblySecurity, StackCrawlMark&
    stackMark, Boolean forIntrosp... b72f3008-fc65-400c-815d-393ccd1c8932
    09/19/2014 02:04:37.96* Microsoft.Office.Project.Server (0x100C) 0x1C20 SharePoint Foundation          Workflow Infrastructure        98d8 Unexpected ...ection)    
    at System.Reflection.Assembly.InternalLoad(String assemblyString, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection)     at System.Reflection.Assembly.Load(String assemblyString)    
    at Microsoft.SharePoint.Workflow.ServiceConfigurationElement.get_AssemblyObject()     at Microsoft.SharePoint.Workflow.ServiceConfigurationElement.get_ClassType()     at Microsoft.SharePoint.Workflow.SPWorkflowExternalDataExchangeServiceCollection.Add(ServiceConfigurationElement
    serviceCfg)     at Microsoft.SharePoint.Workflow.SPWinOeHostServices.EnsurePluggableServices(SPSite site, SPWorkflowExternalDataExchangeServiceCollection services, ExternalDataExchangeService existingServices)     at
    Microsoft.SharePoint.Workflow.SPWinOeHostServices..ctor(SPSite site, SPWeb web,... b72f3008-fc65-400c-815d-393ccd1c8932
    09/19/2014 02:04:37.96* Microsoft.Office.Project.Server (0x100C) 0x1C20 SharePoint Foundation          Workflow Infrastructure        98d8 Unexpected ...
    SPWorkflowManager manager, SPWorkflowEngine engine)    === Pre-bind state information ===  LOG: User = HALAMERICA\fhouspepmadmd  LOG: DisplayName = UMT.CostModule.Workflow, Version=2.0.0.0, Culture=neutral, PublicKeyToken=4ec97d0ba92f048f 
    (Fully-specified)  LOG: Appbase = file:///C:/Program Files/Microsoft Office Servers/14.0/Bin/  LOG: Initial PrivatePath = NULL  Calling assembly : Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c. 
    ===  LOG: This bind starts in default load context.  LOG: Using application configuration file: C:\Program Files\Microsoft Office Servers\14.0\Bin\Microsoft.Office.Project.Server.Queuing.exe.config  LOG: Using machine configuration file from
    C:\Windows\Microsoft.NET\Framework64\v2.0.50727\config\machine.config.  LOG: Po... b72f3008-fc65-400c-815d-393ccd1c8932
    09/19/2014 02:04:37.96* Microsoft.Office.Project.Server (0x100C) 0x1C20 SharePoint Foundation          Workflow Infrastructure        98d8 Unexpected ...st-policy
    reference: UMT.CostModule.Workflow, Version=2.0.0.0, Culture=neutral, PublicKeyToken=4ec97d0ba92f048f  LOG: The same bind was seen before, and was failed with hr = 0x80070002.       --- End of inner exception stack trace
    ---     at System.RuntimeMethodHandle._InvokeConstructor(Object[] args, SignatureStruct& signature, IntPtr declaringType)     at System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder,
    Object[] parameters, CultureInfo culture)     at System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)     at Microsoft.SharePoint.Workflow.SPWorkflowManager.LoadPluggableClass(String
    classname, String assembly, Object[] parameters)     at Microsoft.SharePoint... b72f3008-fc65-400c-815d-393ccd1c8932
    09/19/2014 02:04:37.96* Microsoft.Office.Project.Server (0x100C) 0x1C20 SharePoint Foundation          Workflow Infrastructure        98d8 Unexpected ....Workflow.SPWorkflowManager.GetService(SPWorkflowAssociation
    association, SPWorkflowEngine engine)     at Microsoft.SharePoint.Workflow.SPWorkflowManager.RunWorkflowElev(SPWorkflow workflow, Collection`1 events, SPWorkflowRunOptionsInternal runOptions) b72f3008-fc65-400c-815d-393ccd1c8932
    09/19/2014 02:04:38.06  w3wp.exe (0x183C)                        0x1520 SharePoint Foundation        
     Topology                       e5mc Medium   WcfSendRequest: RemoteAddress: 'http://np2epms600v:32843/e088435160fb48758ab14cf625ed7499/MetadataWebService.svc'
    Channel: 'Microsoft.SharePoint.Taxonomy.IMetadataWebServiceApplication' Action: 'http://schemas.microsoft.com/sharepoint/taxonomy/soap/IDataAccessReadOnly/GetChanges' MessageId: 'urn:uuid:cb6b4635-9c5f-4ad4-b755-0e5fb699d335' 
    09/19/2014 02:04:38.07  w3wp.exe (0x0CD4)                        0x1D24 SharePoint Foundation        
     Topology                       e5mb Medium   WcfReceiveRequest: LocalAddress: 'http://np2epms600v.corp.halliburton.com:32843/e088435160fb48758ab14cf625ed7499/MetadataWebService.svc'
    Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/sharepoint/taxonomy/soap/IDataAccessReadOnly/GetChanges' MessageId: 'urn:uuid:cb6b4635-9c5f-4ad4-b755-0e5fb699d335' a6d541cf-f5b9-4c7b-9e6b-d2637dd025b6
    09/19/2014 02:04:38.07  w3wp.exe (0x0CD4)                        0x1D24 SharePoint Foundation        
     Monitoring                     nasq Medium   Entering monitored scope (ExecuteWcfServerOperation) a6d541cf-f5b9-4c7b-9e6b-d2637dd025b6
    09/19/2014 02:04:38.07  w3wp.exe (0x0CD4)                        0x1D24 SharePoint Server            
     Taxonomy                       fuc5 Medium   MetadataWebServiceApplication.GetChanges called on 'Managed Metadata Service' starting. a6d541cf-f5b9-4c7b-9e6b-d2637dd025b6
    09/19/2014 02:04:38.08  w3wp.exe (0x0CD4)                        0x1D24 SharePoint Server            
     Taxonomy                       fuc6 Medium   MetadataWebServiceApplication.GetChanges called on 'Managed Metadata Service' completed. a6d541cf-f5b9-4c7b-9e6b-d2637dd025b6
    09/19/2014 02:04:38.08  w3wp.exe (0x0CD4)                        0x1D24 SharePoint Foundation        
     Monitoring                     b4ly Medium   Leaving Monitored Scope (ExecuteWcfServerOperation). Execution Time=4.88944823992994 a6d541cf-f5b9-4c7b-9e6b-d2637dd025b6
    09/19/2014 02:04:38.12  Microsoft.Office.Project.Server (0x100C) 0x1C20 SharePoint Foundation          Workflow Infrastructure        72fq Unexpected Start
    Workflow: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.IO.FileNotFoundException: Could not load file or assembly 'UMT.CostModule.Workflow, Version=2.0.0.0, Culture=neutral, PublicKeyToken=4ec97d0ba92f048f'
    or one of its dependencies. The system cannot find the file specified.  File name: 'UMT.CostModule.Workflow, Version=2.0.0.0, Culture=neutral, PublicKeyToken=4ec97d0ba92f048f'     at System.Reflection.Assembly._nLoad(AssemblyName fileName,
    String codeBase, Evidence assemblySecurity, Assembly locationHint, StackCrawlMark& stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection)     at System.Reflection.Assembly.InternalLoad(AssemblyName assemblyRef, Evidence assemblySecurity,
    StackCrawlMark& stackMark, Bo... b72f3008-fc65-400c-815d-393ccd1c8932
    09/19/2014 02:04:38.12* Microsoft.Office.Project.Server (0x100C) 0x1C20 SharePoint Foundation          Workflow Infrastructure        72fq Unexpected ...olean
    forIntrospection)     at System.Reflection.Assembly.InternalLoad(String assemblyString, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection)     at System.Reflection.Assembly.Load(String
    assemblyString)     at Microsoft.SharePoint.Workflow.ServiceConfigurationElement.get_AssemblyObject()     at Microsoft.SharePoint.Workflow.ServiceConfigurationElement.get_ClassType()     at Microsoft.SharePoint.Workflow.SPWorkflowExternalDataExchangeServiceCollection.Add(ServiceConfigurationElement
    serviceCfg)     at Microsoft.SharePoint.Workflow.SPWinOeHostServices.EnsurePluggableServices(SPSite site, SPWorkflowExternalDataExchangeServiceCollection services, ExternalDataExchangeService existingServices)     at
    Microsoft.SharePoint.Workflow.SPWinOeHostServices..ctor(SPSite ... b72f3008-fc65-400c-815d-393ccd1c8932
    09/19/2014 02:04:38.12* Microsoft.Office.Project.Server (0x100C) 0x1C20 SharePoint Foundation          Workflow Infrastructure        72fq Unexpected ...site,
    SPWeb web, SPWorkflowManager manager, SPWorkflowEngine engine)    === Pre-bind state information ===  LOG: User = HALAMERICA\fhouspepmadmd  LOG: DisplayName = UMT.CostModule.Workflow, Version=2.0.0.0, Culture=neutral, PublicKeyToken=4ec97d0ba92f048f 
    (Fully-specified)  LOG: Appbase = file:///C:/Program Files/Microsoft Office Servers/14.0/Bin/  LOG: Initial PrivatePath = NULL  Calling assembly : Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c. 
    ===  LOG: This bind starts in default load context.  LOG: Using application configuration file: C:\Program Files\Microsoft Office Servers\14.0\Bin\Microsoft.Office.Project.Server.Queuing.exe.config  LOG: Using machine configuration file from
    C:\Windows\Microsoft.NET\Framework64\v2.0.50727\config\machine.... b72f3008-fc65-400c-815d-393ccd1c8932
    09/19/2014 02:04:38.12* Microsoft.Office.Project.Server (0x100C) 0x1C20 SharePoint Foundation          Workflow Infrastructure        72fq Unexpected ...config. 
    LOG: Post-policy reference: UMT.CostModule.Workflow, Version=2.0.0.0, Culture=neutral, PublicKeyToken=4ec97d0ba92f048f  LOG: The same bind was seen before, and was failed with hr = 0x80070002.       --- End of inner exception
    stack trace ---     at System.RuntimeMethodHandle._InvokeConstructor(Object[] args, SignatureStruct& signature, IntPtr declaringType)     at System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr,
    Binder binder, Object[] parameters, CultureInfo culture)     at System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)     at
    Microsoft.SharePoint.Workflow.SPWorkflowManager.LoadPluggableClass(String classname, String assembly, Object[] parameters)     at Micr... b72f3008-fc65-400c-815d-393ccd1c8932
    09/19/2014 02:04:38.12* Microsoft.Office.Project.Server (0x100C) 0x1C20 SharePoint Foundation          Workflow Infrastructure        72fq Unexpected ...osoft.SharePoint.Workflow.SPWorkflowManager.GetService(SPWorkflowAssociation
    association, SPWorkflowEngine engine)     at Microsoft.SharePoint.Workflow.SPWorkflowManager.RunWorkflowElev(SPWorkflow workflow, Collection`1 events, SPWorkflowRunOptionsInternal runOptions)     at Microsoft.SharePoint.Workflow.SPWorkflowManager.StartWorkflowElev(Object
    context, SPWorkflowAssociation association, DateTime elevationTimeUtc, SPWorkflowEvent startEvent, SPWorkflowRunOptions runOptions) b72f3008-fc65-400c-815d-393ccd1c8932
    09/19/2014 02:04:38.12  Microsoft.Office.Project.Server (0x100C) 0x1C20 Project Server                 Project Server Workflow      
     ai7z Verbose  Error is: WorkflowExceptionStartingWorkflow. Details: . Standard Information: PSI Entry Point:   Project User: HALAMERICA\H139933  Correlation Id: b72f3008-fc65-400c-815d-393ccd1c8932  PWA Site URL:
    http://devpsepm4tech.corp.halliburton.com/PWA  SSP Name: Project Server Service Application  PSError: WorkflowExceptionStartingWorkflow (35115) b72f3008-fc65-400c-815d-393ccd1c8932
    09/19/2014 02:04:38.13  Microsoft.Office.Project.Server (0x100C) 0x1C20 Project Server                 General                      
     b0ry Medium   PWA:http://devpsepm4tech.corp.halliburton.com/PWA, ServiceApp:Project Server Service Application, User:HALAMERICA\H139933, PSI: [ProjectServerError] Mismatched Attributes for PSErrorID WorkflowCannotChangeWorkflow. List of
    defined attributes: none. List of provided values: 05c80469-125d-44bc-853b-b906f7e1076a, Microsoft.Office.Project.Server.BusinessLayer.QueueMsg.WorkflowChangeWorkflowMessage, 1, DontBlock. b72f3008-fc65-400c-815d-393ccd1c8932
    09/19/2014 02:04:38.13  Microsoft.Office.Project.Server (0x100C) 0x0178 Project Server                 Queue                        
     954
    Geeth If you feel that the answer which i gave you is Helpful please select it as Answer/helpful.

  • Project Server 2013 reporting database change in Schema from Project Server 2010

    I have a current Project Server 2010 implementation, I am planning to migrate to Project Online.
    We have Customized Reports that consume from the PS 2010 Reporting DB.
    Are there differences in the Reporting DB schema  between PS 2010 and Project Online?
    My Question is: if we migrated to Project Online, will the reports crash?
    Another question is that, is PS 2013 Reporting DB schema the same as Project Online?

    Hi Atia,
    IN project server 2013 we have only one database instead of 4, it means draft, archive, published and reporting with in one database.Project Server 2013 reporting database schema tool that can be downloaded.
    http://blogs.msdn.com/b/project_programmability/archive/2013/01/28/project-server-2013-reporting-database-rdb-schema-reference.aspx
    There are differences in reporting of on-premises vs. Project Online
    The Project Server 2013 reporting schema includes three new tables, 27 new views, and a total of 33 tables and views that include new fields.
    Answer-1 : Yes there are some differences between PS 2010 and project Online.
    Answer-2 : Reports will crash as In Project Online you have to use ODATA to create report. You can not query project online data for reporting directly you have to have use ODATA. 
    http://msdn.microsoft.com/en-us/library/jj163015.aspx
    Answer-3 : NO, PS 2013 Schema and Project online Schema is different. 
    kirtesh

  • Project Professional 2010 Not Publishing to Project Server 2010

    I am having trouble publishing a project from Project Professional 2010 to the Project Server 2010 (PWA). What I am trying to publish is a master project which is contains many enterprise projects as subprojects. When I press publish, it prompts me
    to save and if I click yes then it goes through and saves all the subporjects and then just stops there and doesn't publish the changes to the master project. If I press publish and click no to the save prompt then it gives me the status "sychronizing
    data to server" for around 15 seconds and then just does nothing after the sychonization finishes.
    It usually should be giving a "publishing job done 0%" or "publishing job completed" when it publishes, but it gives nothing like that. I also check the project through the PWA and it has not updated yet, but when I open it for editing in the client it has
    everything updated and up to date, meaning that the save is working properly and just not the publishing.
    All my subprojects are able to publish correctly, it's just this master project that is not working.
    Does anyone know why this is happening? Is the publishing process timing out for some reason? Or is it something else?
    Please help.
    EDIT: The progress notification at the bottom of Project Professional just stops at "save completed sucessfully" whenever I try to publish

    To check the queue, navigate to Server Settings > Manage Queue and view the jobs that are present. If there is an error when publishing you should see it in the queue.
    Alex Burton
    www.epmsource.com |
    Twitter
    Project Server TechCenter |
    Project Developer Center |
    Project Server Help | Project Product Page

  • Project Server 2010 - Error 20010 with a master project and 3 sub-projects during publication

    Hi,
    Here is the situation :
    One master project with three sub projects.
    Sub projects are really similar (Same ressources and nearly same tasks but only the first contain real work for now).
    Sub projects got no sub projects nor links between projects.
    The owner of the master project got read rights through projects permissions on sub projects.
    Sub projects are link in "read only".
    We applied Project Server 2010 SP2 last week end and the issue appeared monday.
    Here are the symptoms :
    When we link only one sub project (Doesn't matter which one), the owner can publish, no problems.
    With 2 sub projects, the error may occur.
    With 3 sub projects, the error always occurs.
    With admin rights, the error doesn't occur.
    Here is the error :
    ID : 20010 (0x4E2A)
    Description : You don't have required permissions to perform the action (Average traduction)
    Detail : <detail><errinfo><general><class name="Project"><error id="20010" name="GeneralSecurityAccessDenied" uid="19515c1d-2624-466f-953a-b7fc67337b81"/></class></general></errinfo></detail>
    I'm unable to determine which sub project is the culprit, if there is one, as it's working when I link only one of them.
    Thanks for your time !

    Fylim --
    If the project manager in question does not need to edit any of the three projects, the PM does not need to have Read/Write access to any of the three projects.  Because you said that the PM needs to set links in all three projects, this means that
    the PM will be editing all three projects.  In order to edit the three projects, the PM must have Read/Write access to all three.  Setting cross-project links constitutes editing of the projects, which is why the PM must have Read/Write permission. 
    Make sense?
    Regarding SP2, I am not aware that this would change anything, but I could be wrong.  The reality is that regardless of which SP you have applied to Microsoft Project and Project Server 2010, the PM in this situation MUST have Read/Write access to the
    projects that he/she needs to edit with cross-project links.  Hope this helps.
    Dale A. Howard [MVP]

  • Project Server 2010 - Active Directory Enterprise Resource Pool Synchronization limitations

    Greetings again.
    I have a quick question about the limitations of Active Directory Enterprise Resource Pool Synchronization.  Specifically, what has your experience
    been with extremely large numbers of users (10k plus).  Is anyone aware of a
    practical limit of users in your AD group you would recommend when using the
    Schedule Synchronization feature on a nightly or weekly basis?
    There is a caveat to this question however.  The client has decided (perhaps for some misinformed reasons) to allow access for every user, to every
    project site, within their PWA environment.  They’ve selected the View Project Site option within the
    Categories for the Team Members PWA Group for which 90% of their intended users reside.  So when we ran a couple test syncs in DEV with a smaller AD group of about 8,000 users, the sync understandably
    lasted upwards of 18 hours.  Obviously unacceptable for a PROD environment on a nightly basis and not necessarily ideal for a weekly sync either.
    Experience in addition to documents like these, “Best
    practices for managing a large number of resources in Project Server 2010” tell me that we are way over the practical limit of a scheduled resource pool synchronization...IF
    the client really desires that all users access all their sites.  But before I submit my recommendations, I wanted to check with the community just in case others may have found a way to synchronize large numbers of users (10k plus) on a nightly or weekly
    basis, within a reasonable time frame AND allowed all users to access all sites within PWA.
    What do you think?
    As always, thanks for your help.
    Chris Addis - MCTS

    Hello Hrishi.
    My delayed response has been due to a large amount of testing we have been performing on this particular topic.  Here is an update, please feel free to provide feedback.
    We went back to testing and spent more time reviewing the documents: 
    Best practices for managing a large number of resources in Project Server 2010 and
    SharePoint Server 2010 capacity management: Software boundaries and limits.  Our team interpreted those documents as saying, 1,000 security
    scopes per site is a recommended limit.  It does not say it’s a hard limit, just a recommended limit.  “When the recommended unique security scope boundaries are exceeded, performance issue can occur.”
    So we decided to perform some tests (31 in total) to try and get a gage of what we are seeing.
    We needed to establish a baseline first.  So we performed a series of 23 Active Directory Resource Pool Synchronizations with various settings in a clean, Out of the Box, environment in order to see some consistent numbers.  Here is it’s summary:
    Our AD group of 8,000 users took about 32 minutes, on average, every time to sync.  The difference between the first sync and last sync differed only by 1-3 minutes.
    Adding 40 project sites increased the average sync time from 32 to 120 minutes.
    Adding 100 users to each of those 40 project sites, did not increase the sync times.
    One setting (identified at this time) reduced the synchronization time.  It was the
    Project Site Permissions check box found within the Project Web App > Server Settings > Project Site Provisioning Settings area.  By deselecting this check box we reduced or synchronization time back to the 32 minute
    average.
    The View Project Site check box within the Project Web App > Server Settings > Manage Groups > Team Members group had no apparent effect on the sync times besides what we had gleaned from the Microsoft documentation.
    Naturally, this left us with a problem.  As I’m sure you know, by deselecting the check box (Project Site Permissions), our project sites are now (figuratively speaking) orphans with no connection to the parent site.  This generates
    a new set of issues.  For example:
    Newly created project sites cannot be accessed by the owner and team members.  They will require someone like the farm admin to come in behind them and add the intended users to the project site along with their required permissions.
    All current and futures sites will no longer have users added via the standard method of building a team and publishing the project, but will have to be added manually.
    You can use the Synchronize option found within Project Web App > Server Settings > Project Sites page, but that kinda defeats the purpose.  It would require constant updating on a per site basis to keep up with
    PM changes.  Not very sensible, but it does work.
    With this baseline information, we moved our tests into our DEV environment which somewhat mimics our PROD environment.  This environment has 352 project sites and we performed 8 tests.  This is where we had some large sync time numbers. 
    Here is the DEV test summary:
    With the Project Site Permissions check box cleared, our AD group of 8,000 users took on average 30 minutes to sync.  This was in line with our baseline times.  With the exception of one test sync that took 99 minutes to complete. 
    That anomaly is acquiescent with what I’ve seen over the years.  Sometimes syncs do some unusual things.
    With the Project Site Permissions check box selected, our AD group of 8,000 users took on average 690 minutes (11.5 hours) to sync.  Unacceptable of course.
    So here’s what we’ve learned when dealing with extremely large numbers of active directory users in your Resource Pool sync:
    We did not see a decrease in subsequent sync times after the initial Active Directory Resource Pool Synchronization as some might expect.
    Our attempt to decrease sync time via the option of removing the View Project Sites was not successful.  (Unless we interpreted Microsoft's document incorrectly.)
    However, our interpretation of the recommended software boundaries and limits of SharePoint Server 2010 as it pertains to security scopes per site at 1,000, appears to be correct.
    Using the option of clearing the Project Site Permissions does produce a reduction in AD sync time, but at a cost segregating your project sites and thus the creation of new processes of maintaining them.
    I’ll remind others that these results are particular to our environments, there may still be exceptions yet to discover.  Others may see numbers contrary to ours.
    The biggest surprise to some members on our team (myself excluded) was that we did not see a reduced sync time after any of our initial syncs.  Some are under the impression that after your initial sync, you should see reduced sync times.  I haven’t
    found that to be the absolute case in all situations, just in some situations.  The reason for this still eludes me.  Any thoughts would be appreciated.
    I’ll let this sit a bit longer, but if no one disagrees with the results, I think we have our answer:
    The number of project sites directly affects your Active Directory Resource Pool Synchronizations if you are using the
    Project Site Permissions option.  If you plan on synchronizing over 1,000 users
    and you have a large number of project sites, proceed with the knowledge that you may have performance issues and long sync times.
    As always, I’d love to hear from you or others just in case I’m missing something.
    Chris Addis - MCTS

  • Project Server 2010 Jobs All 'Waiting To Be Processed'

    Hello,
    We have installed Project Server 2010 for evaluation and are running into an issue when creating new projects in the Project Center.  The installation included SharePoint 2010 and is a single-machine install (i.e. DB and WFE on same machine). 
    We can access the site without any problem and when accessing the Project Center and electing to create a new project from Basic Project Plan template, the interface processes the request and then informs us that the request was taking a long time to process
    and to check the Manage Queue Jobs interface for status.
    Reviewing the queued jobs reveals four queued tasks for Project Create, Project Publish Notifications, Project Publish and Start Workflow, all with a Job State of 'Waiting To Be Processed'.  When we originally ran into this issue, we realized that the
    User Profile Synchronization Service was configured to run with the Network Service account and that the two relevant ForeFront Identity Manager services were not running.  We had read that this may cause the queue to not process requests, so we reconfigured
    the system to use a domain account and started the User Profile Synchronization Service Application (which in turn started the ForeFront Identify Manager services).
    However, this did not help and the jobs (as well as new jobs) are still waiting to be processed.  We don't see any errors listed in the queue and can't really find relevant errors in the SharePoint logs or event viewer.
    Has anyone else run into this problem who can provide some insight?  Thanks.
    John

    Another thing to check John, and you may well find evidence in the ULS logs, is that the queue service is really running.  Just looking in Services isn't enough.  When the queue service starts it will check for the presence of PWA sites within
    each and every (probably just one) Project Service Application you have running.  It will then spawn an extra process for each Service Application it finds that has one or more PWA instances.  So you should always see at least two Microsoft.Office.Project.Server.Queuing.exe
    processes running within Task Manager -and if you just see one the looking in the ULS logs should give an indication why it didn't start up (re-starting will give you a fresh entry in the log - which will be easier than searching through lots of logs.
    Best regards,
    Brian.
    Blog |
    Facebook | Twitter | Posting is provided "AS IS" with no warranties, and confers no rights.
    Project Server TechCenter |
    Project Developer Center |
    Project Server Help | Project Product Page

  • Project Server 2010 Active Directory Synchronization - duplicate Windows Name - Event ID 7734

    Environment: SharePoint Server 2010, Project Server 2010, SP2, DEC 2013 CU (Farm Build number: 14.0.7113.5001)
    Scenario: 
    Domain user has been added to the Active Directory group being synchronized with Project Server for the Team Members group.
    That user has participated as a team member in numerous projects, added documents, been assigned tasks, typical project stuff...
    Employee quits.
    AD account is deleted. (NOT deactivated or moved into another OU)
    Time passes...
    Employee gets rehired.  NEW AD account is set up: same display name, SamAccountName, email address, different GUID of course.
    Daily Active Directory job runs again and throws event ID 7734 and the sync ends with a partial fail.
    I understand why this is happening.  Solutions I've found point me to deleting the Enterprise Object resource in Project Server and then rerunning the sync.  Sure, this works BUT won't all of the previous documents, tasks,
    etc. be disassociated from that user?  If so, this is not ideal.
    2 questions:
    Is there a better way to deal with the fixing of the resource in Project Server to somehow link the old resource to the new resource allowing the sync to run successfully while still leaving the association to all old content intact?
    How are other organizations dealing with rehires when they have been added as resources in Project Server?  What is the best practice guidance from Microsoft on this?  Are other companies not actually deleting AD accounts when users leave organizations
    or are they putting them into a "ARCHIVE" OU or something like that? This happens at least half a dozen times a year at my company. We would like to keep our AD as clean as possible, but this appears to change our approach.
    Any suggestion/guidance is appreciated.

    For the question to relink the new account to the account which is already available in Project Server. You will have to update the WRES_AD_GUID to Null for the the Resource in MSP_RESOURCES table in the published database.
    Whenever a users gets synchronized to the PWA his ADGUID, SAMAccountName, Display Name, Email Address and DepartmentName is Synchronized from AD to Project Server. When the user was deleted and recreated the ADGUID got changed. During the next sync, project
    found the user with similar properties but different ADGUID which was updated in WRES_AD_GUID column in MSP_RESOURCES table. Hence it says that there is a duplicate account in the table with the same properties but a different ADGUID
    Nullifying the WRES_AD_GUID column value in MSP_RESOURCES table should get the user synchronized to Project server in the next sync.
    Cheers! Happy troubleshooting !!! Dinesh S. Rai - MSFT Enterprise Project Management Please click Mark As Answer; if a post solves your problem or Vote As Helpful if a post has been useful to you. This can be beneficial to other community members reading
    the thread.

  • Project Server 2010 - Updated User Profile - Display Name is Old Name

    Similar to question"It shows the Domain\Logon account instead the User Name (up right corner)" but not quite the same. I also checked on the related topics list and could not find a solution.
    We have a Resource in Project Server 2010 whose name changed. This included a change to her loginID as well as her email address. I went in to PWA > Server Settings > Security > Manage Users and changed the
    Name, Email Address, and User Login Account fields accordingly. When the user goes into Project Server or any of the Project Sites, her old User Name is reflected. If she accesses any other SharePoint site (not associated with Project Server) her
    new name shows up in the upper right hand corner of the screen.
    We do not have AD Synchronization turned on.
    How can we edit the name that appears in the upper right corner of the screen?

    Hi,
    Use Display name shown on right hand site is not from PWA, its from SharePoint User profile. When we make change to user display name, sometime SharePoint Still retain the old account and also add new account. To fix the issue we have to remove the user
    profile from PWA root site.
    Open PWA and navigate to following path
    Site Actions>>Site Settings>>People and Groups
    Click on More from left hand site list of groups
    Select appropriate group,   belongs to the user
    Select the user and from Actions tab remove the user. (you may see two entries old and new), Either you can delete both or click on each account to validate correct user ID.
    Once again navigate to PWA>>Server Settings>>Manage User
    Edit affected user and click on Save
    Have user log on to PWA and validate the result.
    Hrishi Deshpande – Senior Consultant DeltaBahn
    Blog | < |
    LinkedIn
    Please click Mark As Answer; if a post solves your problem or Vote As Helpful; if a post has been useful to you.This can be beneficial to other community members reading the thread.

  • 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

Maybe you are looking for

  • Can't connect to lcd projector in boot camp windows 7

    I have a 13" macbook pro with Intel HD graphics 4000 running 10.7.4.  When on the PC side the computer will not recognize the projector.  I have downloaded the latest intel drivers and still nothing.  I am using the same adapter that I used with an o

  • Word 2010x64 to PDF using Acrobat Pro XI: Print shows box with ? inside.

    System: Windows 7 SP1 X64 Adobe: Acrobat XI Pro Office: Office 2010 x64 On multiple systems, I creating a document with standard text and font and then saved as or printed as a PDF. This creates a normal PDF with no visable issues. Problem arrises wh

  • Download Hierarchial List ALV  to excel

    Hi all, Please provide me the solution on using download button in Hierarchial List ALV to download to excel.The output of excel need to be exacted as the output of ALV (All header and items details). Please suggest the solution and sample code ASAP.

  • Invoice Cancell after Credit note creation ?

    Hi If credit note creates with ref to Invoice system should not allow to cancell the invoice? How to control this? Plz guide me Regards rajendra

  • Regarding internet pricing configurator in extended classic

    hai everybody, Till now i am working on calssic implementation.right now i wanted to convert into exteded classic.what are the prerequistes required during conversion.what about the ipc?does it requires any extra setup.how the system knows the srm co