Many of us doing double work in order to call the Lightning Web Component in custom quick action. We have to call LWC in Lightning Component in order to show the LWC UI in quick action. Now Spring 21 brought way to call the Lightning Web Component from Custom Quick Action but it is not… Continue reading SPRING 21 – CUSTOM ACTION WITH LWC(PILOT)
Category: Lightning
PASS MULTIPLE PARAMETER TO LWC IN PUBLIC COMMUNITY PAGE WITH SIMPLE EXAMPLE
Create a LWC component TestCommunity. In TestCommunity.js-meta.xml, add the <target> and <property> tags as the example below and save the file. <?xml version="1.0" encoding="UTF-8"?> <LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata"> <apiVersion>50.0</apiVersion> <isExposed>true</isExposed> <targets> <target>lightningCommunity__Page</target> <target>lightningCommunity__Default</target> <target>lightning__HomePage</target> </targets> <targetConfigs> <targetConfig targets="lightningCommunity__Default"> <property name="recordId" type="String" label="Record ID" description="The value should be {!recordId}." /> <property name="taskId" type="String" label="Task ID" description="The value should be {!taskId}." /> </targetConfig> </targetConfigs> </LightningComponentBundle> In TestCommunity.js file using @api annotation for recordId and taskId propoerty in js. import { LightningElement, api} from… Continue reading PASS MULTIPLE PARAMETER TO LWC IN PUBLIC COMMUNITY PAGE WITH SIMPLE EXAMPLE
DOWNLOAD EXCEL FILE OPTION IN LWC
This Post explains how to download the excel file that is created as VF Page inside LWC Component. Download the js file named download.js from the link https://github.com/rndme/download/blob/master/download.js and add it as a static resource. Create a Visual force Page for the file that is to be generated as excel. TestExcelExport.page <apex:page controller="TestExcelExport" contentType="application/vnd.ms-excel"> <Workbook… Continue reading DOWNLOAD EXCEL FILE OPTION IN LWC
TESTING FLOW IN SALESFORCE
We will discuss what are the possible ways available for testing flow in salesforce and how it will work so that you can find errors before they affect your users. Yes, Its simple test method by using clicks not a code. Steps for Flow Test : In Setup page --> Enter Flows in the Quick… Continue reading TESTING FLOW IN SALESFORCE
VARIOUS WAYS TO INVOKE FLOW IN SALESFORCE
This blog is explain what are the ways available to invoke flow in salesforce and we can create flow development easily but we need to know where it is invoke as per business use case. Available ways to invoke flow : Custom Button, Links and Actions.Process Builder Visualforce PageApex Start() MethodFlow URLAs a SubflowLogin FlowEmbedding… Continue reading VARIOUS WAYS TO INVOKE FLOW IN SALESFORCE
HOW TO SEND EMAIL THROUGH FLOW IN SALESFORCE
We know multiple ways in Salesforce to send email so in this blog explain the simple steps to send email through flow. So you can add this steps as per your business use case to send email. Flow Creating Steps : Step 1 - Go to setup --> Search Flow in Quick Find Box -->… Continue reading HOW TO SEND EMAIL THROUGH FLOW IN SALESFORCE
HOW TO CREATE RECORD BY USING FLOW IN SALESFORCE
Scenario : Create new Opportunity record by using Flow. How to create record ? Lets create new record, for simple example you can take Opportunity object and create new opportunity record by using Flow. You can follow the steps below to create new record. Step 1 - Go to setup --> Search Flow in Quick… Continue reading HOW TO CREATE RECORD BY USING FLOW IN SALESFORCE
BASICS OF FLOW ELEMENTS IN SALESFORCE (PART 3)
Flow elements : In Flow builder layout , Flow elements available in that left side bar and each element are represents action that the flow execute. Such actions are collecting data from flow users, create records , displaying information and executing business logic or manipulating data.In Flow Builder, the Elements tab displays the types of… Continue reading BASICS OF FLOW ELEMENTS IN SALESFORCE (PART 3)
BASICS OF FLOW ELEMENTS IN SALESFORCE (PART 2)
Flow elements : In Flow builder layout , Flow elements available in that left side bar and each element are represents action that the flow execute. Such actions are collecting data from flow users, create records , displaying information and executing business logic or manipulating data.In Flow Builder, the Elements tab displays the types of… Continue reading BASICS OF FLOW ELEMENTS IN SALESFORCE (PART 2)
BASICS OF FLOW ELEMENTS IN SALESFORCE(PART 1)
Flow elements : In Flow builder layout , Flow elements available in that left side bar and each element are represents action that the flow execute. Such actions are collecting data from flow users, create records , displaying information and executing business logic or manipulating data.In Flow Builder, the Elements tab displays the types of… Continue reading BASICS OF FLOW ELEMENTS IN SALESFORCE(PART 1)