Asynchronous Apex
Asynchronous Apex in Salesforce allows developers to execute operations in a separate thread, enabling tasks to run in the background without impacting the user experience. This approach is particularly beneficial for handling long-running processes, callouts to external systems, and operations
NodeJs ZLIB – Zip and Unzip files using Nodejs
Compression and decompression of files also mean to zip or unzip files using Nodejs. It is implemented in Nodejs using the Zlib module. We can access Zlib using the following command. const zlib = require(‘zlib’); Zip and Unzip of files
The RefreshApex Method and its implementation in the Lightning Web Component
The refreshApex() function is used when we want to refresh the page data in lightning web components. We can update the wire function or parameter data using refreshApex (), and then component values will be rendered. Refresh apex works only
What is Schema in Salesforce?
Schema is a namespace provided by salesforce which provides schema metadata information using different methods and classes. ChildRelationship Class This class contains methods to access the child relationship as well as the child sObject for a parent sObject. DataCategory Class
Remove the Logged in account from Microsoft Teams
Sometimes we do not want to save our profile on any account on some particular machines for security reasons. By default, the Microsoft Teams app saves the login credentials when we first log in, so next time it will not
Tab view in React-Native
It provides various packages to create tabs like views in the application. So react-native-tab-view is one of them. This component is implemented using the react-native-pager-view which is another component that allows the user to swipe left or right throughout the
What Role Does Insurance CRM Play in Agency Management?
Agency management software, according to the definition, is a digital solution that enables life, health, and property & casualty insurance agencies to automate their day-to-day duties and increase the efficiency of their operations. The new-age insurance CRM software has been
How to Set and Get Window size/position using Selenium Webdriver
How to Set and Get Window size/position using Selenium Webdriver In website testing, most of the time, we need to set window position and size or get window size and position to test the website responsiveness. Selenium Webdriver has many
How to Retrieve Metadata of AWS EC2 Machine
Metadata is data about your EC2 instance that is used to manage and configure the instance. Developers use the metadata in the script in order to configure the instances and their resources. Please login to your EC2 machine and run
LWC to create a custom editable datatable.
LWC also provides a standard editable datatable, but it can’t be flexible in design. So we can create a custom datatable by using LWC in the following way, in which we can make changes as per our needs. LWC HTML