欧非资源网:安全、免费、专业放心的资源下载站! 最新软件|软件分类

您的位置:欧非资源网 > 其他专区 > SharePoint > SharePoint 状态机工作流之UpdateItemActivity

SharePoint 状态机工作流之UpdateItemActivity

时间:2019-12-30 17:05作者:admin来源:未知人气:280我要评论(0)

没什么可说的,一个Activity的使用介绍,其他类似的Activity也可以参考这个使用。

  1、添加ApplyActivation和UpdateItemActivity,在onWorkflowActivated1节点的下面,setStateActivity1节点的上面,如下图:

clip_image001

  2、配置ApplyActivation的_Context,新建字段,记得是字段,不是属性:

clip_image002

  3、配置ApplyActivation的_WorkflowProperties,选择已有的workflowProperties,如下图;

clip_image003

  这个属性选的是代码里包含工作流信息的工作流属性,也就是下面代码声明的属性:

public SPWorkflowActivationProperties workflowProperties = new SPWorkflowActivationProperties();

  4、配置UpdateItemActivity的_Context为步骤二创建的ApplyActivation的_Context;

clip_image004

  而后新建ListId字段和ListItem字段,在代码里赋值,参照步骤5;

clip_image005

  5、如下图,在UpdateItemActivity上右键,绑定item属性,然后新建属性,同时新建ListId和ListItem字段(第一个是属性,剩下都是字段,别混了);

clip_image006

  6、在onWorkflowActivated1_Invoked方法添加代码

复制代码
private void onWorkflowActivated1_Invoked(object sender, ExternalDataEventArgs e)

{

ModifyTitleupdateItemActivity_ListId1 = workflowProperties.ListId.ToString();

ModifyTitleupdateItemActivity_ListItem1 = new SPItemKey(workflowProperties.ItemId);

ModifyTitleupdateItemActivity_ItemProperties1 = new Hashtable();

ModifyTitleupdateItemActivity_ItemProperties1.Add("标题", "" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + "被工作流更新");

}
复制代码

  7、部署执行效果如下:

clip_image007

结束语

相关阅读 SharePoint中Office文件无法打开的解决方案如何快速生成SharePoint测试大文件如何查询SharePoint Library中空文件夹?如何快速备份SharePoint Farm Solution如何解决Event Viewer中SharePoint Error - Event ID 8321SharePoint 2016 CU安装失败,"Exception: The upgraded database schema doesn't match the TargetSchema"的解决方案InfoPath Error “此文档库已经被重命名或删除,或者网络问题导致文件无法保存…” 的解决方案SharePoint 2013 App概述How to Shrink SharePoint Content Database Log File?Project Web App Feature无法开启的解决方案

文章评论
发表评论

热门文章 SharePoint 2016 图文安装教程 后面有激活序列号、密钥分享[SharePoint入门教程]一SharePoint发展、工具及术语如何用 SharePoint Online创建团队网站?SharePoint Iframe 报错“此内容不能显示在一个框架中”

最新文章 SharePoint中Office文件无法打开的解决方案如何快速生成SharePoint测试大文件 如何查询SharePoint Library中空文件夹?如何快速备份SharePoint Farm Solution如何解决Event Viewer中SharePoint Error - Event ID 8321SharePoint 2016 CU安装失败,"Exception: The upgraded database s

人气排行 SharePoint 2016 图文安装教程 后面有激活序列号、密钥分享[SharePoint入门教程]一SharePoint发展、工具及术语如何用 SharePoint Online创建团队网站?SharePoint Iframe 报错“此内容不能显示在一个框架中”SharePoint 2013 安装图解 SharePoint安装步骤图解教程SharePoint 如何开启访问请求[SharePoint入门教程]一SharePoint概述[SharePoint入门教程]一创建SharePoint母版页

盖楼回复X

(您的评论需要经过审核才能显示)