Salesforce Archives - Page 4 of 26

Salesforce WSDL Api login using SOAPUI – Issues and Solutions

Author - Varun Chopra
|
0 Comments
|

Salesforce WSDL Api login using SOAPUI – Issues and Solution

(Ubuntu 14.04, Salesforce Api version 43.0, SoapUI-x64-5.4.0)

If you want to test salesforce login api call before actual implementation then you can use SoapUI. It is Read more…

How to create Approval Process in Salesforce

Author - Anjana Devi
|
0 Comments
|

What is Approval Process in Salesforce and how to create it

An approval process is an automated process that is used to define a flow for approval of a record of Objects (Standard/Custom).

Approval Process Steps are:
1. Object – Any Read more…

Salesforce | Call Apex class from Process Builder

Author - Kiran Preet
|
1 Comment
|

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 actions section of process builder, we can execute apex Read more…

Style your existing Visualforce page with Lightning Experience

Author - Kiranpreet
|
0 Comments
|

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 mobile web.

Example:-

Read more…

Different ways to create Triggers in Salesforce?

Author - Deepika Saini
|
0 Comments
|

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)Read more…

Access Salesforce from Gmail using Lightning for Gmail

Author - Kiranpreet
|
0 Comments
|

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 Salesforce. You can create Read more…

Zoho CRM Editions and Limitations

Author - Webner

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 limitations. At the end we Read more…

Creating Azure Logic App for Salesforce Integration

Author - Varun Chopra
|
0 Comments
|

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 Apps and Read more…

Salesforce | This organization isn’t authorized to upload change sets to other organizations

Author - Kiran Preet
|
0 Comments
|

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 resolve this issue, you need to Read more…

Create Stripe Payment Form in Salesforce

Author - Anjana Devi
|
0 Comments
|

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 I Read more…

Salesforce | Sort “wrapper class” objects alphabetically based on a String parameter

Author - Webner
|
0 Comments
|

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 fName {get;set;
}

public MyWrapperclass(String fullName)
{
fName=fullName;
}

public MyWrapperclass Read more…

How to create and use FieldSet in Salesforce

Author - Anjana Devi
|
0 Comments
|

How to create and use FieldSet of a particular Object (Standard or Custom) in Salesforce

FieldSets are commonly used where we want to display fields of a particular object in the Visualforce page dynamically.

1. Steps to create FieldSet of a particular Object:
Open Layout of Read more…

Hide Record IDs in URL on listview Custom Button click in Salesforce

Author - Deepika Saini
|
0 Comments
|

Open Visualforce page on Custom Button click and hide Record ids in URL

Problem:- How to hide the selected record Ids in the Url while using the listview Custom Button?
Solution:- Create custom button on any Read more…

Understanding Developer Console, Workbench and Force.com IDE

Author - Rita Sharma
|
0 Comments
|

What is the purpose of Developer Console, Workbench and Force.com IDE and their differences

Prerequisite: Salesforce Org should be API-enabled for these tools to run. Salesforce API-enabled editions are:

1) Developer Edition
2) Enterprise Edition or above

Below, I am going to describe Read more…

Creating and using Custom Component in Visualforce Page

Author - Deepika Saini
|
0 Comments
|

Custom Component in Visualforce Page

Custom Component is very useful in the Salesforce. Sometimes, in the visualforce page, we need the same block of code again and again. For this, we can create VisualForce Component which will contain the common code which is used again and Read more…

Validate and deploy changeset in Salesforce Production Org

Author - Anjana Devi
|
0 Comments
|

How to validate/deploy a changeset with specific test cases in Salesforce Production Org?

Steps to create and deploy a Change Set:

In Sandbox:
1. Search Outbound ChangeSet in Quick Find Box in Sandbox Org. Then click on new button Read more…

Introduction to Salesforce Community Cloud

Author - Banita Rani
|
2 Comments
|

Introduction to Salesforce Community Cloud and Steps to create and customize it

Communities are like portals or support sites for connecting important people. Communities improve engagement with your Customers, Partners, and Employees.

You can create multiple communities inside your salesforce org for different type of needs Read more…

Salesforce | Different ways to use datepicker on visualforce page

Author - Shalini

1. Apex:inputfield:

We can simply use apex:inputfield and bind the field with date type field and it will automatically use the Salesforce Calander:
<apex:page standardcontroller=Contact>
<apex:form>
<apex:inputfield value=”{!Contact.Birthdate}”>
</apex:form>
</apex:page&gt Read more…

Salesforce custom tabs not visible in production org

Author - Neha Mishra
|
0 Comments
|

Salesforce custom tabs, which are a part of the Managed Package

Problem : I had added 3 custom tabs to a managed package and deployed the package in production org. I am able to see them in the developer org but unfortunately they are not visible in Read more…

Formula Field as a Custom LookUp field in Salesforce object

Author - Navdeep Kaur
|
0 Comments
|

How to use a Formula Field as a Custom LookUp field in a Salesforce object

In Salesforce we have 40 lookup field limit per object. Sometimes we need a field which behaves like a Lookup field. We can create a custom Lookup field with the help Read more…

‹ Prev page1 2 3 4 5 6 7 8 9 ... 26 Next page ›