Files
Riabu_Integration/force-app/main/default/classes/AccountTriggerHandler.cls
2025-11-26 16:38:23 +05:30

20 lines
471 B
OpenEdge ABL

public class AccountTriggerHandler {
public static boolean firstCreation = True;
public static void createCustomer(List<Account> accList){
if(firstCreation){
for (Account acc : accList ) {
if (acc.Id != null) {
System.debug('Triggered Account Id: ' + acc.Id);
system.enqueueJob(new RiabuAccountToCustomer(acc.Id));
}
}
}
}
}