如何:使用自定义列表共享点工作流程

发布于 2024-10-19 14:33:00 字数 218 浏览 4 评论 0原文

我想为链接到自定义列表的共享点开发工作流程。 工作流程将基于代表状态的列表字段。我在互联网上寻找好的教程,但找不到适合我的教程。 我的场景如下:

  • 创建列表的新项目时,工作流程应该启动。
  • 在接下来的步骤中,将要求用户填写表格,提交表格将使工作流程继续进行。

如何使表单与工作流程“通信”?
这应该使用修改表来实现吗?

谢谢。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沫雨熙 2024-10-26 14:33:00

我不确定您是否需要 C# 或 Visual Studio。

查看 SharePoint Designer 和工作流程的介绍

您的工作流程可以在任何列表上运行 - 自定义与否,并不重要。工作流实际上可以在其运行的项目发生更改时运行,这正是您想要的:每当有人更改“状态”字段时,工作流就会运行并执行其需要执行的任何操作。

内置的“三态工作流程”就是一个很好的例子 - 您只需激活该功能即可。

阅读一些有关工作流程的内容以提出更详细的问题。对于您的第二个问题是否应该使用状态机或序列工作流程根本没有答案 - 这取决于您的用例。

基本上你想要这样:

  1. 项目更改时自动运行工作流程
  2. 检查字段“状态”
  3. 切换字段状态,如果状态=“teststate”则执行此操作,否则执行此操作。

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:

  1. Run Workflow automatically when item changed
  2. Check field "State"
  3. Switch field state, if state = "teststate" do this, else do that.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文