在一天中的特定时间或特定时间后启动 SharePoint 工作流
是否可以在 SharePoint 2007 中的文档上启动在特定时间或特定日期之后开始的工作流?
谢谢。
Is it possible to start a workflow on a document in SharePoint 2007 that begins after a certain time or on a certain date?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这里< /a> 是如何以编程方式启动工作流的示例,它从 EventReceiver 启动工作流。
此处是如何创建 SharePoint 计时器作业的示例(这些可以在一天中的某个时间或一段时间后运行)。
通过一些工作,这两个概念应该可以让您得到您想要的东西。 在您的情况下,您将从计时器作业执行调用中启动工作流程,而不是从事件接收器中启动工作流程。
Here is an example of how you can start a workflow programmatically, it kicks the workflow off from an EventReceiver.
And here is an example of how to create a SharePoint timer job (these can be run at a certain time of day or after a period of time).
With a bit of work these two concepts should get you what you want. In your case instead of kicking the workflow off from an event receiver you will be kicking it off from the timer jobs Execute call.