How to create Files using Salesforce Apex?
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 ....
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 ....
To find whether Salesforce instance is Up and Active using API, then use https://api.status.salesforce.com endpoint. Remote Site Settings: Sample Apex Code: String endpoint = 'https://api.status.salesforce.com/v1/instances/NA100/status'; HTTP h = new HTTP(); ....
1. Use Show Original Option from the email. 2. Check for X-SFDC to confirm that the message was from Salesforce.
Exception: System.EmailException: SendEmail failed. First exception on row 0; first error: NO_SINGLE_MAIL_PERMISSION, Single email is not enabled for your organization or profile.: [] Exception or Error This exception is thrown when ....