Sage CRM - 可以通过经典 ASP 代码创建约会吗?
Sage CRM - It is possible to create an appointment through Classic ASP code?
使用这个:
var NewComm = CRM.CreateRecord("Communication");
NewComm("Comm_ChannelId") = Request.Form("chanId");
NewComm("Comm_Type") = "Appointment";
NewComm("Comm_DateTime") = Request.Form("initialHour");
NewComm.SaveChanges()
我可以在 DDBB 中看到通信已创建
只是为了测试(看看它是否需要 Comm_Link 行才能显示),我更新了 Comm_Link table 中的一些行(CmLi_Comm_CommunicationId 列)到 ID 等于我刚刚创建的通信,但在我的日历中单击时我仍然看不到我的通信
我还有其他事情要做吗?
有一些字段是安全所必需的,即团队(Channel)字段和领土(Secterr)字段。
对于 Communications,您还需要确保还有其他默认字段,因为 Communications 经常被过滤。
例如,默认情况下,通信列表按状态字段 = 待定进行过滤,因此请确保设置了 comm_status 字段。
此外,所有通信通常都有一个操作 (comm_action) 和一些其他字段。
除了您已经设置的字段之外,我们建议设置以下字段:
NewComm("comm_status") = 'Pending';
NewComm("comm_action") = 'Meeting';
NewComm("comm_secterr") = *A Territory Id*;
NewComm("comm_subject") = 'A Subject';
NewComm("Comm_ToDateTime") = *End Date/Time*;
NewCommLink("cmli_comm_userid") = *The User Id*;
NewCommLink("cmli_comm_communicationid") = *The Communication Id*;
NewCommLink("cmli_comm_personid") = *The Person Id if required*;
NewCommLink("cmli_comm_companyid") = *The Company Id if required*;
希望对您有所帮助!
六点支持
使用这个:
var NewComm = CRM.CreateRecord("Communication");
NewComm("Comm_ChannelId") = Request.Form("chanId");
NewComm("Comm_Type") = "Appointment";
NewComm("Comm_DateTime") = Request.Form("initialHour");
NewComm.SaveChanges()
我可以在 DDBB 中看到通信已创建
只是为了测试(看看它是否需要 Comm_Link 行才能显示),我更新了 Comm_Link table 中的一些行(CmLi_Comm_CommunicationId 列)到 ID 等于我刚刚创建的通信,但在我的日历中单击时我仍然看不到我的通信
我还有其他事情要做吗?
有一些字段是安全所必需的,即团队(Channel)字段和领土(Secterr)字段。
对于 Communications,您还需要确保还有其他默认字段,因为 Communications 经常被过滤。
例如,默认情况下,通信列表按状态字段 = 待定进行过滤,因此请确保设置了 comm_status 字段。
此外,所有通信通常都有一个操作 (comm_action) 和一些其他字段。
除了您已经设置的字段之外,我们建议设置以下字段:
NewComm("comm_status") = 'Pending';
NewComm("comm_action") = 'Meeting';
NewComm("comm_secterr") = *A Territory Id*;
NewComm("comm_subject") = 'A Subject';
NewComm("Comm_ToDateTime") = *End Date/Time*;
NewCommLink("cmli_comm_userid") = *The User Id*;
NewCommLink("cmli_comm_communicationid") = *The Communication Id*;
NewCommLink("cmli_comm_personid") = *The Person Id if required*;
NewCommLink("cmli_comm_companyid") = *The Company Id if required*;
希望对您有所帮助!
六点支持