Most of time clients want to show complex data as tabular chart with different color combination. We can use HeatMap chart in LWC to show relationship within two factors like show day wise sale of top employees, day wise stock index, sport players performance for each game etc. Let us create HeatMap chart for visualizing sales data for each employee per day. For creating this chart in LWC (Lightning Web Component) we have to perform below steps Download and Add Chart Library to Static ResourceCreate Apex Class to prepare dataCreate LWC ComponentTest Chart 1. Download and Add Chart Library to…
Author: Dhanik Lal Sahni
Capturing signature is very important for many business use cases specifically for Salesforce community portals where we get agreement signed by customers. There are many contract management application available for this in AppExchange , in this post we will generate and create signature in LWC. I have already posted a article long back which is for lightning aura component for similar functionality. You can check blog Create Signature Pad in Salesforce Lightning, if you are looking for aura version. For creating signature component in LWC, I have added two use cases in this blog, generating signature using some custom signature…
LWC select presents menus of options. Sometime we need option group in menu. This post will give step by step information to create option group in lwc select.
OTP is another form of multi-factor authentication (MFA) for securing our protected information. This post will explain how to generate OTP in LWC.
Schedule email alert based on business hour is one of important requirement. This post will give step by step information to schedule email alert in Salesforce.
Einstein Vision API help to extract text from different image format. This post will help in extracting driver license detail from Image using Einstein API.
AWS S3 is used to store salesforce files. This post will give detailed information about downloading S3 File using AWS Signature Version 4.0
We mostly have requirements to upload files in file storage servers like AWS S3 Server, Dropbox, Google Drive, etc. This post will help in uploading files to S3 Server. We will use named credential to upload file in S3 server. Steps for uploading file in S3 Server using named credential Create a named credential for AWS CredentialCreate an apex class to upload fileTest functionality 1. Create a named credential for AWS Credential Create a named credential with Authentication Protocol as AWS Signature Version 4. AWS Signature Version 4 (SigV4) is the process to add authentication information to AWS API requests…
Integration with external system is very common requirement in Salesforce application. For this we can go for declarative external service or create apex class for each type of integration. Declarative External Service can only work when OpenAPI schema is available so for other cases we have to go for apex class. In this post we will create a generic apex class for calling external system which can used with named credential also. For creating generic class we have to add feature to get different parameters like header parameter, request parameters, endpoint urls, named credential information etc. We will also add…
Sending Email Template as attachement is one of the basic requirement in Salesforce. This blog will give steps for sending Email Template as Email Attachement.