Available at
-
-
Recent Posts
CodeLive with Salesforce
LWC Coder
Category Archives: Lightning Web Component
Imperative Service Syntax
We can get the Salesforce data in Lightning Web Component through Imperative Service. Please see the following image carefully to understand the Imperative Service Methodology with Syntax. 3,109 total views, no views today
3,109 total views, no views today
Posted in Lightning Web Component
Leave a comment
Apex Wire Method to Function with Parameters
Now, we will see how we can get the Salesforce Record details based on some parameters using Apex Class – Wiring to Function with Parameters mechanism. This mechanism is needed if you want to pre-process the data before going to … Continue reading
21,148 total views, 30 views today
Posted in Lightning Web Component
Leave a comment
Apex Wire Method to Function
Now, we will see how we can get the Salesforce Record details using Apex Class – Wiring to Function mechanism. This mechanism is needed if you want to pre-process the data before going to the Lightning App. To do this … Continue reading
5,512 total views, 3 views today
Posted in Lightning Web Component
Leave a comment
Apex Wire Method to Property with Parameters
Now, we will see how we can get the Salesforce Record details based on some parameters using Apex Class – Wiring to Property with Parameters mechanism. To do this exercise, we will try to search Contact Records based on Account … Continue reading
10,008 total views, 18 views today
Posted in Lightning Web Component
Leave a comment
Update Record by UI API
Now, we will see how to update a record using UI API. In this example, we will update the logged-in user record by using uiRecordApi which is a part of the UI API. So, we have built a LWC named … Continue reading
5,551 total views, no views today
Posted in Lightning Web Component
Leave a comment
Create Record by UI API
Now, we will see how to create a record using UI API. In this example, we will create a Contact record by using uiRecordApi which is a part of the UI API. So, we have built a LWC named “createUIRecord“. … Continue reading
4,815 total views, 3 views today
Posted in Lightning Web Component
Leave a comment
Can we use UI API imperatively in Lightning Web Component?
NOPE. We cannot use UI API imperatively to get the record details in Lightning web Component. If we will try to use, we will get the following error. 3,594 total views, 3 views today
3,594 total views, 3 views today
Posted in Lightning Web Component
Leave a comment
Get record details by UI API
As discussed earlier, Salesforce introduced UI(User Interface) API to build Salesforce UI for mobile and custom web apps by calling this UI API. You don’t need to write Apex Class to fetch data or DML operations, just need to call … Continue reading
7,479 total views, 12 views today
Posted in Lightning Web Component
Leave a comment
Wire Service Syntax
Lightning Web Component can get Salesforce Data using a reactive wire service built on Lightning Data Service. Each value in the immutable stream is the newer version of the value that precedes it. Wire Service is a reactive service because … Continue reading
3,321 total views, 3 views today
Posted in Lightning Web Component
Leave a comment
How to Call Apex Class, get sObject/sObject fields from Lightning Web Component?
3,765 total views, 18 views today
3,765 total views, 18 views today
Posted in Lightning Web Component
Leave a comment