CRM 4.0 - 有没有办法知道特定营销列表中的联系人是否对营销活动做出了响应?
我想知道如何对 MS CRM 4.0 执行以下操作: 我想知道某个营销活动中特定营销列表中的联系人是否尚未回复。
活动响应表单中的自定义字段是 partyfield。 CRM 不允许使用 QueryExpression 查询 PartyList 字段
有什么想法吗?
谢谢,
卡蒂亚
I am wondering how can I do the following about MS CRM 4.0:
I want to know for a campaign if a contact from a specific marketing list has not replied yet.
The field custom in the campaign response form is a partyfield. CRM doesn’t allow a PartyList field to be queried using a QueryExpression
Any ideas?
Thanks,
Katya
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法直接检索活动方记录,但您可以在 LinkEntities 中使用它们:
这将告诉您是否有针对给定活动和联系人的活动响应。 (我使用 Stunnware Tools 生成的实体类,因此 RetrieveMultiple 调用看起来有点不同,但我认为您明白我的意思)。
如果您将此 QueryExpression/LinkEntity 构造颠倒过来,您还可以获得对给定营销活动做出响应的所有联系人(您还可以通过第二个 LinkEntity 将其限制为特定营销列表中的联系人)。
唯一不可能直接使用单个查询的是您正在寻找的“否定”检查,因此您必须获取此结果并对您的营销列表进行“外部联接”以获取具有的联系人>没有回应。
You cannot retrieve activityparty records directly, but you can use them in LinkEntities:
This will tell you whether there's a campaign response for a given campaign and contact. (I use entity classes generated by Stunnware Tools, so the RetrieveMultiple call looks a little different, but I think you get my point).
If you turn this QueryExpression/LinkEntity construct upside down, you can also get all contacts that have responded to a given campaign (you can also restrict that to contacts in a certain marketing list through a second LinkEntity).
The only thing that's not possible directly with a single query is the "negative" check you are looking for, so you'll have to take this result and do an "outer join" against your marketing list to get the contacts that have not responded.