简体   繁体   English

CRM 2011必需参加者字段

[英]CRM 2011 Required Attendees field

I want to know that "Required Attendees" attribute of Appointment is in which database table in CRM 2011. 我想知道,约会的“必需与会者”属性位于CRM 2011中的哪个数据库表中。

Thanks in advance. 提前致谢。

This information is stored in the activitypartybase table. 此信息存储在activitypartybase表中。 This table is a bridge between activities and "Parties" (contacts/accounts) that are related to the activity. 该表是活动和与活动相关的“参与者”(联系人/帐户)之间的桥梁。 The ParticipationTypeMask column tells you which type of relationship is represented. ParticipationTypeMask列告诉您表示的关系类型。 Required Attendees will have a ParticipationTypeMask value of 5. Note that I am referencing a 2013 system, but I believe this schema has not changed. 必需的与会者的ParticipationTypeMask值为5。请注意,我引用的是2013年系统,但我认为此架构未更改。

select * 
from activitypartybase 
where activityid = [The Guid of your Activity]
and ParticipationTypeMask = 5

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM