我们可以使用“另一个”的任务列表吗?与 Sharepoint 工作流的任务列表具有相同网站集的网站?

发布于 2024-08-27 01:07:49 字数 196 浏览 4 评论 0原文

我可以指定/使用来自“另一个”网站但来自同一网站集的现有任务列表,以在我的顺序 Sharepoint 工作流中使用吗?我正在使用 Visual Studio 编写工作流程,它将部署在 /subsite 中,根站点已经有一个任务列表,每个人都已连接到 Outlook 等...而不是在 /subsite 中创建新任务列表并询问想要订阅这个新任务列表...我想使用现有的任务列表..

Can I specify/use an existing task list from "another" website but from same site collection to be used in my Sequential Sharepoint Workflow? I am using Visual Studio to code the workflow, and it will be deployed in /subsite, the root site already has a task list to which everyone has connected to Outlook etc...Instead of creating a new task list in /subsite and asking concerned to subscribe to this new task list...I want to use the existing one..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

盗琴音 2024-09-03 01:07:49

我可能弄错了,但是,当使用反射器查找此信息时,我发现有一种方法 SPWorkflowAssociation.SetTaskList(SPList)

看起来充满希望。但是,在这个方法中,会发生这样的事情:

this.EnsureListInThisWeb(list);

方法定义:

private void EnsureListInThisWeb(SPList list)
{
    if ((this.m_templates != null) && (list.ParentWeb.ID != this.m_templates.ParentWeb.ID))
    {
        throw new ArgumentException(SPResource.GetString("WorkflowAssociationListNotInWeb", new object[0]));
    }
}

因此它检查列表的parentweb是否等于工作流关联所在的web。如果没有,你就会得到例外。

所以我的答案是不,你不能在另一个网站上有任务列表

I may be mistaking, but, as looking up for this information with reflector, i find there is a method SPWorkflowAssociation.SetTaskList(SPList).

Looks hopefull. But, within this this method, such thing happens:

this.EnsureListInThisWeb(list);

method definition:

private void EnsureListInThisWeb(SPList list)
{
    if ((this.m_templates != null) && (list.ParentWeb.ID != this.m_templates.ParentWeb.ID))
    {
        throw new ArgumentException(SPResource.GetString("WorkflowAssociationListNotInWeb", new object[0]));
    }
}

So it checks if list's parentweb is equal to web where workflow associations are. If not, you get the exception.

So my answer would be no, you can't have task list in another web.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文