如何:使用自定义列表共享点工作流程
我想为链接到自定义列表的共享点开发工作流程。 工作流程将基于代表状态的列表字段。我在互联网上寻找好的教程,但找不到适合我的教程。 我的场景如下:
- 创建列表的新项目时,工作流程应该启动。
- 在接下来的步骤中,将要求用户填写表格,提交表格将使工作流程继续进行。
如何使表单与工作流程“通信”?
这应该使用修改表来实现吗?
谢谢。
I want to develop a workflow for sharepoint linked to a custom list.
The work flow will be based on a field of the list that represents the state. I have looked for good tutorials on the Internet, but I can't find out one that is ok for me.
My scenario is as follows:
- As a new item of the list is created, the workflow should start.
- In the next steps the user will be asked to fill in a form, submitting the form will make the workflow go on.
How can I make a form "communicate" with the workflow?
Should this be achieved using a Modification form?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定您是否需要 C# 或 Visual Studio。
查看 SharePoint Designer 和工作流程的介绍。
您的工作流程可以在任何列表上运行 - 自定义与否,并不重要。工作流实际上可以在其运行的项目发生更改时运行,这正是您想要的:每当有人更改“状态”字段时,工作流就会运行并执行其需要执行的任何操作。
内置的“三态工作流程”就是一个很好的例子 - 您只需激活该功能即可。
阅读一些有关工作流程的内容以提出更详细的问题。对于您的第二个问题是否应该使用状态机或序列工作流程根本没有答案 - 这取决于您的用例。
基本上你想要这样:
I'm not sure you even need C# or Visual Studio.
Check out the introduction to SharePoint Designer and Workflows.
Your workflow can run on any list - custom or not, doesn't matter. The Workflow can actually run whenever the item it is running on has changed, which is exactly what you want: Whenever someone changes the "state" field, the workflow runs and does whatever it needs to do.
A good example of exactly this is the built in "Three State Workflow" - you only have to activate the feature.
Read up a bit on Workflows to propose a more detailed question. There simply is no answer to your second question whether you should use state machine or sequence workflow - it depends on your use case.
Basically you want this: