Category Archives: Salesforce Services

Add Lightning Components to VisualForce Page

Salesforce has reimagined the platform from Classic to Lightning. With the lightning version, accessing data and tools has become easier. The major advantage of Salesforce Lightning over Salesforce Classic is its faster response time with enhanced user interface. Lightning uses its own set of components and design system which is different from Salesforce Classic. The… Read More »

Using Roll-Up Summary field formula

While working with one of our recruitment based clients, we had a requirement to incorporate their business process for the updating the Account fields, based on a roll-up summary field. The process required certain fields to be updated, emails to be fired for the same criteria, etc. This could be easily resolved if you choose… Read More »

Adding/Creating FieldSet in Salesforce

A field set is a grouping of fields for an object. Creating field sets in Salesforce is an easy way to dynamically query fields and dynamically binding the fields to display field sets on your Visualforce pages which can save you a big chunk of time. Field set is an out of the box feature… Read More »

Creating a Lightning Component

Lightning Components are the self-contained and reusable units of an app. They represent a reusable section of the UI. It is a bundle that can contain other components, as well as HTML, CSS, JavaScript, or any other Web-enabled code. This enables you to build apps with sophisticated UI’s. It can range in granularity from a… Read More »

Creating SObject Dynamically by Using Id

While working on one of our projects, we faced a challenge where we were supposed to create the object, already existing in the database, dynamically from just an “Id”. We had no information other than the Id field of the record. We can use the functions of SObjectType class to create the instance of a… Read More »

Batch Processing in Salesforce

Salesforce does not allow to perform DML operation more than 10K records in single transaction. Consider a situation where you have more than 10K records to perform DML operation. Due to Governing limitations of Salesforce (because of Multi-tenant architecture of Salesforce) you won’t be able to do the same. But Salesforce provided very nice feature… Read More »

Convenience added to Process Builder

Salesforce adds features to the existing Salesforce functionality with every release. It’s always the Sandboxes that gets upgraded first so that your organization gets the look and feel of the new release. As you must be already aware, Lightning is the latest happening thing in Salesforce, and you would find lots of exciting new features… Read More »