如何从 CRM 365 中的客户数据类型中识别 Contact/Business 类型?
How to identify Contact/Business type from the Customer datatype in CRM 365?
我已经在我们的自定义实体之一中创建了 'Customer' 数据类型。从那里,如果我尝试查询客户是否属于 contact/Account
通过使用以下查询,
SELECT customer FROM entityname
INNER JOIN contact ON ContactId=contact_account_customer
我收到错误消息,指出列名称无效。我想知道联系人和帐户的关系名称是否对查找有用
客户是联系人还是帐户。如果不是,这个关系名有什么用?
试试这个:
实体名称:new_promotionaloffer
属性名称:new_luckycustomer
SELECT new_luckycustomer FROM new_promotionaloffer E
LEFT JOIN Contact C ON C.ContactId = E.new_contact_new_promotionaloffer_LuckyCustomer
LEFT JOIN Account A ON A.AccountId = E.new_account_new_promotionaloffer_LuckyCustomer
我已经在我们的自定义实体之一中创建了 'Customer' 数据类型。从那里,如果我尝试查询客户是否属于 contact/Account 通过使用以下查询,
SELECT customer FROM entityname
INNER JOIN contact ON ContactId=contact_account_customer
我收到错误消息,指出列名称无效。我想知道联系人和帐户的关系名称是否对查找有用 客户是联系人还是帐户。如果不是,这个关系名有什么用?
试试这个:
实体名称:new_promotionaloffer
属性名称:new_luckycustomer
SELECT new_luckycustomer FROM new_promotionaloffer E
LEFT JOIN Contact C ON C.ContactId = E.new_contact_new_promotionaloffer_LuckyCustomer
LEFT JOIN Account A ON A.AccountId = E.new_account_new_promotionaloffer_LuckyCustomer