Do it yourself – Dynamic forms, conditional logic and field population When working with online forms and salesforce CRM it is an important rule of thumb to make sure that the data entering from the forms updates seamlessly to your ...
TSB Forum Latest Articles
Smart Dynamic Forms for Salesforce
OriDo it yourself – Dynamic forms, conditional logic and realtime field population for salesforce without writing a single line of code. When working with online forms and salesforce CRM it is an important rule of thumb to make sure that ...
Is there a better way to handle callouts in Salesforce?
Kiran RaoRecently, I was doing an integration and was faced with a situation that lead me to think, is there a better way to do this, i.e. handle callouts in Salesforce? Well. Yes. There is, was the answer I found. You ...
Trends to watch in Cloud Computing – 2017
RadhakrishnaOver the past few years, ease of access and enhanced security features has made cloud to attain great popularity. As a result of which, today, an umpteen number of corporate houses and organizers worldwide are taking the support of cloud-based ...
How to Integrate Jitterbit With Salesforce?
Kiran RaoWhenever we contemplate about database and Salesforce the name that immediately captures our mind is Jitterbit. Jitterbit is one of the most powerful and appropriate tool for data migration and manipulation for Salesforce that allows Salesforce to easily connect with ...
Salesforce auto-create folders for all Account? Box.com
Kiran RaoThis is batch class use to auto-create folder for account . global class autofolderCreator implements Database.Batchable<sObject>,Database.Stateful,Database.AllowsCallouts{ global Map<String,String> boxFmap = new Map<String,String>(); global autofolderCreator(){ } global Database.QueryLocator start(Database.BatchableContext BC){ // this loop use to map existing folder with account so ...
Apex Web Services and callouts
Kiran RaoThis article explains how to create the web services from Apex Code, and how to access external web services using Apex code directly from Force.com. Introduction to Apex Web Services and Callouts Apex methods in your apex code can be ...