26 05, 2023

Lightning Spinner Salesforce

2023-05-26T04:31:32+00:00May 26, 2023|Salesforce|0 Comments

|
| ByRishabh Sehgal

A lightning Spinner displays an animated spinner image to indicate that a feature or customization is loading. This component can be used when retrieving data or anytime when the operation takes time to complete so meanwhile, we can display a [...]

20 02, 2023

Graph API in Salesforce

2023-04-04T08:50:54+00:00February 20, 2023|Salesforce|0 Comments

|
| ByWebner

The Salesforce Graph API is a powerful tool that allows developers to access and manipulate data within Salesforce. It provides a unified interface for interacting with the Salesforce platform, allowing developers to quickly and easily build applications that integrate with [...]

13 01, 2023

Salesforce Data Loader

2023-01-13T04:56:35+00:00January 13, 2023|Salesforce|0 Comments

|
| ByWebner

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 [...]

22 09, 2022

What is National Producer Number?

2022-09-22T04:43:52+00:00September 22, 2022|Cloud, Salesforce|0 Comments

|
| ByWebner

National Producer Number or NPN is a type of identifier assigned to individuals or businesses. Nowadays, It has taken place of the license number. NPN is issued or assigned specially to “insurance-related organizations or activities” to keep the track of [...]

25 02, 2022

How to login to salesforce using session id?

2022-02-25T05:24:40+00:00February 25, 2022|Salesforce|0 Comments

|
| ByWebner

We may also access Salesforce without having to enter a username and password. We may log into Salesforce using the session ID. To log in to salesforce using session-id follow the following steps: Step 1: execute this piece of code [...]

17 01, 2022

Inheritance in Apex

2022-01-17T05:47:33+00:00January 17, 2022|Salesforce, Web Development|0 Comments

|
| ByWebner

Inheritance is a feature of OOPS that allows us to inherit the properties or methods of a class. The base class acts as a parent, the class that is inheriting is called the child class. The child class has access [...]

11 01, 2022

Decorators in Lightning Web Component

2022-01-11T05:48:08+00:00January 11, 2022|Salesforce|0 Comments

|
| ByWebner

The Lightning Web Component has three decorators. @api @track @wire @api: If we want to pass any variable from Parent component to child component then we use @api decorator. To pass data to the child component, we need to define [...]

7 01, 2022

Custom font in Visualforce Page

2022-01-07T05:11:55+00:00January 7, 2022|Salesforce|0 Comments

|
| ByWebner

We can use custom fonts in the Visualforce page using Salesforce Static Resources. Following are the steps to use custom fonts: In Setup, use the Quick Find box to find Static Resources and create new a resource with ZIP of [...]

21 12, 2021

Bulk State Transition

2021-12-21T05:37:15+00:00December 21, 2021|Database, Salesforce|0 Comments

|
| ByWebner

The Bulk State Design pattern is the general pattern that executes the bulk of the actions in Apex based on the change of state of one or more records. Bulk transitions increase the code reusability by allowing only records that [...]

10 12, 2021

What is Schema in Salesforce?

2021-12-10T04:57:17+00:00December 10, 2021|Salesforce|0 Comments

|
| ByWebner

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 [...]

Go to Top