Questions tagged [ms-project-server-2013]

Microsoft Project Server 2013 offers flexible solutions for project portfolio management (PPM) and everyday work, enabling you to effectively execute and achieve strategic priorities.

101 questions
0
votes
1 answer

Query that get the projects whose name 'starts with'. Project Server 2013

Attempt to obtain projects that begin with a particular word , but I get the following error: "The 'StartsWith' member cannot be used in the expression." ProjectContext projContext = new ProjectContext(urlPWA); projContext.Credentials = new…
0
votes
2 answers

Is creating an EPT (MS PS Enteprise Project Type) via PSI/CSOM possible?

The following code does not throw any exception but it also doesn't create a new EPT: public void CreateEnterpriseProjectType(Guid eptGuid, string eptName, string eptDescription) { ProjectContext pwaContext = new…
Ralu D.
  • 1
  • 3
0
votes
0 answers

Getting error while deleting entities in Project server 2013 using asmx web service through Soap UI

I want to remove task from project in project server 2013 using Soap UI via its exposed asmx services, but i am getting ProjectServerError(s) LastError=GeneralUnhandledException while doing operation through Soap UI and java code also. My request…
Ajinkya
  • 125
  • 7
0
votes
0 answers

MS project server Error while updating team through SoapUI

I want to update project team of project using Soap UI, But i m getting GeneralUnhandledException while doing the operation through Soap UI. Following is my request body and response : URL of asmx service :…
Ajinkya
  • 125
  • 7
0
votes
1 answer

Where is "Status Update History" in Database

Does anyone out there know where the information for "Status Update History" in the Approval Center is located in the database? In particular I am looking for the Status Flag (unpublished or published) for a given update. I am trying to build a…
0
votes
2 answers

SQL: Find MIN but greater than a MAX

I am working with task history and trying to find two dates attached to the same record: 1) Most recent time a task was approved (max approve); 2)The first submitted date after said approval. Here is what I have so far: Select …
abauman
  • 96
  • 6
0
votes
1 answer

Delete Task in Project Server PSI

I have a problem when i want to delete a task or tasks in project server i used this syntax, deleteTask is Guid[] projectClient.QueueDeleteFromProject(jobUID, new Guid(sessionUID), new Guid(projectUID), deleteTask); and wait for queue if…
0
votes
1 answer

Close Tasks to Update in a SubProject

I am trying to lock tasks in a subproject using the PWA "Close Tasks to Update" view. However, the subproject has linked tasks to other projects, and in the PWA view it is not registering the required task-level field (they are filled out in the…
abauman
  • 96
  • 6
0
votes
1 answer

How to create an Enterprise custom field programmatically for Project Server

I want a Sharepoint 2013 app to create programmatically an Enterprise Custom Field when it runs for the first time. I fiddled around with the following code snippet, but it's not working var projContext = PS.ProjectContext.get_current(); function…
0
votes
4 answers

Exception CICONotCheckedOut when removing items from LookupTable using Project Server CSOM API

I have a Project Online solution and need to remove items from a LookupTable (Microsoft.ProjectServer.Client.LookupTable), because I need to clear it before I add new items. Primary use for this is to do unit testing where I create items and then…
Mattias Lindberg
  • 2,064
  • 3
  • 24
  • 34
0
votes
1 answer

Error: Cannot transfer an MS Shipped object when consolidate PWA databases

I've tried to upgrade my project server 2010 to 2013. But when I consolidate the databases, I always get error message: Cannot transfer an MS Shipped object. Here is my command: PS C:\Users\gita_p> Convertto-SPProjectDatabase -WebApplication…
0
votes
1 answer

Is Feature Work Item Type suitable to be shared between TFS and Project Server?

In the recent versions of MSF for CMMI there's a new work item type: Feature. Theoretically, a feature contains some requirements as its children and, it defines a portfolio. While integrating with project server, is it a good practice to use just…
mehrandvd
  • 8,806
  • 12
  • 64
  • 111
0
votes
2 answers

Project Server Sharing resources across departments

Microsoft Project Server 2013, I am newbie , I had a system under MSProfessional to see capacity when I had just parts of people We have a number of staff that work % of time in multiple departments, is there a way of seeing the total capacity of a…
0
votes
2 answers

Additional Workflow Data in Project Server Workflow empty

I am trying to build a Project Server workflow using SharePoint Designer 2013. The workflow itself is working. It can create a task in the Project Server task list and approving it progresses the workflow. However, if you click "Additional…
0
votes
1 answer

MS Project Server Web App 2013 Allow Task for Weekends

How do i enable tasks to be scheduled during the weekends. Right now any task that falls on Saturday or Sunday get bumped to Monday of next week. In our scenario some people work weekends. We are using Project Server 2013 with Sharepoint 2013. If…