以下是我要解决的问题:
如果创建了新的 TASK / EVENT ,如果用户是某个个人资料,我们希望更新 CONTACT 上的字段,其中T / E是创建。
我尝试过做一个工作流规则和字段更新 - 但是我无法让它工作......我认为因为这是一个标准的 - 标准 - 通过查找的对象关系,所以在进行字段更新时可能会遇到问题。还有其他想法吗?我更喜欢使用这个平台...
HALP!
由于
答案 0 :(得分:3)
我们通过Apex触发器完成了您正在谈论的内容。像这样......
//I'm sure this doesn't compile, but it gives you the idea
trigger taskTrigger on Task( after insert, after update ){
Task t = trigger.new ;
Contact contact = [Select Id from Contact where Id = :t.whoId] ;
contact.yourfield = t.AcitivityDate ;
update contact ;
}