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
HTMLCollection and NodeList
HTMLCollection: HtmlCollection is a collection of HTML elements from DOM. it is access by the name,id or index number. It use getElementByClassName, getElemenrtByTagName in NodeList. It uses three Methods: HTMLCollection Item() Method HTMLCollection length() Method HTMLCollection namedItem() Method Html Collection
How to export database schema with data in Microsoft SQL Server Management Studio
Problem: When we use Microsoft SQL Server Management Studio to export the database, by default it will export the database schema only. When I was trying to export the database to import it into my other local machine, I faced
How to read Emails using JMeter
JMeter is an open-source tool that helps to perform load testing. It provides various samplers to perform load testing. Today, we will discuss email related samplers. There are two samplers to perform an action related to the email, read(mail reader
How to create a collapsible section in Salesforce LWC
Problem: We can create a collapsible section in Salesforce Lightning Web Component using slds-section slds-is-open LWC classes or HTML <details> tag. But we are are using LWC classes slds-section and slds-is-open we need to provide svg icon as given the
Git-Hub Project Management
Step 1: First, create a. It’s a repository, not a project. You need to create a project using the project Menu. I will move on to the project later. First, I am discussing creating issues. Step 2: Go to the
How to change the label of a field created by a managed package?
If we try to edit a managed package field from the object manager, it will allow you to edit very few details but it will not allow you to edit the label of the field. Both Field Label and Field
How to create a scratch org with namespaces in Salesforce DX
Salesforce DX is a platform that allows us to create multiple scratch Orgs with namespaces equivalent to the packaging organization. In order to achieve this, firstly link your Dev Org with namespaces to the Developer Hub Org. This process is
Fetch Mails from Gmail in Core PHP
Fetch Mails in Core PHP Create an Core php app on console (https://console.developers.google.com). Download Google Client library from the following link (https://github.com/googleapis/google-api-php-client) Download the file of credentials(client_id,client_secret) and put it in the project directory. Create the config file in the
Error: An object reference is required for the non-static field, method or property
Object Reference In one of my .net reference projects, I had a need to create a new model and its corresponding interface, repository, and client class. In a method of the existing controller class, I need to create a record