在Salesforce 环境中执行匿名 Apex 代码的 Ant 任务 建造 假设你 有一只工作蚂蚁 salesforce jar 位于类路径中的某个位置 JAVA_HOME指向最近的 JDK 运行ant时,将在 dist 子目录中创建文件ExecuteAnonymous.jar 。 跑步 将ExecuteAnonymous.jar放在类路径中(我已将其复制到包含 ant-salesforce.jar 的目录中)。
Salesforce Developer Website
(Click Debug | Open Execute Anonymous Window.) Replace the existing code with this code: //From the BankAcct class, instantiate an object named chkAcct BankAcct chkAcct = new BankAcct(); //Set the accttype attribute of the chkAcct object to Checking chkAcct.accttype = 'Checking'; /...