Tag Archives: Salesforce Technical

Create Salesforce Records with Predefined Fields Using Custom Buttons

In Salesforce, required fields serve a critical role in maintaining data quality and enforcing business rules. But what happens when users don’t want to see or interact with those required fields on the page layout? Fortunately, Salesforce provides a clever workaround using custom URL buttons or links. With this approach, you can bypass the manual… Read More: Create Salesforce Records with Predefined Fields Using Custom Buttons »

Easily Creating Force.com sites

Force.com sites enables developers to build and deploy public web sites /web applications. It supports for custom pages using Visualforce, JavaScript, CSS. Also, it supports both authenticated and public websites. All the objects are accessible in force.com sites so that we can display any information. Steps to create Force.com sites:- -> Create Force.com Domain First,… Read More: Easily Creating Force.com sites »

Connecting Salesforce using SOAP API in C#

Many times we use multiple system for business objective and require information from various systems to be integrated with each other. To integrate with Salesforce we have many options, one of them is to connect the Salesforce using Salesforce SOAP API using Partner WSDL. Here we are providing steps to connect Salesforce using SOAP API… Read More: Connecting Salesforce using SOAP API in C# »

Invoke Future Methods through Apex Trigger for web service callout

While developing applications in force.com, sometimes we need to consume external web service in apex trigger. But, callouts cannot be made from apex triggers as that restricts database transaction until the callout is completed and the time limit for this is up to 120 seconds. You can find other callout limits here. The only way… Read More: Invoke Future Methods through Apex Trigger for web service callout »

Create Button for List View

Salesforce provides some built in buttons while showing the list of records. Similarly we can add additional buttons for our custom functionality. We had a requirement wherein we needed to validate the records in the list with external web services. For this we created a custom button in the list view so that when the… Read More: Create Button for List View »