Key Take Aways Trailheadx 20

Trailheadx is annual developer event for Salesforce, where they celebrate , bring up new product level announcement and let customer , vendors , developers, student meet at one place and blaze trails together . In this blog , i will be highlighting key announcements made in the first time virtual held event. Code Builder: Welcome … Continue reading Key Take Aways Trailheadx 20

Custom Notification in Salesforce Using Process Builders and Flows.

From the time custom notification is introduced in salesforce(Summer 19), it has been kind of replacing the extra use of Email alerts and Chatter post . Previously these were two ways to notify the user (Desktop/ Mobile ). So let us see how this is used. 1.Go to Setup >> Type Custom Notifications. 2. Click … Continue reading Custom Notification in Salesforce Using Process Builders and Flows.

Create Record Through LWC

Hi Friends . This is my first post on LWC. So today we will discuss 2 different way of creating record through LWC. 1.Creating Form and Save Controller . template.html <template> <lightning-card title="Create Account" icon-name="standard:account"> <div class="slds-p-around_x-small"> <div class="slds-p-around_medium lwc-bg"> <lightning-input type="text" label="Name" value={rec.Name} onchange={handleNameChange} required></lightning-input> </div> <div class="slds-p-around_medium lwc-bg"> <template if:true={TypePicklistValues.data}> <lightning-combobox name="progress" label="Type" … Continue reading Create Record Through LWC

Why should you Attend Trailheadx -2019 (19th Dec-20th Dec)

Finally Trailheadx 2019 is all set to happen in India at Bangalore on Dec 19th -Dec 20th , 2019 at BIEC Campus . As this a huge event and must attend event for anyone who is related to Salesforce in any ways. I have my own reasons why one should attend this event . Below … Continue reading Why should you Attend Trailheadx -2019 (19th Dec-20th Dec)

Trigger To check Duplicate on Lead Using Email and Phone

The above functionality can be achieved by duplicate rules. But as we are into coding we will be writing trigger for it. We will be writing Trigger and Handler for it. The best practice for writing a trigger and Calling the apex class in which we will be writing the business logic for it. Apex … Continue reading Trigger To check Duplicate on Lead Using Email and Phone