计算机会中的活动
我有一个关于机会的工作流程。 我正在尝试计算机会工作流程中的活动数量。
并根据工作流程中的条件使用此计数。
I have a workflow on an opportunity. I am trying to count the number activities from the opportunity workflow.
And use this count on condition within the workflow.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我同意马特的回答。 您需要挂钩自定义工作流程活动才能获取您当前感兴趣的机会对象,最后在自定义工作流程活动中,您可以使用 CRM SDK 查找与该机会相关的活动。
以下是设置基本自定义工作流程活动的链接:http://www.stunnware.com/crm2/topic.aspx?id=CustomWorkflowActivity" rel="nofollow noreferrer"> stunnware.com/crm2/topic.aspx?id=CustomWorkflowActivity
I agree with Matt's answer. You need to hook a custom workflow activity in order to get the Opportunity object that you are currently interesting on, and finally inside the custom workflow activity, you can use CRM SDK to find the related activites regarding the opportunity.
Here is the link to setup a basic custom workflow activity : http://www.stunnware.com/crm2/topic.aspx?id=CustomWorkflowActivity
我不相信有一种方法可以在工作流引擎中本地完成此任务。 您必须创建一个自定义工作流活动来为您获取此计数,然后将其返回到工作流,然后您可以在您的条件中使用它。
CodePlex 上一些自定义活动的示例:
http://crm4activities.codeplex.com/
MSDN 上的自定义工作流活动文档:
http://msdn.microsoft.com/en-us/library/cc151142。 ASPX
I don't believe there's a way to accomplish this natively in the workflow engine. You'll have to create a custom workflow activity that gets this count for you and then returns it to the workflow, and then you can use it within your condition.
An example of some custom activities on CodePlex:
http://crm4activities.codeplex.com/
Custom workflow activity documentation on MSDN:
http://msdn.microsoft.com/en-us/library/cc151142.aspx