Category: Salesforce
Salesforce | Call Apex class from Process Builder
Salesforce process builder is a tool to automate the processes using user interface itself. Here we can select source object, criteria/event to initiate the process as well and the action to be taken on the occurrence of the event. In
Style your existing Visualforce page with Lightning Experience
Style your existing Visualforce page with Lightning Experience You can view your existing Visualforce page with lightning experience by simply adding a lightningStylesheets=”True” attribute in the tag. This tag will work with Salesforce for Android, Salesforce for iOS, or Salesforce
Different ways to create Triggers in Salesforce?
What are the different ways to create Triggers in Salesforce? There are three ways of creating a trigger depending upon the type of object in salesforce. 1. Trigger on Standard Object (which have visible property):- a) Go to Setup->Customize. b)
Access Salesforce from Gmail using Lightning for Gmail
Access Salesforce from Gmail You can access salesforce data from gmail directly. Sales Reps can easily view and search relevant data from gmail, then relate important emails with salesforce record without logging in salesforce org using lightning for Gmail in
Zoho CRM Editions and Limitations
What you cannot do in which type of Zoho CRM license Zoho CRM is available in many editions and each edition has different set of features. In this article we are trying to cover each edition and list corresponding key
Creating Azure Logic App for Salesforce Integration
Introduction to Azure Logic Apps | Creating Logic App for Salesforce Integration Azure App Services Azure App Services is an integrated service which allows to create web and mobile applications from any platform or for any device. This includes Logic
Salesforce | This organization isn’t authorized to upload change sets to other organizations
Salesforce: Allow Outbound Change Set from Production To Sandbox When you create an Outbound change set in your Production account and upload the change set then it will show the error as shown in the following screenshot: In order to
Create Stripe Payment Form in Salesforce
Steps below to Create & Validate Stripe Payment Form in Salesforce If you are using Stripe as your payment gateway, follow below steps to add the Stripe payment form and validate the user input. Below is the sample code that
Salesforce | Sort “wrapper class” objects alphabetically based on a String parameter
Suppose we have a Wrapper class with fName as a string instance variable and we want to sort a list of objects alphabetically based on value of this variable. Implement Comparable interface global class MyWrapperclass implements Comparable { public String