每次进行更改时启动 Sharepoint 工作流程,即使有暂停
我在 Sharepoint 列表上有一个工作流程,它根据列表项中的日期字段发送电子邮件警报 - 这需要使用“暂停直到”选项。如果在暂停期间进行了另一个更改,这似乎会锁定“更改时”工作流程,使其不会再次被触发。有办法解决这个问题吗?
一些细节,因为也许我错过了一些更基本的东西:
列表项包含一个“结束日期”字段,我需要在此日期前 3 天发送警报作为提醒。因此,如果用户更改结束日期(启动工作流程),然后在暂停期间再次更改日期,则如果工作流程未再次启动,则电子邮件日期将不会更新。
I have a workflow on a Sharepoint list which sends an email alert based on a date field in the list item - this requires using the "pause until" option. This seems to lock the "on change" workflow from being fired again if another change is made during the period of the pause. Is there some way around this?
Some details, since maybe I'm missing something a little more basic:
The list item contains an "end date" field, and I need to send an alert 3 days before this date as a reminder. So, if the user changes the end date (launching the workflow) and then changes the date again during the pause period the email date won't be updated if the workflow doesn't start up again.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要创建第二个工作流程,仅解决 OnChange 行为,然后使用停止工作流程操作,使用启动工作流程操作(这将读取新日期并正常工作) )。
You need to create a second workflow that just addresses the OnChange behavior and then use the Stop Workflow action, use the Start Workflow action (that will read the new date and work properly).