我遇到了一个例外
System.Exception: Too many record type describes: 101
我知道这是州长限制例外。
有几个地方我在触发器的 If 语句中检查记录类型。
for(Opportunity o : Trigger.new)
{
if ( ( o.TotalOpportunityQuantity != Trigger.OldMap.get(o.Id).TotalOpportunityQuantity) && o.RecordTypeId == varRectype)
{
// do something
}
// i am also checking in another if statement for o.RecordTypeId == varRectype with a combination of other fields.
}
有没有其他人得到这个错误。关于造成这种情况的任何指示都会有很大帮助