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.

Top 5 Features of Spring 20

Today , I am going to share top 5 features of Salesforce Spring 20 release which i liked and seems to have increased efficiency to great extent. Mobile: Customized Mobile Experiences and the New Salesforce Mobile App So with the new Salesforce mobile app, Mobile Publisher gets custom notifications, deep linking, and other key features … Continue reading Top 5 Features of Spring 20

Resetting Record Edit Form In LWC

Hello Trailblazers !!!! Using Record Edit Form saves a lot of time when we know there are certain fields for insertion of Record for a object. We can also reset the form on click of button as well. <template> <lightning-record-edit-form record-id={recordId} object-api-name={objectApiName}> <lightning-input-field field-name="Name"></lightning-input-field> <lightning-input-field field-name="Industry"></lightning-input-field> <div class="slds-m-top_medium"> <lightning-button class="slds-m-top_small" label="Cancel" onclick={allowReset}></lightning-button> <lightning-button class="slds-m-top_small" type="submit" … Continue reading Resetting Record Edit Form In LWC

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