Author: Webner
Comparable Interface in Apex
When we have to sort a custom object list, based on a field, we try doing it by SOQL query ORDER BY but sometimes due to any constraint or some complex requirements we need to sort the list in Apex
Difference Between Limit of Insurance and Limit Of Liability
Limit of Insurance: It is the Maximum amount of money insurance companies will pay against your claim. It is the most important aspect when choosing your Insurance. If you exceed the insurance limit you will be responsible for paying those
Celery Broker
A celery broker is an intermediary between a producer and a consumer of messages in a distributed system. It acts as an intermediary to facilitate communication between the two parties. Celery brokers are usually used with message queues, such as
Locators Use in Selenium WebDrive
The automation process in selenium can be followed as: Launching Browser Opening the desired website to be automated Locating web elements like textbox Performing operations on the located web elements like writing in the textbox Performing assertions like checking the
Creating an Azure MySQL database and accessing it via MySql Workbench
Look for “MySQL” in the search bar at the top of the Microsoft official website and then choose Azure Database for MySQL. Create a MySQL database using the resource group, and don’t forget to change the default pricing tier. As
Salesforce Data Loader
Data Loader is used to import or export data in bulk. Use it to export, delete, update, or add records to Salesforce. The client application known as Data Loader must be downloaded directly to the desktop from the Data Management
Create a site with Salesforce experience cloud
Following are the steps to create a site with Salesforce experience cloud: Login To salesforce In the quick search box find All sites and click on the New button. Select the template as per your requirement. I am using the
Azure Upload Blobs To Storage account using SAS URL (source)
//SASToken to pass to the Blobservice client for authentication to source storage account String sasToken = “SAS Token of source storage account ”; //connection string to connect to the destination storage account string connectionString =”connection string of destination storage account”;
How to avoid the recursive triggers in Salesforce
Recursive Trigger:- When a trigger is calling itself again and again, this situation is called a recursive trigger, or we can say that a recursive trigger performs the same process multiple times. If we don’t handle this recursive trigger, it