Skip to main content

Posts

Showing posts from March, 2023

View Debug Information for Wired Properties in Browser Console

  To simplify the process of debugging data received with a wired property in Lightning Web Components, Chrome DevTools now provides custom formatters that allow you to access debug information directly from the console. Before this feature, you had to use a wired function to return your data and then inspect the deconstructed data and error properties to debug wired properties and methods. With custom formatters, you can simply log your wired property or method to the console, and the debug information will automatically be formatted and displayed for you. This saves you the trouble of manually inspecting the deconstructed data and error properties. Here is a step-by-step guide for viewing debug information for wired properties in the Browser Console, starting with enabling debug mode for a selected user. Enable Debug Mode for a Particular User in OrgEnable Debug Mode for a Particular User in Org Enter “Debug” in the Quick Find Box . Click on Debug Mode under Lightning Components...

Create a WhatsApp Channel in Service Cloud(Salesforce)

Create a Messaging channel to let your support team help customers over WhatsApp. Customers message your company from the WhatsApp mobile or desktop app, and agents reply from the Service Console. SetUp Enhance WhatsApp Channel: To set up an enhanced WhatsApp channel, go to the Messaging Settings in Setup and select Messaging. Click on New Channel and choose WhatsApp, then Enhanced. Follow the instructions to create or select a Meta Business Account, a WhatsApp Business Account, and a WhatsApp Business Profile. Verify your WhatsApp Business phone number and click OK when notified that you’re ready to chat. Choose how to route incoming messages to agents, and customize the user experience for agents and customers. To create a standard WhatsApp channel, go to Facebook Business Manager and find your Business Manager ID. Send an email to whatsappenablement@salesforce.com with your Salesforce org ID, Facebook Business Manager ID, phone number, and other information. After a few days of pro...

How to create ICS/Calendar File | Helps you to download the calendar invites

  Want to know how to create ICS(Internet Calendar Scheduling) file for Business purpose....👀    ICS (Internet Calendar Scheduling) file is a calendar file saved in a universal calendar format used by several email and calendar programs, including Microsoft Outlook, Google Calendar, Notes and Apple Calendar. It enables users to publish and share calendar information on the web and over email. Lets see the code. The code is written in lwc(Lightning web component). HTML:   <template> <div class="login-container"> <h1 style="size: 14px;"><b>Create ICS File</b></h1> <div class="form-group"> <lightning-input type="datetime" name="input1" value={EventEndValue} onchange={startDate} label="Enter Start date/time value" ></lightning-input> </div> <div class="form-group"> <lightning-input type="...

Barcode Scanner API In LWC

  In this blog, you will learn how you can use the newly launched Barcode Scanner API for lightning web component in salesforce. Salesforce released a new Barcode Scanner API which now supports Scanning barcodes from a Lightning web component for mobile devices. salesforceScanner.html :- <!-- barcodeScannerExample.html --> <template>     <div class = "slds-text-align_center" >         <span class = "slds-text-heading_large" > <lightning-icon icon-name = "utility:scan" alternative-text = "XML file" title = "XML" > </lightning-icon> Salesforce Wallah </span>     </div>     <template if:true = {scannedBarcode} >         <div class = "slds-var-m-vertical_large slds-var-p-vertical_medium              slds-text-align_center slds-border_top slds-border_bottom" >             Scanned bar...

How to Integrate Salesforce with GitHub.

  In this blog, you will learn how you can Integrate salesforce with github. Steps: 1)   You have to create a GitHub account, I already have my GitHub account, so I will move ahead. 2) You have to download the git-bash( https://git-scm.com/downloads ). you have to setup Username Password in gitbash of your github account. 3) Then open your chrome or any other browser, search for  https://api.github.com/ .It will give you like this : To get GitHub Data into Salesforce portal. 1) Login to Salesforce. Go to Setup -> In the quick find box -> search 'External data source'. 2) Create new External data source with name  GitHub_Repos . 3) Create a Github tab like this: 4) Create Apex Classes and paste the below code on your developer console. GitHubProvider.cls :- global with sharing class GitHubProvider extends DataSource .Provider{     override global List < DataSource . Capability > getCapabilities () {         List < Dat...