使用从触发器创建的记录填充查找字段

Populate Lookup Field with Record Created From Trigger

我正在尝试创建一个执行以下操作的触发器:

  1. 创建帐户后,创建同名的不相关记录(称为 "Portal Content" 记录),假定默认 RecordTypeId
  2. 获取新创建的 "Portal Content" 记录的 ID,并将其插入到最初创建的帐户的查找字段中

我当前的代码成功完成了第 1 项,但是当我添加新代码来完成第 2 项时,我收到以下错误:

Line: 6, Column: 1
System.DmlException: Insert failed. First exception on row 0; first error: 
CANNOT_INSERT_UPDATE_ACTIVATE_ENTITY, newAccountCreated: execution of 
AfterInsert caused by: System.FinalException: Record is read-only 
Trigger.newAccountCreated: line 12, column 1: []

我目前的触发器如下:

trigger newAccountCreated on Account (after insert) {

    List<Account> alist = Trigger.New;

    for(Account a : alist) {

        if (a.RecordTypeId == '012i0000001Iy1H') {
//            system.debug(a.Name);
            Portal_Content__c p = new Portal_Content__c(Name=a.Name,School_SFDC_ID__c=a.Id);
            insert p;

            a.Portal_Content_Record__c = p.Id;
            update a;
        }
    }

}

我不明白为什么错误消息指出 "Record is read only," 或如何修改此错误。

您不能在 'after' 触发器上更新同一条记录,必须在前触发器上完成;更改为:

trigger newAccountCreated on Account (before insert) {