How do I deactivate a Portal User for given Contacts in Apex Code?
Here you go!!
The error “List has no rows for assignment to SObject” occurs when query doesn’t return any rows. Resolution While a SELECT normally returns an array/list, these statements are using the shorthand syntax that assumes only one row is returned. What’s not obvious is that it also assumes that exactly one row is returned! Although this is …
Apex error – ‘List has no rows for assignment to SObject’ Read More »
getAll() to get Custom Metadata Type Records Now let see how we can get Custom Metadata Type records with getAll() method. getInstance() to get Custom Metadata Type Record What about if you don’t need to get all record and need to access only single record? In that case you can use the getInstance() method.
You may get this error that email is not being sent when guest user is creating record (ex. Case creation, self registration etc.) – Error can be as “Submission Error: The record couldn’t be saved because it triggered an email alert that failed. Please contact salesforce.com Customer Support.” like https://salesforce.stackexchange.com/questions/343779/guest-user-cannot-send-vf-email-template-while-having-access-to-objects-fields Actually, it’s security measure taken …
Guest site user causing TEMPLATE_NOT_FOUND error Read More »
1. Hyperforce is a major infrastructure-level change. Instead of managing first party data centers, Salesforce will leverage major public clouds (AWS to begin with) to offer different salesforce services.2. Customers don’t have to worry about existing customizations or integrations in their orgs. In short, If it works today, it will work when their orgs are …
Service Cloud Einstein Einstein Bots Unlimited 25 Einstein Bots conversations per user/per month Einstein Case Classification Enterprise, Performance, and Unlimited Editions Build one predictive model to recommend field values, in real-time, to your agents at no additional charge Einstein Article Recommendations Enterprise, Performance, and Unlimited Editions Unlimited for agent users Einstein Next Best Action Essentials, …
Freemium Einstein Features Included with Your Salesforce Edition For Service Cloud Read More »
Diagrams help drive key project decisions, align delivery teams, and help everyone understand where you’re going and what’s been done. Consistent, easy-to-understand diagrams are a critical part of project success. But there hasn’t been guidance from Salesforce on how to build great diagrams until now. 3 CONSIDERATIONS WHEN BUILDING SALESFORCE DIAGRAMS 1. You are managing …
“Data migration is the process of selecting, preparing, extracting, and transforming data and permanently transferring it from one computer storage system to another” Most migrations take place through five major stages: Extraction: remove data from the current system to begin working on it. Transformation: match data to its new forms, ensure that metadata reflects the data …
It’s very usual to fall in such a requirement to execute apex scheduled job every 1 hour. The dirtiest way to schedule it 24 times at a specific time. But there is another very efficient way to run it each clock hour and can be achieved by just running it once using power of cron …