How to Get a Salesforce Certification? – Salesforce Certification Guide
Salesforce Certification: Understanding and navigating through the different levels: A blog about Salesforce Certifications along with helpful tips to take the right path. Salesforce certifications can help you gain credibility, demonstrate mastery of industry best practices, validate your experience and give you
Salesforce Trailhead
Salesforce Trailhead - Trails, Modules, Projects, Superbadges Salesforce Trailhead: An Introduction Are you ready to learn new Salesforce skills? Trailhead is the best way to grasp what you need when you need it quickly. It's a visual learning experience that you control.
Salesforce Certifications
The Salesforce Service Cloud Certification and Master's Certification are designed to help you prepare for and validate your knowledge of the Salesforce Service Cloud in hands-on training, get insight into the sales and marketing ecosystem and handle the functionality. With
What is Salesforce?
What Is Salesforce? | Why is Salesforce the best CRM? - SFDC Salesforce is to transform your business for the better tomorrow digitally Salesforce is a cloud-based software platform that offers CRM services (a strategy or technique businesses use to maintain healthy customers
How to convert Set Id to Set String in Apex code?
Apex code is not supporting converting set to set direct way – we have to do workaround – Set<Id> ids = new Set<Id>{'001G0000023lIWq','a61G0000000TOSE'}; Set<String> idStrs = (Set<String>)JSON.deserialize(JSON.serialize(ids), Set<String>.class); System.debug('idStrings=' + idStrs);
LIGHTNING WEB COMPONENT
What is Salesforce Lightning Web Component (LWC) & How It Works? What is LWC? Lightning Web Components is the Salesforce implementation of that new breed of lightweight frameworks built on web standards. It leverages custom elements, templates, shadow DOM, decorators, modules, and
OBJECTS IN SALESFORCE
Standard Objects & Custom Objects in Salesforce what is objects: Object are database table that us store data specific org in salesforce. and is a container for all the information on a certain person,place or things. we want to store data. They are
Apex Code – Static Factory for Record Type
Use below apex class to avoid duplicate in your org to pull record type, Profile, User, Environment, Sandbox name, Group Name, Queue Name related information. This is very helpful to me – I was using separate apex class for each area
Find Sandbox Name from Your Sandbox Org
Learn How to Find Sandbox Name From Sandbox Org in Salesforce Many of having trouble to find sandbox name from your Sandbox org. There is no direct way to get it but we have workaround. Please follow below steps Create list custom
Hide “Switch to Salesforce Classic” from Lightning UI
Admin have ability to stop salesforce user to switch back to “Classic” view using Profile and Permission Set.