La guía o código que encontrarás en este artículo es la solución más rápida y válida que hallamos a tu duda o dilema.
Ejemplo: mejores prácticas de Apex en Salesforce
trigger accountTestTrggr on Account (before insert, before update)
List<String> accountNames = new List<String>;
//Loop through all records in the Trigger.new collection
for(Account a: Trigger.new)
//Concatenate the Name and billingState into the Description field
a.Description = a.Name + ':' + a.BillingState
No se te olvide recomendar esta división si te fue útil.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)