Код: Выделить всё
trigger UpdateOpportunityField on Opportunity (before update) {
for (Opportunity opp : Trigger.new) {
opp.Custom_Field__c = opp.Amount * 0.1;
}
}
Подробнее здесь: https://stackoverflow.com/questions/798 ... ord-update
Код: Выделить всё
trigger UpdateOpportunityField on Opportunity (before update) {
for (Opportunity opp : Trigger.new) {
opp.Custom_Field__c = opp.Amount * 0.1;
}
}