How to update Contact record from Task Flow in Salesforce?
Sample Flow: Start Configuration: Update Contact Configuration: Output: https://youtu.be/hDepxzTzId0
Sample Flow: Start Configuration: Update Contact Configuration: Output: https://youtu.be/hDepxzTzId0
Sample Components with Dependencies: Sample Apex Controller: public class ExampleController { public static String test() { System.debug( 'Testing' ); return 'Testing'; } } Sample Apex Test Class: @isTest public class ....
EncodingUtil.base64Decode() can be used to convert Base64 content to Blob value. Then, we can use toString() to convert the Blob value to String. Sample Code: String base64Content = EncodingUtil.Base64Encode( Blob.valueOf( ....
We can make use ContentVersion entity to create files using Salesforce Apex. Use ContentDocumentLink entity to link the created the file to a record in Salesforce. Sample Code: String base64Content ....
1. Create a Connected App in Salesforce. Callback URL should be https://{Your Salesforce Domain}.my.salesforce.com/services/oauth2/callback. My Org Callback URL is https://test-ec-dev-ed.develop.my.salesforce.com/services/oauth2/callback. 2. Do a POST Request to https://{Your Salesforce Domain}.my.salesforce.com/services/oauth2/token to ....
If the version of the entitlement process is currently in use, then you can add new milestones. But, you can’t edit or delete the existing ones. If the versions of ....
SOQL Query on Organization entity can be used to find the Salesforce Instance. Sample SOQL: SELECT Id, InstanceName FROM Organization REST API SOQL Call: https://youtu.be/Y1Qb1dglk7s
Salesforce EDO(Everybody's Demo Org) has pre-built environment. It gives us real Salesforce production environment. Salesforce EDO Environment have pre-loaded data with pre-configured business processes. It also have best reports and ....
There are multiple ways to send Slack Message from Salesforce Flow. In the Following Example, I am using Service Cloud for Slack setup used for Swarming. For Service Cloud for ....
Visualforce Page Requires HTML docType version 5.0 or higher Exception in Salesforce is thrown if an attribute in Visuforce tag is used and it requires html-5.0 or higher version as ....