MS WF state machine workflows and MS CRM Dynamics 4.0

后端 未结 3 1447
清酒与你
清酒与你 2021-01-18 12:17

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.

3条回答
  •  粉色の甜心
    2021-01-18 12:37

    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.

提交回复
热议问题