Salesforce Apex 触发器 - 如何检查字段是否包含在更新触发器中?

发布于 2024-10-31 01:45:35 字数 57 浏览 6 评论 0原文

如果有人可以指导我检查特定字段是否包含在更新之前/之后触发器内的更新调用中,我将非常感激。非常感谢。

I would really appreciate if someone can guide me to check if a particular field is included in update call inside a before/after update trigger. Many thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

不疑不惑不回忆 2024-11-07 01:45:35

所有字段始终存在于触发器中,无论它们是否脏,要确定特定字段是否已被修改,您必须使用 oldMap 映射检索该行的先前版本,该映射是 < code>Map并比较旧值和新值。例如

trigger CaseOnParticularFieldUpdate on Case (before update) {
    for (Case c: Trigger.new) {
        Case oldCase = Trigger.oldMap.get(c.ID);
        if (c.Field != oldCase.Field) {
            // field was updated, do some magic here
        }
    }
}

All fields are always present in the trigger regardless of whether they are dirty or not, to ascertain if a specific field has been modified you have to retrieve a previous version of the row using oldMap map which is a Map<ID, sObject> and compare the values in old and new. For example

trigger CaseOnParticularFieldUpdate on Case (before update) {
    for (Case c: Trigger.new) {
        Case oldCase = Trigger.oldMap.get(c.ID);
        if (c.Field != oldCase.Field) {
            // field was updated, do some magic here
        }
    }
}
梦醒灬来后我 2024-11-07 01:45:35

触发器将包括调用它的对象的所有字段。您可以检查该对象中任何字段的先前(旧)值和当前(新)值,并可以比较它并可以执行相应的操作。

希望对您有帮助。

Trigger will include all fields of that sobject for which it is invoked. You can check previous(old) value and current(new) value of any field in that object and can compare it and can do the operation accordingly.

Hope it helps you.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文