Website Loading ....
  • March 31 2023
  • Sruvi IT

Queueable Apex in Salesforce

As we discussed in Future class, to overcome the control over the tracking of the future methods running status. Queuable apex takes control of your asynchronous Apex processes by using the Queueable interface. This interface enables you to add jobs to the queue and monitor them. To use Queueable Apex, a developer needs to create […]

Read More
  • March 30 2023
  • Sruvi IT

Latest Web designing Techniques in 2022

We have to follow below best practices before developing every website because it will increase your branding in the market. Website structure is more important in website development because search engines visible your website based on website structure. Think about how is your website developed? followed all best practices? Your website position on the web […]

Read More
  • March 30 2023
  • Sruvi IT

Disadvantages of future class

We already discussed complete details about the future class. If you want to directly look into this post check the below 2 posts to understand. Future class Basics and limitations: Click Here Where / When to use Future Class: Click Here Below are the disadvantages of using Future class : We cannot monitor the Jobs. […]

Read More
  • March 30 2023
  • Sruvi IT

Scenarioes to use future class in salesforce

Below are the common scenarios to use future class in salesforce : A future method runs in the background. it is asynchronous. It is mainly used for long-running operations. Future class Basics and limitations: Click Here Disadvantages of Future class: Click Here A benefit of using future methods is that some governor limits are higher, […]

Read More
  • March 30 2023
  • Sruvi IT

Future Class in Salesforce

Let’s understand, What is a Future class in salesforce is and its importance. The future class is used for long-running operations, It will run in the background. It is an Asynchronous. It will run the Process in a separate thread when the resource is available. We can define the Future class with @future annotation. Syntax […]

Read More
  • January 18 2022
  • Sruvi IT

Convert jpg/png image into PDF in LWC Salesforce

Are you looking for converting jpg or png images into PDF files in salesforce? do you want this functionality using Lighting web components? but we don’t have any existing methods/Libraries in LWC. So Thinking about how to develop it? What is the design architecture? yes, We don’t have any existing standard methods/Libraries in lwc for […]

Read More
  • January 15 2021
  • Sruvi IT

Lightning Out in Salesforce

Introduction : – Lighting out is used to run salesforce lighting components outside of salesforce servers. – Lighting out used to display lighting components in external sites using lighting application. – For your information – Lightning Out is not a IFRAME. Lightning out Implementation Process : 1) First, we have to create lightning Application with […]

Read More
  • January 3 2021
  • Sruvi IT

Salesforce CLI Commands

Below are the SFDX commands helps to execute/Manage orgs using salesforce CLI. Salesforce CLI commands in below format : Ex: Command — >force:user:create force —> Namespace User —> Topic Create—> Subtopic or method 1) sfdx alias – It is used to manage salesforce username aliases. Ex: force:alias:list : It will give list of username aliases […]

Read More
  • January 3 2021
  • Sruvi IT

Platform Events in Salesforce

Platform Event is based on Event-Driven Architecture. This is a type of integration used to communitcate within salesforce or external systems.It is a publish/subscribe model. Publish Events : We can publish events in 3 types: 1) Using Apex trigger 2) Using Process builder/Visual Workflow 3) Salesforce API from External Apps Creating Platform Event in salesforce […]

Read More
  • January 3 2021
  • Sruvi IT

Lightning Web Components Introduction

Lighting Web Components : Introduction : Now every Salesforce user can develop lighting components in 2 ways. 1) Aura Components 2) Lighting Web Components (LWC) What are Lighting Web Components ? IT is a new programming model or new framework used to develop lighting components.Lighting Web Components developed using HTML and Javascript. Setup required in […]

Read More