Arun Kumar

Arun Kumar

Arun Kumar is a Salesforce Certified Platform Developer I with over 7+ years of experience working on the Salesforce platform. He specializes in developing custom applications, integrations, and reports to help customers streamline their business processes. Arun is passionate about helping businesses leverage the power of Salesforce to achieve their goals.

Automatically assign records to the queue

The custom object's record should be set as "Public Read Only" for visibility to all users but editable only by the owner. In case of picklist field edits, the record will auto-assign to the editing user's groups through Process Builder, allowing them edit access while restricting the previous assignee. A profile giving 'Read' and 'Edit' permissions and user-assigned queues are also needed in this setup.

Mailchimp Batch Operation | Salesforce ~ Mailchimp Integration

MailChimp API allows batch operations to perform multiple functions in a single call, potentially reducing the risk of exceeding your API call-out limit. This is useful in scenarios such as subscribing and unsubscribing from records simultaneously. The batch operation runs on the MailChimp server, and its status may be checked after the callout.

Retrieve CustomField Metadata Information Using Tooling API

Salesforce users can identify custom fields created in a specific time frame using the Salesforce Tooling API. This can be accessed through the developer console by checking "Use Tooling API". As well as field info, the API provides metadata about objects, standard and custom properties, code coverage, validation and workflow rules. The data can be exported in CSV format using an extension called 'SFDC Dev Console Data Exporter'.

Task Transfer Tool – Mass Task Transfer

The Task Transfer Tool is a lightning component designed to efficiently transfer multiple task records from one user to another. Perfect for mass reassignments, it offers bulk task transfer in a single click. It is user-friendly, compatible with Salesforce 1 mobile app and its code is accessible via a provided link.

Display the uploaded image on the detail page

The author shares a solution for a Salesforce requirement whereby a user should upload an image file to a record and have it appear on the record's detail page. The solution involves creating a visualforce page, using a rich text field, and embedding a download URL. This is accomplished by using a 'ContentDownloadUrl' attained after a CD record is created via the ContentDistribution object. The author illustrates the process with code pointers and refers to a Salesforce document for further details.

Super fast record search in the lightning component.

The post details a demonstration on reducing server calls in Lightning Component development by filtering/searching records at the client-side. It includes the components, JavaScript Controller and Helper Controller, as well as an Apex Controller, all of which aid in accomplishing this task. Expectedly, this post can assist many developers. Happy coding.