[Transactional Level Bypass] Bypass Validation Rule in Apex Batch Class

2024-04-30 19:20

本文主要是介绍[Transactional Level Bypass] Bypass Validation Rule in Apex Batch Class,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

问题

现有一个batch job用于批量更新Lead,最近频繁收到apex exception email, 显示更新Lead的时候触发了validation rule,导致apex job运行失败。

batch class节选如下:

public void execute(Database.BatchableContext bc, List<Lead> scope) {for (Lead l : scope) {l.Assigned_SDR__c = null;l.Lead_Category__c = null;}update scope;
}

影响评估

假如当前批次需要更新5条Lead,其中仅有1条Lead触发了validation rule。那么上述代码执行时,5条记录都不会被更新;同时,由于没做try catch处理,订阅exception email后会收到apex exception通知。

目标

为确保batch job不受脏数据都影响,我们需要绕过validation rule。

解决方案

方案Overview:

  1. 在Lead对象上增加2个字段 Automation_Bypass__cAutomation_Timestamp__c
  2. 在Validation Rule中引用条件判断是否需要 Automation_Bypass__c
  3. 在Batch Class更新Lead的时候,将now赋值给 Automation_Timestamp__c

关键字段如下图:
在这里插入图片描述
调整后的batch class节选如下:

public void execute(Database.BatchableContext bc, List<Lead> scope) {Datetime now = System.now();for (Lead l : scope) {l.Assigned_SDR__c = null;l.Lead_Category__c = null;// Bypass Lead Validation Rules to guard against invalid data. Users needs to manually fix datal.Automation_Timestamp__c = now;}update scope;
}

这样,我们就可以确保自动更新Lead的5s内validation rule将会被绕过,5s后当业务人员编辑Lead,validation rule将会再次被enforce,需要业务人员修复脏数据问题。

达成效果

  1. 开发人员 不用在意脏数据对代码的考验
  2. 业务经理 不用承受批量修复数据的压力
  3. 业务人员 仅在需要的时候顺手修复数据

这篇关于[Transactional Level Bypass] Bypass Validation Rule in Apex Batch Class的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/949705

相关文章

类型信息:反射-Class

在说反射前提一个概念:RTTI(在运行时,识别一个对象的类型) public class Shapes {public static void main(String[] args) {List<Shape> shapes = Arrays.asList(new Circle(), new Square(), new Triangle());for (Shape shape : shapes

react笔记 8-17 属性绑定 class绑定 引入图片 循环遍历

1、绑定属性 constructor(){super()this.state={name:"张三",title:'我是一个title'}}render() {return (<div><div>aaaaaaa{this.state.name}<div title={this.state.title}>我是一个title</div></div></div>)} 绑定属性直接使用花括号{}   注

MiniCPM-V: A GPT-4V Level MLLM on Your Phone

MiniCPM-V: A GPT-4V Level MLLM on Your Phone 研究背景和动机 现有的MLLM通常需要大量的参数和计算资源,限制了其在实际应用中的范围。大部分MLLM需要部署在高性能云服务器上,这种高成本和高能耗的特点,阻碍了其在移动设备、离线和隐私保护场景中的应用。 文章主要贡献: 提出了MiniCPM-V系列模型,能在移动端设备上部署的MLLM。 性能优越:

泛型参Class、Class、Class的对比区别

1.原文链接 泛型参Class、Class、Class的对比区别 https://blog.csdn.net/jitianxia68/article/details/73610606 <? extends T>和<? super T> https://www.cnblogs.com/drizzlewithwind/p/6100164.html   2.具体内容: 泛型参数Class、

spring数据校验Validation

文章目录 需要的依赖创建校验对象Validator 需要的依赖 <dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-validation</artifactId></dependency> 创建校验对象Validator 测试的实体类 //创建实体

c++通用模板类(template class)定义实现详细介绍

有时,有两个或多个类,其功能是相同的,仅仅是数据类型不同,如下面语句声明了一个类:class Compare_int { public : Compare(int a,int b) { x=a; y=b; } int max( ) { return (x>y)?x:y; } int min( ) { return (x&... 有时,有两个或多个类,其功能是相同的,仅仅是数

Python方法:__init__,__new__,__class__的使用详解

转自:https://blog.csdn.net/qq_26442553/article/details/82464682 因为python中所有类默认继承object类。而object类提供了了很多原始的内建属性和方法,所以用户自定义的类在Python中也会继承这些内建属性。可以使用dir()函数可以查看,虽然python提供了很多内建属性但实际开发中常用的不多。而很多系统提供的内建属性实际

SpringBoot启动报错Failed to determine a suitable driver class

两种解决办法 1.在Application类上加 ` @EnableAutoConfiguration(exclude={DataSourceAutoConfiguration.class}) package com.example.demo3;import org.springframework.boot.SpringApplication;import org.springframewo

easyswoole not controller class match

not controller class match composer.json 注册 App 这个名称空间了吗?执行过 composer dump-autoload 了吗?存在 Index 控制器,但是文件大小写、路径都对了吗? task socket listen fail 注意,在部分环境下,例如 win10 的 docker 环境中,不可把虚拟机共享目录作为 EasySwoole 的 T

JavaBug系列- Failed to load driver class com.mysql.cj.jdbc.Driver in either of HikariConfig class load

JavaBug系列之Mysql驱动问题 Java医生一、关于错误信息二、如何解决问题 Java医生 本系列记录常见Bug,以及诊断过程和原因 Java/一对一零基础辅导/企业项目一对一辅导/日常Bug解决/代码讲解/毕业设计等 V:study_51ctofx 一、关于错误信息 APPLICATION FAILED TO START Description: Fai