When you update a multi-picklist field’s value using flow, the existing values are lost. This article walks you through updating the multi-select picklist field’s value using flow without losing existing values.
SF Crunch Posts
Bulk update the published articles.
1. Create a new draft version of the published article.
2. Update the draft version of the article with the changes that you need.
3. Update a new temporary checkbox field Article_To_Publish__c with TRUE.
4. Finally, publish the article again.
Logging errors are helpful, primarily when an error occurs in the future, background apex jobs, or flows. Especially when you want to investigate why some background jobs are not working as expected and you want to know how frequently the jobs are failing.
Using the following solutions you can find the apex error exceptions easily. You can see why the error occurred and on which line of code the error occurred. You can see the errors in a list view and can do reporting on a specific error.
A solution to upload files from the same screen from where you get the record information from the end user.
Integration between Salesforce and Stripe. Sample code to create an charge object in stripe using apex code. The apex code can be invoked from the flow.
If you want to do with the formula fields then you can check out the article by my friend Usman Ali on Salesforce help. Description Sometimes, we have a requirement to re-assign the case back to the initial queue for example if the case status is updated to “Stalled” then…
Find the number of days between two dates excluding weekends and holidays using apex
Create weekly, bi-weekly, monthly, quarterly, yearly and bi-yearly recurring tasks using apex.
DESCRIPTION: You want to record the data for the visitors that visit the Salesforce record pages. We can easily achieve this using screen flow with a few simple steps. SOLUTION: Create a custom object “Record Visitor” with the following fields. Object Name (text) Record Id (text) User (Lookup to user…
Round Robin Assignment for any user lookup field using custom object and apex code.
If an opportunity has a quote then it must be synced to the opportunity in order to make the opportunity stage to Closed Won.
Deactivate an account record if it has no “Closed Won” Opportunity for 180 days or no opportunity created in 180 days.
Send the most recent Quote PDF attached to the email alert using Salesforce Flow