Visual Studio Code Salesforce

Posted on  by 



Visual studio code for salesforce

  1. Visual Studio Code Salesforce Dx Development
  2. Visual Studio Code Salesforce
  3. Vs Code Trailhead
  4. Visual Studio Code For Salesforce

Hi Alpher,-You don't. Visual Studio Code using Salesforce Extensions is supposed to work with Scratch Orgs (via SalesforceDX), not Sandboxes. Hello Trailblazers,In this video, we're going to learn how we can setup vscode for salesforce development. I am going to tell you how you can setup vscode an. Jam-packed video on how to get an SFDX project up and running.We install Visual Studio Code, The Salesforce CLI along with the SFDX extension pack for VSCode.

In this step, we explore some of the more advanced features of Visual Studio code, such as how to use the integrated terminal and our newly installed Salesforce Extension Pack.

Like with any good development tool, there is more than one way to do things with Visual Studio Code. The two main ways you can interact with Salesforce CLI are through the integrated terminal or quick open window.

To view the quick open window, press Command + P on Mac or Ctrl + P on Windows. If you type ? you can view the help menu. Through this module we will use the quick open window in command palette mode, which allows us to show and run commands.

Create a Project

  1. Press Command + Shift + P on Mac or Ctrl + Shift + P on Windows to make the command palette appear.
  2. Make sure the new prompt starts with >
  3. Type SFDX: Create Project and press Enter to select the standard template.
  4. Type the project name VSCodeQuickstart and press Enter.
  5. Select your Desktop as the place to create the project in so it is easy to find later on.
  6. Wait for the new Visual Studio Code window to open. You should see an indication that the extension is preparing your project before populating the file explorer.
  1. Press Command + P on Mac or Ctrl + P on Windows to make the search palette appear. This shifts the focus to search files.
  2. Type project-scratch-def.json into the field.
  3. Click the result to open the file.
  4. On the left hand side of Visual Studio code, click the Find and Replace menu.
  5. Search for orgName.
  6. In the first result found in project-scratch-def.json.
  7. Change the orgName value (after the : and in between the “”) to Learning VS Code.
  8. Save the file by pressing Command + S on Mac, Control + S on Windows.

Authenticate to Your Playground

  1. Press Command + Shift + P on Mac or Ctrl + Shift + P on Windows to make the command palette appear.
  2. Type SFDX: Authorize an Org.
  3. To accept the default login URL, press Enter.
  4. Enter the alias VSCodePlayground.
  5. Notice that your default browser opens a new Salesforce login window. Log in to your playground using your playground username and password retrieved from the last step.
  6. When you are asked to grant access to the connected app, click to allow.
  7. Close the browser window.

The command-line terminal window returns a success message when the transaction is complete.

Visual Studio Code Salesforce Dx Development

  1. Click the Explorer icon in Visual Studio Code to expand the force-app folder.
  2. Under the VSCODEQUICKSTART directory, click force-app to show its folder tree. In the force-app/main/default directory, you find the metadata included within the project such as applications, aura, classes, and more.
  3. Press Command + Shift + P on Mac or Ctrl + Shift + P on Windows to make the command palette appear.
  4. Type SFDX: Create Apex Class.
  5. Enter the name AccountController.
  6. If VS Code asks, select force-app/main/default/classes as the directory you wish to add AccountController.cls to.
  7. In the newly opened AccountController.cls file, replace the default code with the following:
  8. Save your file.

Query

Our new Apex class has a SOQL query in it, but we want to make sure it works as we expect before we deploy it to our org. We use the command palette to run the query against our org.

Salesforce
  1. In line 3 of the code, highlight the query SELECT Id,Name,Active__c FROM Account WHERE Active__c = 'Yes'
  2. Press Command + Shift + P on Mac or Ctrl + Shift + P on Windows to make the command palette appear.
  3. Search for SFDX:Execute SOQL Query with Currently Selected Text.
  4. Press Enter.
  5. Select REST API and press Enter.
  6. In the Output tab of the integrated terminal window, review the results of your query. The window should state a summary that says: SFDX: Execute SOQL Query ... ended with exit code 0. This means it successfully ran.

Visual Studio Code Salesforce

The last step is to deploy your code to your playground from within Visual Studio Code.

Vs Code Trailhead

  1. Right click the classes folder.
  2. Click SFDX: Deploy Source to Org.
  3. In the Output tab of the integrated terminal, view the results of your deployment. You should have also received a notice that states: SFDX: Deploy Source to Org ... ended with exit code 0. This means it successfully ran.

Parting Thoughts

Visual Studio Code For Salesforce

You’ve learned how to use Visual Studio Code and the Salesforce Extensions. You’ve seen how the features of an IDE can help maximize your development efficiency. Now you’re ready to explore some of the more complex topics, such as debugging with the Apex Replay Debugger, customizing your editor to fit your needs, and running your developer pipelines with Visual Studio Code.





Coments are closed