MS WF 状态机工作流程和 MS CRM Dynamics 4.0

发布于 2024-07-04 02:45:18 字数 201 浏览 6 评论 0原文

MS CRM Dynamics 4.0 整合了MS WF 引擎。 内置设计器允许创建顺序工作流程,其活动可以对 CRM 实体进行本机访问。

是否可以:

  • 创建状态机工作流程 在 CRM 之外(即在 Visual Studio 中)并将其导入到 CRM 中?
  • 让此工作流程访问 CRM 实体?

MS CRM Dynamics 4.0 incorporates the MS WF engine. The built in designer allows the creation of sequential workflows whos activities have native access to CRM entities.

Is it possible to:

  • Create a state machine workflow
    outside of CRM (i.e. in visual studio) and import it into CRM?
  • Have this workflow access the CRM
    entities?

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

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

发布评论

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

评论(3

给不了的爱 2024-07-11 02:45:18
  • 无法创建在 MSCRM 中使用的状态机工作流程。
  • 也不支持在 MSCRM 之外创建任何工作流程并将其导入。
  • 作为解决方法,您可以将所需的所有逻辑写入自定义工作流活动,然后将其导入 MSCRM 并从正常工作流中调用它。
  • 另一种选择是构建一个单独的应用程序,该应用程序运行状态机工作流程并通过 Web 服务与 MSCRM 交互。 您可以(需要?)将其与自定义工作流程活动结合起来以启动流程。
  • It is NOT possible to create a state machine workflow for use in MSCRM.
  • It is also not supported to create any workflow outside of MSCRM and import it.
  • As a work around you could write either all the logic you need into a custom workflow activity and import that into MSCRM and have it called from a normal workflow.
  • The other option is build a seperate application which runs a state machine workflow and interacts with MSCRM via the web services. You could (would need to?) combine this with a custom workflow activity to kick off processes.
初相遇 2024-07-11 02:45:18

我不知道您的具体问题的答案,但希望这些信息能为您指明正确的方向。

WF 工作流程的“本机”格式是“.xoml”文件。 它们基本上与 XAML 文件相同,并且都只不过是 .NET 对象树的通用持久性格式。 如果您可以访问 Dynamics 设计器输出的已保存数据,则它应该采用相同的格式。 如果是,您应该能够从 Visual Studio 设计器中打开它。

这里的关键是,CRM 无疑定义了自己的一组自定义活动,您需要能够从备用设计器中引用这些活动。 运气好的话,这些会议将出现在名称明显的集会上和/或 GAC 中。

I don't know the answer to your specific question, but hopefully this information will point you in the right direction.

The "native" format for WF workflows is ".xoml" files. These are basically identical to XAML files, and both are nothing more than generic persistence formats for a .NET object tree. If you can access the saved data that is output by the Dynamics designer, it should be in the same format. If it is, you should be able to open it from the Visual Studio designer.

The key here is that CRM undoubtedly defines its own set of custom activities that you'll need to be able to reference from within the alternate designer. With any luck, these will be in assemblies with obvious names and/or in the GAC.

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