Project Server 2010 - Unable to open project, no valid Project Detail Page could be found for the project error

I have a workflow being deployed for the first time on a farm. When I create a project with an EPT connected to the workflow it runs and can enter the required field in a PDP.  Then I Submit the workflow to go to the next stage and I get the "Unable
to open project, no valid Project Detail Page could be found for the project" error.  After that the project is stuck on the same error.  All of the 18 stages have PDP and Schedules assigned to them.
Any ideas on why the workflow cannot see the PDPs?  Is there a farm permissions that I am missing?  Thanks!

Hi David,
It starts to be a bit technical for me, but here is what I found on the web (seems to be an authentication issue with Sharepoint 2010):
http://social.technet.microsoft.com/Forums/en-US/120ab535-63d2-4205-a51f-1987e9c0cf79/sharepoint-fba-the-content-type-texthtml-charsetutf8-of-the-response-message-does-not-match-the
http://social.msdn.microsoft.com/Forums/silverlight/en-US/5cc70ff6-50d9-4cd3-b092-12007f4e495b/response-message-contenttypebindingtype-mismatch
http://stackoverflow.com/questions/5263150/the-content-type-text-html-charset-utf-8-of-the-response-message-does-not-match
Hope it will help you going forward in resolving your issue.
Guillaume Rouyre - MBA, MCP, MCTS

Similar Messages

  • MS Project Professional 2010 - Unable to open Project Plan from the Server.

    Dear Folks,
    Since morning we have been facing an issue with MS Project Professional 2010. When we try to open project plan, it takes time and then show nothing on the screen, project gets checked out to you as well but nothing comes on MS Project Professional Screen.
    Strange thing, when busy mouse cursor gets released MS Project Professional show "Disconnected from the Server" message with white icon instead of globe one at the bottom of MS Project Professional and disappear after few seconds.
    We are able to open small plans but the plans having 4000 lines is not able to open, Project Professional show busy status when we give it a try.
    Everything seems fine to me .. Project Server connection .. queue jobs .. no issues.
    What could be the possible problem and how to resolve this issue?
    Many thanks in advance.
    Best Regards

    Hi Mohsin,
    Is it happening for all users or just some of them? Is it happening for all projects? Have you tried on a different machine?
    First I'd suggest to try accessing the project plan through PWA to identify wheither it is a network issue or an application issue.
    Then check the Project Pro account to ensure that the connection settings to Project Server are correct. You could also try to remove the Project Server account in Project Pro and create it again.
    Finally, ensure that the PWA URL is added to IE trusted sites.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • Create a defaut view for the MS Project Server 2010 client

    Dear Forum,
    how can I create a defaut view for the MS Project Server 2010 client?
    I saved a template and set a default view under File -> Options ->Project View. I also did the same in the checked-out enterprise global. If I then close the client and re-open it my default view changes back again to the previous one (not the view
    I set as a default view).
    What explains this behaviour and what can I do? Any hints?
    Thank you very much for your help!

    Scheduler007 --
    The view you selected by clicking File > Options > Project View is the default view for every new project you create from a blank project template.  This is a global option, so setting it from the checked out Enterprise Global file serves no purpose. 
    When you select a view as your default view, you will see that view applied to the blank project that is opened when you launch Microsoft Project 2010, and you will see it applied if you create new blank projects.  If you create enterprise templates for
    people to use in your organization, you should simply apply the view to the template that you want as the default so that users will see this view immediately when they create a new project from the template.  In addition, if you apply a view to an open
    project, close and check in the project, and then reopen the project, you will see the last view applied in that project (as Guillaume correctly points out).
    Beyond this, there is no method possible for the Project Server administrator to specify a default view for the Microsoft Project application used by the project managers in your organization.  This is an option each PM must set.  Hope this helps.
    Dale A. Howard [MVP]

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

  • Project Server 2010 Site Template Update

    Hi,
    I have a Project Server 2010 environment in which there are several site templates created and there are about 500 projects.
    Now, I have the requirement of changing some templates (add a list, some fields in a existing Risks and Issues lists, etc.)
    How Can I update current template?
    If I update current template, Will the sites created be updated with the new lists and fields? Or Should I do these additions by hand?
    Thanks!
    José Quinto Zamora SharePoint and Search Specialist MCITP and MCPD in SharePoint 2010
    http://joSharePoint.com

    Hi,
    Another related question,
    We have created custom Web Template by saving as a template one site. Later we have created 20 sites using that Web Template. And now we want to update this template to "Site Template v2". We create other Web Template and now we have two
    "Site Template v1" and "Site Template v2". Should we remove "Site Template v1" from Solutions Gallery? Or it is neccesary while exists sites created with version 1?
    José Quinto Zamora SharePoint and Search Specialist MCITP and MCPD in SharePoint 2010
    http://joSharePoint.com

  • Unable open Project details or a project from PWA Project server 2010 with Alias name

    Hi,
    I am unable to open the Projects from Project center with the Alias name with the server name i am able to open the projects, version is  project server 2010,
    My system is ABC.DC.IN  alias name i have given is DEF.AD.COM  
    With the system name i can able access PWA and all are working fine.
    As i have observed with alias name i can able to login to  pwa and all the server  setting approval center all are working fine but only in the project center i am not able to open the projects (http://DEF.AD.COM/pwa/ProjectDrillDown.aspx .xxxx)
    its is coming in the below of the ie. 
    But with Alias name these are the issues i am facing,
    1.when longing with alias name its asking two times for user name and password
    2.when i click on a project from project center its taking some time and asking for user name and password after i enter user name and password "PAGE cannot displayed" error i am getting.
    can any one Help me. 
    vijay kommireddi

    Hi Eric,
    Thanks for your Reply.
    As you said i have added in Manged Path as  (Testpwa/projects.aspx as <Wildcard inclusion>) But still problem is there it is asking user
    name password again if click on any project in project center and  and showing page cannot be displayed error. 
    This is url its is showing in the below of the IE ( http://def.ad.com/testpwa/projectdrilldown.aspx?ProjUid=e28c6d43-85b6-478d-9542-2961cc81a69e)
    I have observed one more thing if click on Project
    details then only this issue  is coming project schedule and project information
    is also opening with Alias name.
    My farm version is 14.0.7015.1000
    Vijay Kommireddi

  • Unable to launch project schedule in project pro 2010 via the icon in project center on project server 2010

    Unable to launch a project in project pro 2010 via the icon in project server 2010 project center.  Nothing happens.  The pull down "open" menu doesn't do anything either.  Can't open the schedule in project pro in read-only or edit mode.
    This is happens to a handful of project managers.  Can't find a common thread.
    Janice Weaver

    Hi Brian - the latest 'weight on my shoulders' was vacation :) - so just catching up - first day back.  We do have a fix coming in August CU for a problem that sounds very similar - but we would need to see your data to confirm if this is the case
    or not.  So the choices at the moment are to wait until we release the week after next, or open a support incident - but we would likely need assistance from your DBA to either run some queries or get us a copy of the DBs.
    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

  • Unable to save/publish Projects on Project Server 2010() using Project Pro 2007 and 2010

    Hi,
    Recently we have upgraded from Project Server 2007 to 2010 SP-2 (BCM enabled) environment and from last few days we are getting issue with Project Plans where PMs are not able to update Projects means save and publish the Project using MS Project  2010/2007.
    Whenever PMs try to open project using MS Project 2010 SP-2, it gets load successfully but when they hit save and publish no jobs are getting fired up nothing is happening. Only way to get out from MS Project 2010 window is to close the Project window and
    and click discard changes. No error and exception windows are popping out in MS Project 2010, no error/problem/issue clue at all from MS Project 2010.
    But when I try to update this Project plan for very first time using MS Project 2007 Sp-2 then I am getting below error
    for any subsequent save and publish using MS Project 2007-SP2 getting below error
    As an alternative I have tried to open this Project Plan using web and there it is getting opened saved and published successfully from PWA absolutely no issue.
    Also I have saved this Project locally as XML and saved and published it on Server successfully. But after someday again this project got corrupt PMs started getting same problem again
    I have also looked at ULS logs but not getting anything useful there.
    So any guesses why this could happen that can give me pointers to find actual root cause, please let me know.
    Thanks much !!!
    Sachin Vashishth MCTS

    Used below steps to fix the Projects on MSP 2010.
    1) Open corrupted project in MS Project connected to PS 2010 Prod env.
    2) Goto > Resource > Add Resource  > Build Team From Enterprise
    3) Check is there any local resource who has not replaced with corresponding enterprise resource. If yes then replace all those local resources with enterprise resource. If not then move to next step.
    4) Open resource sheet view and sort or filter by local resources.
    5) Then add few columns in resource sheet view like "Windows User Account, Email Address , Base Calendar etc".
    6) Now check has any local resource having enterprise attribute assigned to it, if yes then delete or assign local value as appropriate.
    7) Then GoTo > File > Save & Send > Save as project file > Save for sharing (at local location)
    8) Close project plan window and click "Yes" to save changes.
    9) Restart MS Project 2010 and open your project from local location.
    10) Then Goto > File > Save & Send > "Publish to Project Server". This will open "Import Project Wizard" to validate Resources and Task in Project.
    11) Then in Import Project Wizard window at left hand side click "Map Resource" to validate project resources.
    12) This will "Map Project Resource to Enterprise Resource " check all the resources highlighted with "Red" font and map "Standard" calendar to local resources.
           Note: Don't worry about local resource assigned "Standard calendar" but still highlighted "Red".
    13) Then click "OK" and click on "Continue to step 2" at bottom of "Import Project Wizard".
    14) Make sure you get number of errors 0 in step 2, else click on validate resource and take proper corrective action as explained in step 6.
    15) If you leave at least one resource as a local resource (unmapped to an enterprise resource), you will see the local resource in the Import Resource grid on the right side
    of the Confirm Resources page.         
    Examine the value in the "Import" column (if not able to see this column then insert this as new column) for the local resource . 
    The default value is "Yes", then change the value in the "Import" column
    to "No", else system will import the local resource as an enterprise
    resource.
    16) Then "Continue to step 3, 4 and 5".
    17) Then at Step 5 , Save project to Project Server by clicking "Save as" link.
    18) Then publish the project to update the plan at PWA 2010.
    Sachin Vashishth MCTS

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

  • Do I *really* need a Service Connection Point in AD to complete a Project Server 2010 SP2 installation?

    Hi all,
    I have installed Project Server 2010 SP2 and run psconfig.exe
    PSCONFIG is failing because it cannot set up a Service Connection Point in AD. I've checked in AD and the contains 'Microsoft SharePoint Products' does not exist. All the resolutions I can find suggest adding the container into AD.
    The issue I have is that I have no control of the AD, and adding containers will take lengthily negotiation.
    Is there any way of completing the installation and getting my site back without adding the container into AD?
    Thanks in advance.

    other solutions
    1) check timer service see if it is running
    http://www.jonthenerd.com/2011/06/30/sharepoint-2010-sp1-upgrade-error-unable-to-create-a-service-connection-point-in-the-current-active-directory-domain/
    2) check UAC (and the rest of the technet answers - some are listed below)
    http://social.technet.microsoft.com/Forums/en-US/94a8bb64-e0ea-493f-8e29-01347b1fc6c7/psconfig-fails-failed-to-upgrade-sharepoint-products
    3) My workaround:I
    run once again the command „PSConfig.exe -cmd upgrade -inplace b2b -force -cmd applicationcontent -install -cmd installfeatures“  in
    the “Bin” Folder as an administrator console session.In the moment I saw the staus “Configurationtask 5 of 6 is executed”
    I start to run the command “net start SPTraceV4 & net start SPWriterV4 & net start SPAdminV4 & net start SPSearch4 & net start SPTimerV4” in a parallel administrator console session and after that the configuration task finished successfully.
    http://social.technet.microsoft.com/Forums/en-US/94a8bb64-e0ea-493f-8e29-01347b1fc6c7/psconfig-fails-failed-to-upgrade-sharepoint-products
    4) Try running the psconfig.exe command a second time
    5) had the same issue and called Microsoft support.  Here is the fix:
    Stop the "SharePoint 2010 Timer" service
    Delete ONLY the xml files from C:\ProgramData\Microsoft\SharePoint\Config\216f8013-b78b-4e5b-8631-3a5f4c7277e8
    Note: Do NOT delete the cache.ini file in this folder
    Edit cache.ini and change to "1"
    Start "SharePoint
    2010 Timer" service
    Run psconfig again:  PSConfig.exe -cmd upgrade -inplace b2b -wait -force
    6) Initially I tried http://support.microsoft.com/kb/2009272 but
    it did not help (I re-implemented later).
    I re-registered the DLL’s as perhttp://social.technet.microsoft.com/Forums/da/winservergen/thread/b4bd0deb-45d0-4661-8c50-a2b45db41103 from
    NareshD.  I do not believe this is necessary unless there is a corruption in the system but I am noting here just
    in case.
    I tried to run The PSConfig but it was failing:  I
    had to do the following in order to make it finish successfully:
    (from same page at http://social.technet.microsoft.com/Forums/en-US/smallbusinessserver/thread/94a8bb64-e0ea-493f-8e29-01347b1fc6c7/)
    On the migrated SBS2011 PSCDiagnostic Log I found no entry to detect or start the services SPWriterServiceInstance and SPTimerServiceInstance.
    I run once again the command „PSConfig.exe -cmd upgrade -inplace b2b -force -cmd applicationcontent
    -install -cmd installfeatures“ in the “Bin” Folder as an administrator console session.
    In
    the moment I saw the status “Configuration task 5 of 6 is executed” I
    start to run the command “net start SPTraceV4 & net start SPWriterV4 & net start SPAdminV4 & net start SPSearch4 & net start SPTimerV4” in a
    parallel administrator console session and after that, the configuration task finished successfully.  (I
    just opened another cmd window and copy/paste the sequence below when I saw the status “Configuration Task x of y” on the screen:
    net start SPTraceV4 
    net start SPWriterV4 
    net start SPAdminV4 
    net start SPSearch4 
    net start SPTimerV4
    -Note SPSearch4 is disabled in our system…
    Very awkward but it worked…
    I implemented http://support.microsoft.com/kb/2009272 again.
    Backup started working with no errors.

  • MS Project Pro file on Project Server 2010 does not accept [No Group] selection when clicking on Group view

    MS Project Server 2010 gives me the following error when I try to click on the [No Group] group:
    Error message:
    The group "" cannot be found. You tried to display a view that references a group that is not available.
    Specify a different group for the view."
    Note: When I look at the drop downlist for the Group on the View Ribbon, [No Group] appears in the Built-in section of the list. It also appears on the Organizer.

    Michael W --
    I have seen this error message several times when the project got corrupted due to drops in my network connection while the enterprise project was open.  If memory serves me correctly, the method for resolving this problem is to use the Save For
    Sharing feature.  To do this, complete the following steps:
    Add the Save for Sharing button to your Quick Access Toolbar, if you have not already done so previously.  Use the Project Options dialog for this.
    Open the project in question and click the Save for Sharing button.
    In the Save for Sharing dialog, save the MPP file in a location where you can find it easily, such as your Desktop.
    Close the MPP file and then reopen it.
    Click File > Save As and then click the Save button.
    Using this process, Microsoft Project will resolve the corruption in your project.  Please let us know if this process works for you.
    Dale A. Howard [MVP]

  • 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 Webpart for Project Detail Pages

    Hello,
    I do have a requirement where I need to develop a Project Server Web Part to show some calculated project information based on some business rule from Reporting database.
    That webpart I have to add in Project Detail Pages to show calculated project information for the Project I have selected/clicked from Project Center.
    So please tell me how can I link my webpart with ProjUID in URL like "PWA/Project%20Detail%20Pages/ProposalStageStatus.aspx?ProjUid=2b24d36b-7796-4789-ada3-d895d218fc14"
    So that it shows data corresponding to opened project in Project Server.
    Thanks and let me know in case have any doubts in understanding the requirement.

    Hi YLee_1980,
    If I understand your requirement correctly then you can use ProjUID querystring paramater to get specific ProjectUID like below
     HttpContext.Current.Request.QueryString["ProjUid"];
    Then after getting ProjectUID you can use it anywhere in your SQL query, PSI method calling etc etc.
    Also you can look into PS 2010 Solution Starter
    custom solutions Kit to enhance your knowledge on PS 2010 development. That would a great starting point.
    Thanks much hope this will help
    Sachin Vashishth MCTS

  • Project server 2010 don't respect the 'Choose an account' option

    We have in our company Project Server 2010.
    We use to create the 2 URLs accounts for all users through the Create Accounts and choose the 'Choose an account' option so the users can select weather to work offline ("Computer") or from one of the URLs.
    We encountered two cases already, that the Project Pro don't respect the
    'Choose an account' option -
    Every time we select the 'Choose an account' radio botton and close the Project Pro it automatically open the default account without showing the accounts window  and switches back to 'Use my default account'.
    If these 2 users interested in working offline they have to swich it manually only after the default account opens but they cannot open the second URL.
    Does anyone know of such a case and is there a workaround to solve it?

    Hi Maya,<o:p></o:p>
    Do you see this behavior on multiple machines or single machine?<o:p></o:p>
    Try removing the accounts and recreating it again with "Choose an account" option and check if that helps<o:p></o:p>
    Also let us know what value you see for the "Autoconnect" registry key at below location?<o:p></o:p>
    Hkey_current_user\Software\Microsoft\Office\14.0\MS Project\Settings\<o:p></o:p>
    Thanks,<o:p></o:p>
    Kiran K.<o:p></o:p>

Maybe you are looking for

  • My Pavilion g7 no longer recognizes optical drive.

    Over weekend, notebook no longer recognizes DVD drive.  Compuiter lists C: and its two partitions, Drecovery) and EHP Tools), but no DVD drive (I believe it was) H:  When I put in a DVD, the drive spools up a bit, then stops.  Auto-play does not work

  • Application crashes when camera mode 7 is set

    Hi, I have written a small application that grabs images from the camera. The application also allows user to change the video modes and the ROI But I have a problem. Whenever I try to set mode 7 the application crashes. I am also handling the except

  • Consolidate Multiple Digitial Signatures into one Document

    I have one document that I am sending out to multiple people at the same time. I need these people to digitally sign this document concurrently. Once they sign the document, it is sent back to me. Which causes me to have multiple copies of the same d

  • ODBC Connectivity across firewall

    I have two oracle databases on different networks. Obviously there is a firewall in between them. We have a requirement to copy data from one database to another. The options we have (I think) is - Create a text file and copy that data to the other s

  • HT201320 I have recently changed my password on gmail and since i did this I cannot get mail on my iphone or ipad.

    I have done all the obvious things ie. chnaged my password in the settings. However all it says is 'the imap server is not responding check your network connection and that you entered the correct information in the "incoming mail server" field' Plea