Press enter to see results or esc to cancel.

How to enable Allow Users to Relate Multiple Contacts to Tasks and Events (SharedActivities) during scratch org creation

In this blog post we will see how to enable Allow Users to Relate Multiple Contacts to Tasks and Events setting while creating the scratch org. update the project-scratch-def.json file as below {   “orgName”: “Demo company”,   “edition”: “Developer”,   “features”: [     “EnableSetPasswordInApi”,     “SharedActivities”   ],   “settings”: {     “lightningExperienceSettings”: {       “enableS1DesktopEnabled”: true     },     “mobileSettings”: {       “enableS1EncryptedStoragePref2”: false     }   } } We need to include SharedActivities feature in …

Continue reading

How to remove/delete all local org authorizations for non-active/expired scratch orgs in Salesforce CLI

Hello Everyone, In this blog post we will see how we can remove/delete the expired scratch orgs To check the connected orgs on your local machine you can use the below command. sfdx force:org:list –all –all parameter will include expired, deleted, and unknown-status scratch orgs. Example: I am using the command in my local machine …

Continue reading

How to show full URLs (Always show Full URLs) in the chrome browser

Most of the time you will not be seeing the full URLs in the chrome browser search bar. In case if you want to find whether the browser is serving from HTTPS / HTTP  you might have to click the URL in the search bar to see the browser’s full URL. Open Google Chrome; Right-click on the address bar; From the menu that appears, select Always show full URLs

Continue reading