Re-use CSS in LWC using CSS Module
cssLibrary.css: h1 { text-align: center; font-weight: bold; font-size: large; color: black; } .bgCSS { background: black; color: white; font-weight: bold; } cssLibrary.js-meta.xml: <?xml ....
cssLibrary.css: h1 { text-align: center; font-weight: bold; font-size: large; color: black; } .bgCSS { background: black; color: white; font-weight: bold; } cssLibrary.js-meta.xml: <?xml ....
1. Salesforce Org Compare - https://sforgcompare.herokuapp.com/ 2. Copado - https://appexchange.salesforce.com/listingDetail?listingId=a0N3000000B3dgGEAR3. GearSet - https://gearset.com/blog/understanding-your-org-comparison/ 4. VS Code - https://marketplace.visualstudio.com/items?itemName=chuckjonas.salesforce-diff
In Profile or Permission Set or Permission Set Group, under the Administrative section check the checkbox "Api Only User". API Only specifies that the user can only log in through ....
1. Have one Automation per object. Have one Flow/Process Builder(Master) per object(Auto-Launched). Use sub-flow/sub-process to call other processes from the master. 2. Don't select "Automatically store all fields" in "How ....
Internal Users: SELECT Id, Name, IsActive, Profile.Name FROM User WHERE ProfileId IN ( SELECT Id FROM Profile WHERE UserType = 'Standard' ) Customer Community/Portal Users: SELECT Id, Name, IsActive, Profile.Name ....
Account Sharing URL:https://YourDomin.my.salesforce.com/p/share/AccSharingDetail?parentId=IdOfAccount Case Sharing URL:https://YourDomain.salesforce.com/p/share/CaseSharingDetail?parentId=IdofCase Lead Sharing URL:https://YourDomain.salesforce.com/p/share/LeadSharingDetail?parentId=IdOfLead Opportunity Sharing URL:https://YourDomain.salesforce.com/p/share/OppSharingDetail?parentId=0065w000025ZJXy Custom Object Sharing URL:https://YourDomain.salesforce.com/p/share/CustomObjectSharingDetail?parentId=a065w00000iSO8a Example for Custom Object Sharing URL: To learn more about sharing, please check - ....
1. Check Salesforce CRM Content User Licenses under Company Information.Disable for users who are not using Salesforce CRM Content.2. Disable Salesforce CRM Content User while creating an user.
Sample SOQL:SELECT Queue.Name, SobjectType FROM QueueSobject WHERE SobjectType = 'Case'