需要一些关于如何通过顶点触发器填充查阅字段(联系人)的建议
在Idea上触发UpdateContactonComplaints(在插入之前,在更新之前){
list<id> oid = new list<id>();
for(Idea o: trigger.new){
oid.add(o.id);
}
map<id, Idea> ExtendU = new map<id, Idea>(
[select CreatedbyID from Idea where id in: oid]);
for(Idea o: trigger.new){
o.Contact__c = ExtendU.get(o.id).CreatedbyID;
}
}
答案 0 :(得分:0)
在触发器中,用户ID(创建该想法的用户的ID)被分配给Contact custom lookup字段。
因此,它会抛出一个错误,数据由字段触发器更改联系:不正确类型的id值: