状态日期和通过PSI更新项目 [英] Status Date and Update Project Through PSI

查看:149
本文介绍了状态日期和通过PSI更新项目的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Hi Experts,


我们计划自动化状态过程。关于这一点,您能否告诉我们如何使用PSI设置状态日期和更新项目。


我相信我们可以使用QueueUpdateProject方法更新项目。在这期间需要注意其他任何事情吗?


我们正在使用Project Server 2010版本。


任何指针都会有所帮助。


谢谢


Sakthi。

解决方案

项目状态日期可以通过PSI设置,具有以下属性:  PROJ_INFO_STATUS_DATE


dsProject = projectClient.ReadProjectEntities(" some guid",1,DataStoreEnum.WorkingStore );


var projectRow = dsProject.Project.FindByPROJ_UID(" some guid");


projectRow.PROJ_INFO_STATUS_DATE =" some date" ;;


Hi Experts,

We are planning to automate the process of statusing. In regard with the same, can you please let us know how do we go about setting the Status Date and Update project using PSI.

I believe we can use the QueueUpdateProject method for updating the project. Any other things needs to be taken care during the same?

We are using Project Server 2010 version.

Any pointers would help.

Thanks

Sakthi.

解决方案

The project status date can be set via the PSI with the following property: PROJ_INFO_STATUS_DATE

dsProject = projectClient.ReadProjectEntities("some guid", 1, DataStoreEnum.WorkingStore);

var projectRow = dsProject.Project.FindByPROJ_UID("some guid");

projectRow.PROJ_INFO_STATUS_DATE = "some date";


这篇关于状态日期和通过PSI更新项目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆