Posts

Showing posts with the label Setup & Configuration

Salesforce User Interface: How to Add a New Lightning Application in your Salesforce Org

Image
Looking for Salesforce Training & HandsOn Projects? Trailblazer Profile  |  LinkedIn  |  Salesforce Blog  |  Facebook  |  Youtube Channel  |  WhatsApp Community In this article, we will discuss a no-code approach of adding a lightning app for our Salesforce Org. This approach is helpful to launch any Salesforce Object (Standard or Custom) as an application without using any code. In the upcoming sections we will see the detailed steps to configure SObject to launch as a Lightning App.  Create a Custom Object ["Students"]   We can add a new Custom Object “Students” as shown in the steps below- Step-1: Click on “Object Manager” Step-2: Click “Create” and select “Custom Object” to launch a “New Custom Object” screen Step-3: Specify Label for the object, let’s call it “Students” Step-4: Select “First Name” as a record identifier. This is just a demo so anything works just fine but in a more sensible solution...

Visual Studio Code: How to Enable Intellisense Support for Salesforce Apex Code in Visual Studio Code

Image
Trailblazer Profile  |  LinkedIn  |  Salesforce Blog  |  Facebook  |  Youtube Channel  |  WhatsApp Community Looking for Salesforce Training & HandsOn Projects? I am sure we all know how painful it could be writing code without Intellisense support for the code editor. So it is really important to see how we can add this feature to our favorite code editor Visual Studio Code. In this blog, we will look into the detailed steps of how to enable Intellisense support for Salesforce metadata. Enabling this feature will increase the code writing capability and accuracy exponentially for a developer. Salesforce provide intellisense support by implementing “Apex Language Server” through Salesforce CLI. “Apex Language Server” is dependent on java as its prerequisite. Lets’ start by downloading and installing Java Runtime Engine that we can download from  Java Development Kit Download Java Development...

Visual Studio Code: How to Setup Visual Studio Code for Salesforce Development

Image
Trailblazer Profile  |  LinkedIn  |  Salesforce Blog  |  Facebook  |  Youtube Channel  |  WhatsApp Community Looking for Salesforce Training & HandsOn Projects? In the recent past we have observed that Visual Studio Code (VS Code) is picking up popularity among open source IDEs for code development across multiple programming languages. JavaScript based frameworks, Python based application development, Salesforce Apex Code development, HTML, CSS based Front End development and so on are the most popular choices working with VS Code. This powerful behavior of supporting multiple platforms resides in the ability to adopt Plugins & Extension Packs that supports most popular programming languages & frameworks, and I believe VS Code has does a brilliant job so far. In this article we will look into detailed steps to setup Visual Studio Code as IDE for Salesforce code development. Here are the quick list of the componen...