Custom Metadata Types vs Custom Settings vs Custom Labels 💬 In plain words: Three lookalikes: Custom Metadata = configuration that DEPLOYS with your code (best for app settings). Custom Settings = org/user-specific values, changeable at runtime (hierarchy type is great for bypass switches). Custom Labels = translatable text for the UI. 📌 Example: API endpoint URLs per environment → Custom Metadata (deploys with code, sandbox vs prod values). A 'Bypass_Automation__c' checkbox an admin flips during data load → hierarchy Custom Setting. The word 'Submit' translated to Hindi → Custom Label. 🎬 Real-Life Example: The Fee Table Trapped Inside Code Skyline charges a different delivery fee per city. Apex needs those rates on every booking. The Old/Bad Way: if (city == 'Delhi') fee = 50. Else if (city == 'Mumbai') fee = 65. … Every rate change is a code change, a test run, and a deployment. Why this is bad: Business data is trappe...
Here is a simplest and easiest steps to complete the VS code, Salesforce extension pack, JAVA, Salesforce CLI setup in your computer. Step 1 :- The first step is to install and configure java in your computer. a). Download and Install JAVA:- Download java development kit from here and install it. Steps to configure environment variable for java :- 1. Right click My Computer and select Properties. 2. On the Advanced tab , select Environment Variables , and then Create New Variable and give new variable name JAVA_HOME to point to where the JDK software is located, for example, C:\Program Files\Java\jdk1.89.0. Copy your installed JDK path and paste it in Variable Value . Open command...