Lightning · Salesforce

Incorporate SLDS into Javascript Application(Vue.Js)

In this tutorial will set up a basic javascript App(vue.js) and incorporate Salesforce Lightning Design System into it , so we can leverage the font, style and design assets(SVG) of SLDS to build an Application with salesforce look and feel. Initial Setup : 1.Download Vue js CLI using npm(node package Manager). 2. Create Project 3.Project… Continue reading Incorporate SLDS into Javascript Application(Vue.Js)

Apex · Lightning · Salesforce · Trigger

Asynchronous Apex Trigger using Change Data Capture

Change Data Capture event is a notification that Salesforce sends when a change to a Salesforce record occurs as part of a create, update, delete, or undelete operation. When we are saving a record in salesforce it causes the platform to start apex transaction . Change event triggers run asynchronously after the apex transaction is… Continue reading Asynchronous Apex Trigger using Change Data Capture

Email Service · Salesforce

Bulk Import Email from Gmail to Salesforce

Use Case : Customer needs to import all emails along with attachment from their Gmail account into their Salesforce org. Problem: Currently, there is no way to mass-import emails within the Salesforce User Interface Resolution: We are going to export email into MBOX format.Then using python script we will generate CSV and using data loader… Continue reading Bulk Import Email from Gmail to Salesforce

Lightning · Salesforce

Dynamic Reusable Lightning Table Component

Don’t Repeat Yourself (DRY) is a principle of software development aimed at reducing repetition of software development patterns. Most of the time we will find creating same kind of Component for different object over and over again. To over come this we have created Dynamic reusable lightning component. Github Link : https://github.com/gokulrajanoff/dynamic-table- This component is… Continue reading Dynamic Reusable Lightning Table Component