Press enter to see results or esc to cancel.

Profile

Saicharan Reddy K's articles

In general, the default login is pointed to https://login.salesforce.com, But when you wanted to try login to the sandbox using salesforce cli command sfdx force:auth:web:login it doesn’t work as it will route you to https://login.salesforce.com/*****. Please also note that changing the https://login.salesforce.com/***** to https://test.salesforce.com/***** and entering the credentials also doesn’t work and you will see …

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 …

Org-dependent unlocked packages are certain type of unlocked packages that allow us to create packages that depend on the metadata in the destination org (where we are going to install the package). Why do we need Org-Dependent Unlocked Packages? If the production org is existed for very very long time and with so much of …

In this blog post, we will see step by step guide on how to set up the LWC Local Development Environment. Salesforce in October 2019 announced Local Development for LWC. The main advantage of this local development is you don’t have to deploy your code every time you make some changes to your existing code. …