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
1
vote
0 answers

How can I programmatically retrieve a list of project file names from Project Server?

I have a tool that needs to open Project files to get data out of them. Some of these project files are hosted on the Project Server site rather than a network location that can be browsed to with a normal file explorer. I know you can open files…
1
vote
0 answers

How to add a new Enterprise Resource to Resource center in SharePoint 2019 through CSOM

using (var Context = new ProjectContext(PWA_Url)) { Load resources and custom fields Context.Load(Context.EnterpriseResources); Context.Load(Context.CustomFields); Context.Load(Context.LookupTables); …
1
vote
0 answers

Is there a way to programmatically get a list of the different departments Enterprise Fields belong to?

As far as I know, Enterprise Fields can be setup in Project Server to belong to a particular Department. I believe this would make it so a certain profiles would have access to certain Enterprise fields only if they are part of the same department…
1
vote
1 answer

How can you access hidden published ms-project .mpp files

I was writing a simple script in VBA for batch updating project info posted on Project Web App. I've stumbled on a problem which seems unsolvable to me though, opening projects programatically through FileOpenEx method is working only on a fraction…
1
vote
1 answer

Is There a way to get a List of all the Enterprise Fields a user on Project Server has In Use?

I'm building a MS Project VSTO tool (written in C#) that in many instances needs to either read or write data from a field in MS Project. Since I don't always know what field will contain the data I need, I many times need to allow the user the…
1
vote
0 answers

How to open MS Project file(s) from Enterprise projectserver using VBA (2013)

I did search many times to find a proper solution, but till today I didn't find a proper solution for my function. Target is to open a schedule from the server using VBA either from within MS Project or MS Excel using only part of the mpp…
Enze
  • 23
  • 3
1
vote
1 answer

How to get Baseline X dates in Project server 2016 from Database?

How can I get Baseline´s columns from Project Server? It is not possible to get them using CSOM. Also, I couldn´t find them in database script. Is it the correct database? Is it pjpub, pjver or pjdraft? What is the correct table?
1
vote
2 answers

Timesheet Entry into Project Server Using Rest API

I'm trying to add timesheet entries against some specific task which is available in the MS Project Server 2013. I have ways of creating TASK in Project Server using REST endpoints, but could not find a way straight forward for the timesheet. I have…
1
vote
1 answer

Cannot change project owner

I can change project's name , start date etc in my code but my change to project's owner doesn't apply to project server. here is my code: ProjectContext projectContext = new ProjectContext("http://servername:12247/PWA/"); var…
1
vote
1 answer

Update Task Status Progress Project Server 2013

I attempt to update the task status progress (Status Assignment) using project server 2013 CSOM, but I got "Unknown Error" Exception and the following StackTrace: at Microsoft.SharePoint.Client.ClientRequest.ProcessResponseStream(Stream …
1
vote
1 answer

Get Projects in Project Server 2013 using javascript

i would love to get the list of my projects from Project Server 2013 and displaying them on Sharepoint using Javascript. Thx
1
vote
0 answers

How to read AssignmentProcessStatus using PSI?

I am trying to read a specific user assignments and tasks from Project Server using PSI and C# these are part of my codes: _projContext.Load(_projContext.Projects, prj => prj.IncludeWithDefaultProperties(p => p.Assignments, p =>…
Mehdi
  • 1,731
  • 1
  • 18
  • 33
1
vote
1 answer

MS Project and Android

I'm trying to develop an app to retrieve information's about projects (basically the .mpp file) stored in a Project Server (2013). We also have a PWA installed. The problem is that I have no idea how I can do the requests to the server to retrieve…
rdnobrega
  • 721
  • 6
  • 16
1
vote
1 answer

Extracting Tables from MS Project Online

I've been working on a project extracting all the database from Project Online and loading it in Qlikview. I have been able to extract almost all the data from it using the OData Protocol (which is not simple at all). My question is: Where all the…
PabloG.
  • 11
  • 2
1
vote
1 answer

How to create New EPT by using CSOM

I try to create a new EPT (project server 2013) using C# CSOM library. But It has following error occurred. "PJClientCallableException: EnterpriseProjectTypeInvalidCreatePDPUid" Couple of article tell to change the "IsCreate=true". But it does not…