ms-project-server-2013

Timesheet Entry into Project Server Using Rest API

生来就可爱ヽ(ⅴ<●) 提交于 2021-02-11 08:28:05
问题 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 gathered few details out of some scrutiny at my end: To See the Complete Meta Data: http://>/PWA/_api/ProjectData/$metadata - You can get the field details, Where as I need to know in specific the Entity for TimeSheet. To See the Complete Time

Updating Task level custom fields

南笙酒味 提交于 2020-01-15 09:03:37
问题 Using CSOM I can see how to use the SetCustomFieldValue method to update custom fields associated to a Project, but is it not possible to do this for a task within Project Online? I don't see anything that would allow this but it does list in the documentation this should be possible. Thanks! 回答1: Have you looked at this thread? Use CSOM to update project's custom fields It's Project level but it may provide some further clues. Actually, there's task level code at the bottom of that post so

MS project server Error while updating team through SoapUI

和自甴很熟 提交于 2019-12-25 06:12:51
问题 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 : http://vmw2k8sp136167:30/_vti_bin/PSI/Project.asmx Request : <proj:QueueUpdateProjectTeam> <proj:JobUid>e0b1816d-daf7-e411-97e7-005056ad0852</proj:JobUid> <proj:sessionUid>e0b1816d-daf7-e411-97e7-005056ad0753</proj:sessionUid> <proj:projectUid>e0b1816d-daf7-e411-97e7-005056ad0472</proj

Dynamically Loading Project Online Properties via CSOM

不问归期 提交于 2019-12-24 14:40:01
问题 I'm looking at trying to load our projects from project online into a .NET application, while i can load the projects one thing i'm having trouble with is loading all the columns i would like. I know i can specify the columns i want to load using include but i wanted to be able to use a list of columns that could be generated dynamically. It's part of an ETL program that I would like to allow the users to configure the list of columns being brought over into the cache database. Below is what

How to authenticate to Project Online PSI services?

喜你入骨 提交于 2019-12-11 08:35:14
问题 I have the MS Project Online account at sharepoint.com and I need to authenticate from client C# code to PSI services to get list of projects. Server has Forms based authentication. I am trying to login via next code: SvcLoginForms.LoginForms loginform = new SvcLoginForms.LoginForms(); loginform.Credentials = new NetworkCredential("admin@myserver.onmicrosoft.com", "password"); loginform.Url = "https://myserver.sharepoint.com/sites/pwa/_vti_bin/PSI/Project.asmx"; loginform.Login("admin