Tag: Salesforce
-
Continuous Integration in Salesforce using Flosum AppExchange
Native Force.com solution for Continuous Integration using AppExchange product Flosum
-
Top Google chrome extensions for Salesforce
Checkout if your favorite Google Chrome extension made it in Top extensions for Salesforce
-
System mode or God mode in Apex – Gotchas
Gotchas of System mode or God mode in Apex and its impact by using “With sharing” keyword in 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…
-
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…
-
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…