Apex trigger to add dr. Salutation on lead record. - Salesforce
Dharmik
Handler class:
public class LeadsTriggerHandler {
public static void createLead(List<Lead> lstLead)
{
for( Lead ldcreate: lstLead)
{
if( ldcreate.Is_Doctor__c == True)
{
ldcreate.Salutation = 'Dr.';
}
}
}
}
Trigger:
trigger...
4:06 AM
Apex
,
apex class
,
Apex trigger
,
Salesforce
Trigger to avoid recursive trigger call on contact object (create contact) - Salesforce
Dharmik
Handler class:
public class ContactInsertHandler {
public static void createContact()
{
Contact cont = new Contact();
cont.LastName = 'Dharmik';
...
3:42 AM
Apex
,
apex class
,
Apex trigger
,
Salesforce
Apex trigger to sum up (Count) amount from all the related Opportunity and set in custom field.
Dharmik
Handler class:
public class CustomRollUp {
public static void docount()
{
list<Opportunity> setopportunity = [ select Id, Name, Amount from Opportunity where
...
3:33 AM
Apex
,
apex class
,
Apex trigger
,
Salesforce
Apex trigger to set contact record detail same as account details - salesforce (i.e contact lastname = account lastname)
Dharmik
Handler class:
public class AccountTrigger {
public static void createContact(List<Account> accounts) {
List<Contact> contact = new List<Contact>();
&n...
3:27 AM
Apex
,
apex class
,
Apex trigger
,
Salesforce
Apex trigger to show error message if sum of Opportunity amount is greater then 100000 of logged in user.
Dharmik
Trigger:
trigger LimitTotalAmountInOpportunity on Opportunity (before insert) {
LimitTotalAmountInOpportunityHandler.LimitAmount(Trigger.new);
}
Handler Class:
public class LimitTotalAmountInOpportunityHandler {
public static void LimitAmount(list<Opportunity> OpportunityList)
{
double totalamount = 0;
...
12:25 AM
Apex
,
apex class
,
Apex trigger
,
Salesforce
Subscribe to:
Posts
(
Atom
)