update a related record value using Map and Apex class? Example 1: How to create and update existing contact records using map and apex class [java] global void execute(Database.BatchableContext BC, …
SFDC
- APEXSALESFORCESalesforce CustomizationSalesforce.comTriggerTriggers
- Email TemplateSALESFORCESalesforce CustomizationSalesforce.comVisualforce
How to fetch Contact details from Opportunity Contact Roles using SOQL in Salesforce?
How to fetch Contact details from Opportunity Contact Roles using SOQL in Salesforce? SOQL QUERY: SELECT Id, Opportunity.Name, Contact.Email, Contact.Name, Role, isPrimary FROM OpportunityContactRole Where OpportunityId =’OpportunityID’ Here: OpportunityID – …
- Email TemplateSALESFORCESalesforce CustomizationSalesforce.comVisualforce
How to get the Primary Opportunity Contact Role Information in Salesforce Email Template?
How to get the Primary Opportunity Contact Role Information in Salesforce Email Template? Its possible using the Visualforce Email Template and below is the Visualforce Email Template Code Salesforce Email …
- Email TemplateSALESFORCESalesforce CustomizationSalesforce.comVisualforce
How to get the Opportunity Contact Role details in Salesforce Email Template?
How to get the Opportunity Contact Role details in Salesforce Email Template? This is not possible in normal email template Text or HTML (using Letterhead) or Custom (without using Letterhead). …
-
Salesforce Certified Platform Developer I – Winter ’17 Release Exam Salesforce Certified Platform Developer I – Winter ’17 Release Exam 1) Name two required steps for enabling debug logging for …
-
Salesforce Administrator – Summer ’16 Release Exam 1. In Salesforce Classic, what is true about Sharing Settings for Files attached to records? A. Access can be set to Viewer Only …
-
Salesforce Developer – Summer ’16 Release Exam 1. What are two capabilities of the Toasts entity with respect to user messages? Choose 2 answers A. Toast entities can be used …
-
Salesforce Certified Platform Developer I – Summer ’16 Release Exam 1. Which action should be taken to allow an external object to be searchable via SOQL? A. Enable the “Is …
-
How to change date formats using Apex Class? For Example 1: 2017-01-24 to change the date format to be in DD.MM.YYYY Below example should work if you can use a …
- APEXSALESFORCESalesforce CustomizationSalesforce.comVisualforce
How to set the default Account Owner Value in Visualforce using Apex Class?
How to set the default Account Owner Value in Visualforce using Apex Class? If you only want this defaulting to happen when the Visualforce page is used you can use …