如何在 MS Dynamic CRM 中针对 N:N 关系触发插件?
我想在 N:N(多对多)关系中触发 MS Dynamic CRM 插件?
当用户从 N:N 关系中添加或删除行时,就会暴露我的插件。
这是有可能的,如果有的话又如何呢?
I want trigger MS Dynamic CRM plugin in N:N(many to many) relationships?
When user add or remove row from N:N relationship, then exposed my plugin.
It's possible, and how if it's?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,这是可能的。取决于您的 CRM 版本。一般想法是为关联/取消关联事件注册插件。对于 CRM 4.0,它被描述为 此处。如何在 CRM 2011 中执行此操作,您可以阅读 在这里。
Yes, it's possible. Depends on your CRM version. General idea is registering plugin for Associate/Disassociate events. For CRM 4.0 it is described here. How to do this in CRM 2011 you can read here.
你可以做到的。通过使用插件注册工具中的关联和取消关联消息。如果您想使用 N:N 关系在任何实体中添加记录,则消息应为 Associate,主要/次要实体应将其设置为 null 然后它将触发,并且要删除记录,您可以通过使用取消关联消息来完成。
You can do it. By Using Associate and Disassociate messages in Plugin Registration Tool. if you want to add a record in any entity by using N:N Relationship the message should be Associate, primary/secondary entities should be set it as null then it will fire and for removing a record you can do by using Disassociate message.