Category: Salesforce
-
Login to Salesforce from Salesforce using Authentication Provider
There are many ways to login to your Salesforce instance, using Google, Facebook, Linked, Twitter and even from other Salesforce Organization. I am sure many of readers has multiple Salesforce instances and its hard to remember password of each. We can connect every Salesforce instances and login using only one. In this post we will…
-
Using soapUI with Salesforce to test standard and custom web services response
soapUI is most common tool available to test Soap based web services, it also has capability to test REST web services. soapUI can be used to test Partner WSDL, enterprise WSDL, Tooling API, Metadata API to study capability and response from Salesforce before writing any code in Java, C# or any other language. In this article…
-
Salesforce Lightning Component – expand and collapsable panel example
How to use aura:facet component and Learn creating expand and collapsable reusable lightning component in Salesforce
-
Continuation object in Apex – Asynchronous callouts for long running request – Live Demo
Check the below video first if you are planning to use Continuation We may run into scenario in Salesforce project, where we need call external web service but no need to wait for response. Response from external web service can be processed asynchronously and once processed it can be presented in Visualforce page. We can accomplish this by…
-
Getting started with basics of Lightning Component
As you might already know that next big change in Salesforce is introduction to lightning components. As technology is changing rapidly and to take advantage of cutting edge innovations in web technology, Salesforce doesn’t want to stay behind. If we see trend, all major platform has introduced component based design like Polymer, React, Web Components, Angular…
-
All about Upsert and External ID in Dataloader and Apex – Videos
You may be wondering that there are tons of articles available for upsert operation and what is need of one more blog post. I wanted to note everything important about upsert operations using datalaoder and Apex with identified gotchas at single place, and that’s why its here 🙂 . External ID is field in Salesforce…
-
Using Dataloader and ANT to backup Salesforce data on FTP or SFTP server – Video
Tutorial on how to use command line dataloader to save exported Salesforce backup file on FTP or SFTP server
-
Using Selenium to test workflow field update action – Salesforce automated testing – Video tutorial – Part 2
We have already discussed basics of selenium and how we can use this tool for automated testing. Here we will see how we can take advantage of Selenium to test workflow field update. in this article we will create a simple workflow rule on Lead object and update “Description” field by adding fields “Number of Employees” and…
-
Create and update records using Javascript button in Salesforce- Ajax Toolkit
On this blog we have already seen “how to use Ajax Toolkit to mass update records” without writing any Apex code. In this article as well, we will use Ajax Toolkit to add custom button in Account page layout and update record. There are endless possibilities and use-cases where this approach can be very useful…
-
Selenium and Salesforce – Salesforce automation testing – Video tutorial – Part 1
This is first post of multi-series article on using Selenium with Salesforce for Automation testing. Testing has always been integral part of any software development life cycle and Salesforce has already taken it to next level by making mandatory to have 75% of code coverage before any code deployment. These apex test classes, however has…