Project Server 2013, cannot open project plan in pwa

I have a clean installation of Project Server 2013 and am able to save project plans, send assignments and receive task updates.
The one error so far i'm running into is when I try to open any project plan from PWA - I get the following error:
"we couldn't find the project detail page for this project. see the system administrator."
Can someone assist in resolving this issue?
Thank you,
Damon Curtin | New Signature

Damon,
Navigate to Project Web App>>PWA Settings
Select Enterprise Project types option from "Workflow and Project Details Pages" section
Validate "available project details page section" by default schedule and project details should be selected in right hand side column, if it is not then add these two pages and click save.
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.

Similar Messages

  • Project Server 2013 - Cannot see project schedule in PWA

    Project Server 2013 and Project Pro 2013
    I have admin authority but for some of the projects loaded to the server, and published, i cannot see the Schedule option in the left frame. At least on project has this option available but several others do not. For the projects where I can't see the schedules:
    - Some of these projects were created with imported MPP files from Project 2010, and imported using the wizard,
    - Some were created with imported XML files from Project 2010, and imported using the wizard
    - Some were created with Project Pro 2013 and saved, published to the P13 server.
    Are there some obvious things that I should check as a new admin to this version of Project Server? I'm stumped.
    For all of the above projects (with the issue or not) I can succesfully see everything in Project Professional 2013, and everything seems to function normally in the publish process.

    Hi,
    the first thing to check would be the EPT (Enterprise Project Type) of those projects. Go to server settings, Enterprise Project Types, select the appropriate project type and ensure that the Schedule page is on the left side of the section "New Project
    Page/Project Detail Pages".
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, MCP |

  • Add Group By Categories On Project Professional 2013 when Opening Projects

    I don't know how we got one category to show up, but how do you add "Group by" categories when you are opening a project.  What I mean is when you: 
    >Open Project Professional 2013
    >Click "Open Other Projects"
    >Select (PWA) Project Server Account
    >Click "Browse"
    >Double-click "show me the list of all projects"
    As you can see in the image, we can currently group by "Project Departments".
    I initially thought, all I needed to do was create a Enterprise custom field (Project Entity), but I do not see the new field as a way to group the projects.
    I can create a groups or filters using the new field, but the option does not show up in Project Professional 2013?
    Anyone have any clues?
    It's me

    Is it possible to group by two look up fields, currently I can sort by Project Manager OR Project Status. I'd like to see both. For example I'm a project manager, I use the Group By option to group my projects together, but there are still a lot. I'd like
    to further group, sort or filter to see only Active projects where I am the Project Manager. Any way to do that within Project Server 2013? We are on SP1. Thank you. 

  • Project Server 2013 SSRS with Project Site

    Hi All,
    We are using Project Server 2013. We have developed a SSRS report by accessing Project Site lists. It was working fine for some time, now when we try to access the report it is showing loading. The data source itself is not working, we used http://<servername>/PWA
    as URL for the data source . The reports developed without Project Site list are working fine. 
    After 5 to 10 minutes it is showing the below error.
    An error has occurred during report processing. (rsProcessingAborted)
    Query execution failed for dataset 'dtRisk'. (rsErrorExecutingCommand)
    An error occurred when accessing the specified SharePoint list. The connection string might not be valid. Verify that the connection string is correct. (rsSPDataProviderError)
    For more information about this error navigate to the report server on the local server machine, or enable remote errors
    When we try to test the datasource connecting string, after 5 minutes showing the below error.
    An error occurred when accessing the specified SharePoint list. The connection string might not be valid. Verify that the connection string is correct. (rsSPDataProviderError) Get Online Help For more information about this error navigate to the report server
    on the local server machine, or enable remote errors 
    Below connection setings
    Thanks in advance , Taj

    Hi Taj, 
    Your list is in PWA? is a global list?, if not, try to make a connection with http://server/PWA/SiteProject may this can resolve, because when you do some DS with a SPList, your need to stablish that connection directly at site path where you have the list.
    I hope this help
    Ray

  • Project Server 2013: customize JSGrid (Project Center, MyTasks, etc...) ?

    Hi,
    In Project Server 2010, it was possible to customize the JSGrid, thanks to the tutorial included in the SDK "Walkthrough:
    Customizing the PWA Ribbon and Accessing the JS Grid". It works really fine, and I used this possibility in many Project Server 2010 implementation for Customer.
    I would like to make it on Project Server 2013, but the same code doesn't work. I found some posts
    here, where people had the same issue, but no clear answer.  
    The Project Server 2013 SDK does not contain the same tuto upgraded for 2013, and I hope that this possibility still exists.
    If somebody has a very basic example to show how to execute some custom code on Focus Change event, or clic, or what ever event happening on this JSGrid, it would be very nice to share.
    My installation is On Premise, not in On Line.
    Thank you for your help !
    Sylvain

    Hi,
    In fact for filtering, you have to use delegate.
    The "HandleFilter" function must be created by you. You have to bind this function to the correct delegate. 
    For filtering, the main delegates are:
    SP.JsGrid.DelegateType.AutoFilter
    SP.JsGrid.DelegateType.LaunchFilterDialog
    SP.JsGrid.DelegateType.GetAutoFilterEntries
    The post
    here explains the process for 2010. For Project Server 2013, the difference is that we don't have the same objects.
    Here you can find the way to declare the delegate in Project Server 2013, with the SetDelegate method:
    var pc; // Contains the Project Center extension object.
    var JsGridControlInstance;
    var JsGridSatellite;
    _spBodyOnLoadFunctionNames.push("ProjectCenterMain");
    function ProjectCenterMain() {
    pc = new ProjectCenterExtension();
    function ProjectCenterExtension() {
    if (typeof projectCenterComponent === 'undefined')
    return;
    JsGridSatellite = projectCenterComponent.get_GridSatellite();
    JsGridControlInstance = projectCenterComponent.get_GridSatellite().GetJsGridControlInstance();
    JsGridSatellite.get_tableViewParameters().bAutoFilterableColumns = true;
    JsGridControlInstance.SetDelegate(SP.JsGrid.DelegateType.AutoFilter, HandleFilter);
    JsGridControlInstance.SetDelegate(SP.JsGrid.DelegateType.LaunchFilterDialog, FilterDialog);
    JsGridControlInstance.SetDelegate(SP.JsGrid.DelegateType.GetAutoFilterEntries, FilterMenu);
    function HandleFilter(newState) {
    alert("Filter !");
    function FilterDialog(param) {
    alert("FilterDialog !");
    function FilterMenu(param) {
    alert("FilterMenu !");
    My advice to search, is to put a break point on the ProjectCenterExtension function, and through debugger, tou can drill down in the main methods and properties. 
    Often you will see functions with get_XYZ(), and then be able to make the matching with the Project Server 2010 syntax.
    For the filtering implementation, I beleive that you can deal with your article based on 2010: it should work as soon as you will get the equivalent objects in 2013.
    Hope it helps !
    Sylvain

  • Project Server 2013 - Cannot Create Site

    When creating and publishing a project, Project Server is set up to create a site URL as part of the process. Since the middle part of this week 12/16/14 this functionality
    stopped working and we need it to be working.
    Here are the error messages and logs pulled from Project Server and SharePoint Central Admin
    Project Server Manage Queue Jobs
    Queue:?GeneralQueueJobFailed (26000) - CreateWssSite.CreateWssSiteMessage. Details: id='26000' name='GeneralQueueJobFailed' uid='5461af96-1787-e411-80e9-001dd8b71f51' JobUID='aa2d518a-1787-e411-80e9-001dd8b71f51'
    ComputerName='bbe43e90-a923-40ac-8ca7-e8953ab95807' GroupType='CreateWssSite' MessageType='CreateWssSiteMessage' MessageId='1' Stage='' CorrelationUID='9722d79c-33d8-a082-9580-749b949e39eb'. For more details, check the ULS logs on machine bbe43e90-a923-40ac-8ca7-e8953ab95807
    for entries with JobUID aa2d518a-1787-e411-80e9-001dd8b71f51.
    ULS Logs from SharePoint
    Standard Information:PSI Entry Point: <unknown>
    Project User: <unknown>
    Correlation Id: <unknown>
    PWA Site URL:
    SA Name: <unknown>
    PSError: <unknown>
    A queue job has failed. This is a general error logged by the Project Server Queue everytime a job fails - for effective troubleshooting use this error message with other more
    specific error messages (if any), the Operations guide (which documents more details about queued jobs) and the trace log (which could provide more detailed context). More information about the failed job follows. GUID of the failed job: aa2d518a-1787-e411-80e9-001dd8b71f51.
    Name of the computer that processed this job: bbe43e90-a923-40ac-8ca7-e8953ab95807 (to debug further, you need to look at the trace log from this computer). Failed job type: CreateWssSite. Failed sub-job type: CreateWssSiteMessage. Failed sub-job ID: 1. Stage
    where sub-job failed:  (this is useful when one sub-job has more than one logical processing stages).
    Any assistance you can provide at this point will be key as our services are impacted with this error.

    Hi Mike. Have you changed / modified the project site template recently? If you set the EPT to use the default project site template does it work? Paul
    Paul Mather | Twitter |
    http://pwmather.wordpress.com | CPS |
    MVP | Downloads

  • Matching resources based on skill profile (Project Server 2013 Online and Project Pro 2013)

    Hey gang,
    Has anyone seen any reported bugs surronding the resource matching feautre in Project 2013 (On-Line)?
    I have done this before, so I know how this works.  In fact, I get different results when I try the Match button in Project Professional 2013 (on premise), versus when I try to use it via Build Team from Enterprise in PWA Project Details.  i.e.,
    when setting up the custom enterprise resource field for matching I have selecting the option to use this field for matching, then I populated my resources' profile with a value accrodingly.
    Also noted that I do not see the matching button when using the Build Team from Enterprise for Resource plans, is this normal?
    Thanks in advance,
    \Spiro Theopoulos PMP, MCITP. Montreal, QC (Canada)

    Hi Spiro,
    I didn't have a chance to test it. Nevertheless I can confirm that at least for PS2010, the "match" feature was not available for the resource plan "build team". In my point of view, that makes sense since the resource plan is not intended to micro-manage
    activities but more for planning generic skills demand.
    Hope this helps,
    Guillaume Rouyre, MBA, MCP, MCTS |

  • Project Server 2013 on premises Project Archiving not happening

    Dear All
    I have a small problem, in that my overnight jobs are not kicking off.  Things like the Scheduled Project Backups and the OLAP cube.  The cube builds ok if I do it manually, it just doesn't even start overnight.
    I've had a look in the Time Job Status page in Sharepoint, but simply can't see anything there that indicates there is a scheduled job for the backups or the archive.  Nothing appears to be failing, it's just not there.
    If anyone has any ideas I'd very much appreciate it.
    John.

    Hi Paul
    I used one of my calls with MS for this in the end, and after much checking and deliberating they came up with the same solution as you did.  Thought you'd like to know.
    The actual issue was that my PWA instance had no WebAppUsername account against it, quite how I managed to do that I don't know.  The following Sharepoint Powershell commands identified that little problem.
    $serviceapp = get-spserviceapplication | ? {$_.TypeName –like “*Project*”}
    $pwainstances = $serviceapp.Sitecollection
    $pwainstances
    The final command prints out a table of information for each PWA instance, thought it might be useful for someone if they experience a similar problem.
    John.

  • Project Server 2013 administrator account unable to access PWA site

    I've just finished installing and configuring all the appropriate pieces to get PS2013 up and running along with a pwa site. The problem I'm running into is that my designated administrative account for the pwa site is unable to login at all. I receive
    the "Sorry this site hasn't been shared with you." error. The domain account has all the appropriate permissions according
    to the PS2013 guide, the services are all up and running, and the pwa site is provisioned. I'm at a loss as to what to change to access the pwa site.

    Using SharePoint Central admin navigate to PWA site provisioning page
    Hover the mouse point over provisioned PWA site and select view.
    Review Primary administrator's field.
    Let me know if this does not help, we can also find out using querying database but only with SELECT query.
    Since this is brand new PWA, you can delete the PWA site make sure to uncheck the check box delete site collection and re-provision PWA site using same name and database but this time you can either use old account or use new account
    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.

  • Baseline timephased data disappeared in MS Project 2013 with Project Server 2013!!!

    Hi,
    I am facing a very strange problem within a custom "task usage" view that I' 
    ve created. In the right pane I have three timephased fields (work, baseline 
    work and actual work). When I first add resources to tasks and save baseline 
    everything works great and the baseline work data are distributed normally in 
    the respective line next to the resource name and also in the summary tasks 
    lines. A few days after saving and publishing the project to the Project 
    Server 2013, I opened the project from the PrjProfessional and the timephased 
    baseline data had disappeared. However, the total values of baseline work 
    (shown in the respective column at the left pane) were all still there. In 
    other words, I cannot see the distribution of baseline work into the timephased 
    schedule. When I check the database the data is also gone (MSP_EpmAssignmentBaselineByDay table).
    This has a huge impact for the customer!
    If found a similar issue reported with Project 2007 --> http://www.44342.com/Microsoft-Project-f1227-t2482-p1.htm
    Regards,
    Philip
    Verlinden Philip

    Hi Philip,
    Please refer to thjis thread: 
    https://social.technet.microsoft.com/Forums/projectserver/en-US/5f721eaf-6424-4b32-9c96-fed646e94f88/cumulative-timephased-data-in-ps-2013-db-wrong-or-just-misunderstood?forum=projserv2010setup
    I think it is a known bug that Elli identified a few weeks ago. I don't know if there is a fix planned soon by MS.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, MCP |

  • Error while creating a Timesheet - Project Server 2013

    Hi everyone,
    One of user of PWA encounters an issue when he tries to create a timesheet. This error only occurs with a timesheet of
    a specific period, he can create all the other timesheet.
    So, when he creates the timesheet, this error occurs : "The timesheet creation failed, because of problems with Project Web App or with data validations"
    After reloaded the list of the timesheets, a link to go to the specific timesheet
    is available but if we click on it, we have this error :
    "View Failue - The view failed to load"
    I think , this error occurs
    because the timesheet is not realy existing even if we have a link to it.
    In the log (full log at the end), I've got this error :
    Exception occured in method 'TimeSheet.CreateTimesheet' System.ArgumentException: These columns don't currently have unique values.
    I've found this link with the same kind of problem :
    http://social.technet.microsoft.com/Forums/projectserver/en-US/b0a92afc-11fc-40ef-9a44-357d953b31f6/unable-to-open-or-create-timesheets-these-columns-dont-currently-have-unique-values?forum=projectserver2010general but I've checked and published all the
    user project but still have the error.
    Have you got any idea where are these columns ? How can I found them without checked every project of PWA ?
    Thanks,
    Patmol
    Full logs, for information :
    [bucketHash:E3B9DED0] Exception occured in method 'TimeSheet.CreateTimesheet' System.ArgumentException: These columns don't currently have unique values. at System.Data.ConstraintCollection.AddUniqueConstraint(UniqueConstraint constraint) at System.Data.ConstraintCollection.Add(Constraint constraint, Boolean addUniqueWhenAddingForeign) at System.Data.DataTable.set_PrimaryKey(DataColumn[] value) at Microsoft.Office.Project.Server.DataAccessLayer.Generated.TimesheetDalBase.ReadCustomFieldsForAssignments(ISet`1 assignmentUids) at Microsoft.Office.Project.Server.BusinessLayer.Timesheet.ImportCustomFields(HashSet`1 assignmentUids) at Microsoft.Office.Project.Server.BusinessLayer.Timesheet.ImportActualsAndCustomFields(IEnumerable`1 assignmentUids, ISet`1 userImported) at Microsoft.Office.Project.Server.BusinessLayer.TimesheetLoaderForGrid.Load() at Microsoft.Office.Project.Server.BusinessLayer.TimeSheet.CreateTimesheet(TimesheetDataSet dsDelta, PreloadType preloadType) at Microsoft.Office.Project.Server.Wcf.Implementation.TimeSheetImpl.<>c__DisplayClass45.<CreateTimesheet>b__44() at Microsoft.Office.Project.Server.Wcf.Implementation.WcfMethodInvocation.InvokeBusinessObjectMethod(String businessObjectName, String methodName, IEnumerable`1 actions) StackTrace: at Microsoft.Office.Project.Server.Native.dll: (sig=6ea170d1-988e-4153-9f1d-0305c0ea0309|2|microsoft.office.project.server.native.pdb, offset=3C1E) at Microsoft.Office.Project.Server.Native.dll: (offset=1255D)
    Watson bucket parameters: Microsoft Project Server 2013, ULSException14, 070f6ea0 "project server", 0f0011db "15.0.4571.0", ea364808 "system.data", 0400766f "4.0.30319.0", 52310bef "thu sep 12 02:33:51 2013", 00000e02 "00000e02", 00000020 "00000020", 44395864 "argumentexception", 00101621 "aeby7"
    Error is: GeneralUnhandledException. Details: General Unhandled Exception in _TimeSheet.CreateTimesheet_ Attributes: System.ArgumentException: These columns don't currently have unique values. at System.Data.ConstraintCollection.AddUniqueConstraint(UniqueConstraint constraint) at System.Data.ConstraintCollection.Add(Constraint constraint, Boolean addUniqueWhenAddingForeign) at System.Data.DataTable.set_PrimaryKey(DataColumn[] value) at Microsoft.Office.Project.Server.DataAccessLayer.Generated.TimesheetDalBase.ReadCustomFieldsForAssignments(ISet`1 assignmentUids) at Microsoft.Office.Project.Server.BusinessLayer.Timesheet.ImportCustomFields(HashSet`1 assignmentUids) at Microsoft.Office.Project.Server.BusinessLayer.Timesheet.ImportActualsAndCustomFields(IEnumerable`1 assignmentUids, ISet`1 userImported) at Microsoft.Office.Project.Server.BusinessLayer.TimesheetLoaderForGrid.Load() at Microsoft.Office.Project.Server.BusinessLayer.TimeSheet.CreateTimesheet(TimesheetDataSet dsDelta, PreloadType preloadType) at Microsoft.Office.Project.Server.Wcf.Implementation.TimeSheetImpl.<>c__DisplayClass45.<CreateTimesheet>b__44() at Microsoft.Office.Project.Server.Wcf.Implementation.WcfMethodInvocation.InvokeBusinessObjectMethod(String businessObjectName, String methodName, IEnumerable`1 actions) . Standard Information: PSI Entry Point: Project User: i:0#.w|wavenet\cev Correlation Id: 9709e41b-9a18-e411-941e-00155d029b05 PWA Site URL: http://intranet.wavenet.lan/PWA SA Name: Project Server Application PSError: GeneralUnhandledException (42), LogLeve...

    Hi Patmol,
    Have you tried to go to the previous or next timesheet and then navigate with the "previous period" or "next period" to the timesheet in question.
    Also have you tried to open it using a delegation session?
    Hope this helps,
    Guillaume Rouyre, MBA, MCP, MCTS |

  • Which sharepoint service applications & services are required for Project server 2013 to work fine.

    HI,
    Can any one help me,
    I am planning to install project server 2013,  what are the service applications and Services ( Manage services on server in central admin ) in sharepoint  are required for project server 2013 to work fine, so that i will run only  service
    application and services to increase server performance..i don't want to configure all service applications  when i  am configuring.
    Thanks in Advance..
    vijay kommireddi

    Hi Vijay,
    If you are installing Project Server on SharePoint farm, You need to start the service Project Application Service which would be available after you install project Server 2013.
    For Project Server Reporting you need to start Excel service and Secure Store service.
    http://technet.microsoft.com/en-us/library/ee662106(v=office.15).aspx
    Thanks,
    Phani

  • How to import the Issues list from an Excel File in Project Server 2013

    Hi,
    I'm using Project Server 2013.
    A Project Manager has been playing with the Issues List, deleting some fields, creating new columns and modifying some columns name. The result of this is that I'm getting this error everytime the task
    Reporting (Project Sync) is executed:
    General
    Reporting Wss list sync failed:
    ReportingWssSyncListFailed (24018) - 1100. Details: id='24018' name='ReportingWssSyncListFailed' uid='4feafda7-f147-e411-940d-005056957f05' SPListType='a1efd9a9-bd03-4604-91f3-31a2cc5693ff' Error='1100'.
    ReportingWssSyncListFailed (24018) - 1100. Details: id='24018' name='ReportingWssSyncListFailed' uid='5deafda7-f147-e411-940d-005056957f05' SPListType='a1efd9a9-bd03-4604-91f3-31a2cc5693ff' Error='1100'.
    ReportingWssSyncListFailed (24018) - 1100. Details: id='24018' name='ReportingWssSyncListFailed' uid='69eafda7-f147-e411-940d-005056957f05' SPListType='a1efd9a9-bd03-4604-91f3-31a2cc5693ff' Error='1100'.
    ReportingWssSyncListFailed (24018) - 1100. Details: id='24018' name='ReportingWssSyncListFailed' uid='75eafda7-f147-e411-940d-005056957f05' SPListType='a1efd9a9-bd03-4604-91f3-31a2cc5693ff' Error='1100'.
    ReportingWssSyncListFailed (24018) - 1100. Details: id='24018' name='ReportingWssSyncListFailed' uid='81eafda7-f147-e411-940d-005056957f05' SPListType='a1efd9a9-bd03-4604-91f3-31a2cc5693ff' Error='1100'.
    ReportingWssSyncListFailed (24018) - 1100. Details: id='24018' name='ReportingWssSyncListFailed' uid='8deafda7-f147-e411-940d-005056957f05' SPListType='a1efd9a9-bd03-4604-91f3-31a2cc5693ff' Error='1100'.
    Reporting message processor failed:
    ReportingWSSSyncMessageFailed (24016) - RDS failed while trying to sync one or more SP lists. The RDS queue message will be retried.. Details: id='24016' name='ReportingWSSSyncMessageFailed' uid='5beafda7-f147-e411-940d-005056957f05' QueueMessageBody='ProjectUID='a1efd9a9-bd03-4604-91f3-31a2cc5693ff'.
    ForceFullSync='False'. SynchronizationType='Issues'' Error='RDS failed while trying to sync one or more SP lists. The RDS queue message will be retried.'.
    ReportingWSSSyncMessageFailed (24016) - RDS failed while trying to sync one or more SP lists. The RDS queue message will be retried.. Details: id='24016' name='ReportingWSSSyncMessageFailed' uid='67eafda7-f147-e411-940d-005056957f05' QueueMessageBody='ProjectUID='a1efd9a9-bd03-4604-91f3-31a2cc5693ff'.
    ForceFullSync='False'. SynchronizationType='Issues'' Error='RDS failed while trying to sync one or more SP lists. The RDS queue message will be retried.'.
    ReportingWSSSyncMessageFailed (24016) - RDS failed while trying to sync one or more SP lists. The RDS queue message will be retried.. Details: id='24016' name='ReportingWSSSyncMessageFailed' uid='73eafda7-f147-e411-940d-005056957f05' QueueMessageBody='ProjectUID='a1efd9a9-bd03-4604-91f3-31a2cc5693ff'.
    ForceFullSync='False'. SynchronizationType='Issues'' Error='RDS failed while trying to sync one or more SP lists. The RDS queue message will be retried.'.
    ReportingWSSSyncMessageFailed (24016) - RDS failed while trying to sync one or more SP lists. The RDS queue message will be retried.. Details: id='24016' name='ReportingWSSSyncMessageFailed' uid='7feafda7-f147-e411-940d-005056957f05' QueueMessageBody='ProjectUID='a1efd9a9-bd03-4604-91f3-31a2cc5693ff'.
    ForceFullSync='False'. SynchronizationType='Issues'' Error='RDS failed while trying to sync one or more SP lists. The RDS queue message will be retried.'.
    ReportingWSSSyncMessageFailed (24016) - RDS failed while trying to sync one or more SP lists. The RDS queue message will be retried.. Details: id='24016' name='ReportingWSSSyncMessageFailed' uid='8beafda7-f147-e411-940d-005056957f05' QueueMessageBody='ProjectUID='a1efd9a9-bd03-4604-91f3-31a2cc5693ff'.
    ForceFullSync='False'. SynchronizationType='Issues'' Error='RDS failed while trying to sync one or more SP lists. The RDS queue message will be retried.'.
    ReportingWSSSyncMessageFailed (24016) - RDS failed while trying to sync one or more SP lists. The RDS queue message will be retried.. Details: id='24016' name='ReportingWSSSyncMessageFailed' uid='97eafda7-f147-e411-940d-005056957f05' QueueMessageBody='ProjectUID='a1efd9a9-bd03-4604-91f3-31a2cc5693ff'.
    ForceFullSync='False'. SynchronizationType='Issues'' Error='RDS failed while trying to sync one or more SP lists. The RDS queue message will be retried.'.
    Queue:
    GeneralQueueJobFailed (26000) - ReportingWSSSync.WSSSyncMessageEx. Details: id='26000' name='GeneralQueueJobFailed' uid='98eafda7-f147-e411-940d-005056957f05' JobUID='9e937da7-f147-e411-940e-005056957f0d' ComputerName='b579360a-53ab-4fe0-bf9b-c62f5e8d3529'
    GroupType='ReportingWSSSync' MessageType='WSSSyncMessageEx' MessageId='1' Stage='' CorrelationUID='0945bd9c-0d6a-a0f1-47b0-68cdfcfbff9a'. For more details, check the ULS logs on machine
    b579360a-53ab-4fe0-bf9b-c62f5e8d3529 for entries with JobUID
    9e937da7-f147-e411-940e-005056957f0d
    What I'm trying to do is to create a new Project from the scratch, update the Issues List, not deleting or modifying columns, just creating new columns in order to match the names he (the Project Manager) put in his Issues List, then Export the list to Excel,
    and then create a datasheet view matching the Exported list, but here I don't know how to import the list (copy / paste or whatsoever it can be done...)
    Do you know how to do it, or do you know another/any method to solve this problem?
    Thank you in advance,
    José Espases

    Hi José,
    2 considerations: 
    The first one is that (as you experienced) one should not delete or rename any of the predefined columns in the risk/issue list. What you did is the right way, meaning keeping the native column as is and creating new ones based on the business needs. Finally
    you just need to create view with the appropriate fields.
    Then for importing risks from an Excel list, I can't test it right now, but you should have a datagrid view (MS Access type) allowing you pasting data from Excel.
    Hope this helps,
    Guillaume Rouyre, MBA, MCP, MCTS |

  • Project Server 2013 AD Enterprise Resource Pool Synchronization Exception

    Hello,
    I am looking for assistance from the project server community.
    When I click “Save and Synchronize” on the Active Directory Enterprise Resource Pool Synchronization page nothing happens and the status does not change.
    This is a new instance of PWA and I am preforming this task using the farm admin account. The farm admin account can read AD.
    Error 1:
    w3wp.exe (0x1B98) 
    0x0B8C       Project Server              
    General      aeby7         
    Exception [bucketHash:F08803DE] Exception occured in method 'Admin.ResolveActiveDirectoryGroups' System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary.    
    at Microsoft.Office.Project.Server.ClaimsHelper.GetFormsAuthenticationProviderName(Uri context, SPUrlZone zone)    
    at Microsoft.Office.Project.Server.BusinessLayer.ActiveDirectoryUtility.TryGetGroupInfo(String searchRoot)    
    at System.Linq.Enumerable.WhereSelectArrayIterator`2.MoveNext()    
    at System.Linq.Buffer`1..ctor(IEnumerable`1 source)    
    at System.Linq.Enumerable.ToArray[TSource](IEnumerable`1 source)    
    at Microsoft.Office.Project.Server.Wcf.Implementation.PWAImpl.<>c__DisplayClassf2.<AdminResolveActiveDirectoryGroups>b__f1()    
    at Microsoft.Office.Project.Server.Wcf.Implementation.WcfMethodInvocation.InvokeBusinessObjectMethod(String businessObjectName, String methodName, IEnumerable`1 actions) StackTrace: 
    at Microsoft.Office.Project.Server.Native.dll: (sig=[sig]|2|microsoft.office.project.server.native.pdb, offset=3C1E) at Microsoft.Office.Project.Server.Native.dll: (offset=1254D)                       
    d360539c-6d89-70e7-c077-92da686b0689
    Error 2:
    Error is: GeneralUnhandledException. Details: General Unhandled Exception in _Admin.ResolveActiveDirectoryGroups_ Attributes: 
    System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary.   
     at Microsoft.Office.Project.Server.ClaimsHelper.GetFormsAuthenticationProviderName(Uri context, SPUrlZone zone)   
     at Microsoft.Office.Project.Server.BusinessLayer.ActiveDirectoryUtility.TryGetGroupInfo(String searchRoot)   
     at System.Linq.Enumerable.WhereSelectArrayIterator`2.MoveNext()   
     at System.Linq.Buffer`1..ctor(IEnumerable`1 source)   
     at System.Linq.Enumerable.ToArray[TSource](IEnumerable`1 source)   
     at Microsoft.Office.Project.Server.Wcf.Implementation.PWAImpl.<>c__DisplayClassf2.<AdminResolveActiveDirectoryGroups>b__f1()   
     at Microsoft.Office.Project.Server.Wcf.Implementation.WcfMethodInvocation.InvokeBusinessObjectMethod(String businessObjectName, String methodName,
    IEnumerable`1 actions)  . Standard Information: PSI Entry Point: 
    Project User: i:0#.w|[DOMAIN\UserID] Correlation Id: f1f1a77f-6b45-e311-9407-00155d2abe21 PWA Site URL: [PWA URL] SA Name: Project Server Service Application PSError: GeneralUnhandledException (42), LogLevelManager Warning-ulsID:0x00101622 has no entities
    explicitly specified.

    Hi,
    I also get the same error when I'm trying to do the synchronization between Enterprise Resource Pool and Active Directory.
    I am in a single domain topology between Project Server 2013 and AD, and I'm doning the synchronization with the farm admin account, who has read/write access to AD.
    Here are the last relevant messages I see:
    w3wp.exe (0x2BE8) 0x1568 Project Server General aeby7 Exception
    [bucketHash:F0FACBDF] Exception occured in method 'Admin.ResolveActiveDirectoryGroups' System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary.
    at Microsoft.Office.Project.Server.ClaimsHelper.GetFormsAuthenticationProviderName(Uri context, SPUrlZone zone)
    at Microsoft.Office.Project.Server.BusinessLayer.ActiveDirectoryUtility.TryGetGroupInfo(String domain, String searchPath, String searchFilter)
    at Microsoft.Office.Project.Server.BusinessLayer.ActiveDirectoryUtility.TryGetGroupInfoByClaim(String encodedClaim)
    at System.Linq.Enumerable.WhereSelectArrayIterator`2.MoveNext()
    at System.Linq.Buffer`1..ctor(IEnumerable`1 source)
    at System.Linq.Enumerable.ToArray[TSource](IEnumerable`1 source)
    at Microsoft.Office.Project.Server.Wcf.Implementation.PWAImpl.<>c__DisplayClass10a.<AdminResolveActiveDirectoryGroups>b__109()
    at Microsoft.Office.Project.Server.Wcf.Implementation.WcfMethodInvocation.InvokeBusinessObjectMethod(String businessObjectName, String methodName, IEnumerable`1 actions) StackTrace:
    2b3d83ee10e5|2|, microsoft.office.project.server.native.pdb, offset=3C1E)
    at Microsoft.Office.Project.Server.Native.dll: (offset=1255D)
    w3wp.exe (0x2BE8) 0x1568 Project Server Unified Logging Service c91s Monitorable
    Watson bucket parameters: Microsoft Project Server 2013, ULSException14, 070f6ea0 "project server",  0f001181 "15.0.4481.0", 6962a0f6 "microsoft.office.project.server.administration", 0f0011ad "15.0.4525.0", 51ade0c4 "tue jun 04 14:42:44 2013",  0000020f
    "0000020f",  0000003b "0000003b",  0560164b "keynotfoundexception", 00101621 "aeby7"
     w3wp.exe (0x2BE8) 0x1568 Project Server General aeby8 Medium
    Error is: GeneralUnhandledException. Details: General Unhandled Exception in _Admin.ResolveActiveDirectoryGroups_ Attributes:  System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary.
    at Microsoft.Office.Project.Server.ClaimsHelper.GetFormsAuthenticationProviderName(Uri context, SPUrlZone zone)
    at Microsoft.Office.Project.Server.BusinessLayer.ActiveDirectoryUtility.TryGetGroupInfo(String domain,  String searchPath, String searchFilter)
    at Microsoft.Office.Project.Server.BusinessLayer.ActiveDirectoryUtility.TryGetGroupInfoByClaim(String encodedClaim)
    at System.Linq.Enumerable.WhereSelectArrayIterator`2.MoveNext()     at System.Linq.Buffer`1..ctor(IEnumerable`1 source)
    at System.Linq.Enumerable.ToArray[TSource](IEnumerable`1 source)
    at Microsoft.Office.Project.Server.Wcf.Implementation.PWAImpl.<>c__DisplayClass10a.<AdminResolveActiveDirectoryGroups>b__109()
    at Microsoft.Office.Project.Server.Wcf.Implementation.WcfMethodInvocation.InvokeBusinessObjectMethod(String businessObjectName, String methodName, IEnumerable`1 actions)  . Standard Information: PSI Entry Point:  Project User: LUXAIRLG\SQLADMIN2012
    Correlation Id: 6cef3814-b3a2-e311-93f9-005056921080 PWA Site URL: xxx SA Name: PS2013 - Project Server Service Application PSError: GeneralUnhandledException (42). LogLevelManager Warning-ulsID:0x00101622 has no entities explicitly specified.
    w3wp.exe (0x2BE8) 0x1568 Project Server Project Web App af04k Medium
    Void SaveButtonClick(System.Object.System.Web.UI.WebControls.CommandEventArgs) : GeneralUnhandledException
    Any ideas?
    Thanks in advance

  • Problem after installation Project Server 2013 CU September 9, 2014

    Dear All,
    I have some problems after installation
    Project Server 2013 CU September 9, 2014 (Hotfix 2883072) on 3 level farm
    Before installing CU, I have installed
    SP1 for Project Server 2013, installation and configuration was successful.
    Then I have installed CU and I have not get any errors during installation process. Then I have restarted servers and in SharePoint health analyzer got an error about patch/installation status
    on WFE server.
    I checked in Windows installed updates and hotfix is installed. I checked in SharePoint Update and Upgrade history and there were no errors during installation. But when I checked in Manage
    Patch Status list I found an information:
    Language Pack for SharePoint and Project Server 2013 - Russian
    Microsoft Project Server Russian Language Pack 15.0.4420.1017 Installed
    Hotfix for Microsoft Project Server 2013 (KB2883072) 64-Bit Edition
    15.0.4649.1001 Missing/Required
    Microsoft Project Server 2013
    Microsoft Project Server English Language Pack 15.0.4571.1502 Installed
    Hotfix for Microsoft Project Server 2013 (KB2883072) 64-Bit Edition
    15.0.4649.1001 Missing/Required
    Service Pack 1 for Microsoft Project Server 2013 (KB2880553) 64-Bit Edition
    15.0.4571.1502 Installed
                Microsoft Project Server Web Front End Server
    15.0.4571.1502 Installed
    Hotfix for Microsoft Project Server 2013 (KB2883072) 64-Bit Edition
    15.0.4649.1001 Missing/Required
    Service Pack 1 for Microsoft Project Server 2013 (KB2880553) 64-Bit Edition
    15.0.4571.1502 Installed
    If I run installation again I get message that nothing will be updated - no update needed.
    Please help, how I can install missed packages?

    The problem was solved !
    I solve it using two ways:
    1. I have installed the hotfix for Project Server -  Hotfix for Project Server 2013 October 14, 2014 KB 2889959 (Projectserverwfe-x-none.msp, Projectservermui-Language-Code.msp)
    2. using command
    Psconfig -cmd upgrade -inplace b2b -force -cmd applicationcontent -install -cmd installfeatures -cmd installcheck -noinstallcheck
    After two actions I was able to run SharePoint Configuration Wizard and upgrade database. Configuration completed successful.

Maybe you are looking for