project-server

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

How Do I Change The Project Owner Using REST API

本小妞迷上赌 提交于 2020-03-27 08:48:30
问题 I want to change the project owner of a project using REST API. I know there is a "/Owner" endpoint and I can get the owner without any problems with the following GET: site/_api/ProjectServer/Projects('2cc734f2-cd16-4f09-8632-a2bc74a32577')/Owner So how do I change the project owner using REST API? 回答1: The general way to change site owners using REST API according to MSDN is: POST http://<sitecollection>/<site>/_api/site/owner So in your case you should just have to change from a GET

If I only know a project's name how do I get its GUID?

倾然丶 夕夏残阳落幕 提交于 2019-12-24 07:15:36
问题 The PSI has various methods such as ReadProject that only take a project GUID and not its name. If I only have a project's name, how do I retrieve its GUID for use in other PSI methods? 回答1: Use ReadProjectStatus. It allows passing through an empty GUID but a project name to retrieve this information. 来源: https://stackoverflow.com/questions/1509731/if-i-only-know-a-projects-name-how-do-i-get-its-guid

Combining data from Project Server and SharePoint into a single report

梦想的初衷 提交于 2019-12-23 03:40:14
问题 I need to combine data from the Project Server reporting database with data from custom lists in SharePoint workspaces . The results need to be displayed within a single report. How should this be done? Options I've thought of: Extend the reporting database with the custom list data (if this is possible). Use Reporting Services to display the output. Query the reporting database and the SharePoint workspaces and combine results in memory. Write custom code to display the output. Any other

SharePoint error: “Cannot import Web Part”

假装没事ソ 提交于 2019-12-20 19:38:50
问题 I have a web part that I've developed, and if I manually install the web part it is fine. However when I have packaged the web part following the instructions on this web site as a guide: http://www.theartofsharepoint.com/2007/05/how-to-build-solution-pack-wsp.html I get this error in the log files: 09/23/2008 14:13:03.67 w3wp.exe (0x1B5C) 0x1534 Windows SharePoint Services Web Parts 8l4d Monitorable Error importing WebPart. Cannot import Project Filter. 09/23/2008 14:13:03.67 w3wp.exe

List available Enterprise Project Types using Project Server Interface

微笑、不失礼 提交于 2019-12-12 04:08:42
问题 I want to query a Project Server 2010 installation for a list of available Enterprise Project Types (their names and GUIDs) using a webservice (PSI). I can't find out how to do this anywhere. I found a way using the client-side object model but cannot find any examples using web services. Has anyone ever done this? I found one answer here but it deals only with custom fields. (The goal is to create/update a project using a Enterprise Project Type & its attached template.) 回答1: I found 2

Retrieving Enterprise Project Types using Project Server Interface

岁酱吖の 提交于 2019-12-12 01:36:57
问题 I am currently building an app to programatically create projects in Microsoft Project Server using the web services exposed through the Project Server Interface (PSI). I am able to create a project with an Enterprise Project Type using the QueueCreateProject method, however, I need to specify the GUID of the EPT which I don't want to hard code into the code. Is there another web service or way to get the GUID of a specific EPT found by its name? Also, can the same be done for custom fields

How to authenticate into Project Server SOAP API?

孤街浪徒 提交于 2019-12-11 14:32:05
问题 I'm trying to perform soap action from C# code. (btw its using non-standard api not available in projectserverservices.dll ) Below working action through a web browser: curl 'http://servername/pwa/_vti_bin/PSI/ProjectServer.svc' -H 'AsmxRoutedCall: true' -H 'Origin: http://servername' -H 'Accept-Encoding: gzip, deflate' -H 'Accept-Language: en-US,en;q=0.9,pl;q=0.8' -H 'User-Agent: Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537

Java 6 HTTPURLConnection and Project Server NTLM Authentication from RHEL5.5

我的未来我决定 提交于 2019-12-11 11:09:44
问题 Currently at a loss for authenticating with a Microsoft Project Server 2007 instance running on IIS with Integrated Windows Authentication enabled from a Java 1.6(u19) client running on linux, RHEL 5.5. Note: The client works on my Windows workstation. I initially was trying to implement a JAX-WS call and found that I could not retrieve the WSDL due to authentication errors, specifically a 401.2, followed by a 500. So I simplified it to a Java class that: Creates an Authenticator and sets it

Combining data from Project Server and SharePoint into a single report

旧城冷巷雨未停 提交于 2019-12-06 14:57:59
I need to combine data from the Project Server reporting database with data from custom lists in SharePoint workspaces . The results need to be displayed within a single report. How should this be done? Options I've thought of: Extend the reporting database with the custom list data (if this is possible). Use Reporting Services to display the output. Query the reporting database and the SharePoint workspaces and combine results in memory. Write custom code to display the output. Any other ideas? I have the skills to develop this but am very open to purchasing a product if it solves the problem