Skip to main content

#NewVideo0 discutindo

#NewVideo #SFDCStop Child to Parent communication using LWC Events

 

Video Link: https://youtu.be/hfhGsgaAIQY

 

In this video you'll learn, how you can communicate from a child component to a parent component through events in LWC

 

#Salesforce #Salesforce Developer #Trailhead Community #Salesforce Developers

Child to Parent communication using LWC Events Video Link: https://youtu.

2 comentários
0/9000

#NewVideo #SFDCStop Connect to Salesforce using Postman - Web Server (Authorization Code) Flow

 

Video Link: https://youtu.be/jQydnOaifng

 

In this video you'll learn that how you can connect to your Salesforce Org using Postman. We're using the web server (authorization code) flow here.

 

#Salesforce #Salesforce Developer #Trailhead Community #Salesforce Developers

 

Connect to Salesforce using Postman - Web Server (Authorization Code) Flow Video Link: https://youtu.

1 comentário
0/9000

Hello Trailblazers, Let me ask you a Batch Apex Interview Question:

 

How many batches will be executed in Salesforce for 20,000 records with a specified batch size of 250 records?

 

Be honest and comment your answer below before reading further :)

 

Let's do some calculation now. For 20,000 records with a batch size of 250 records, the total number of batches will be 20,000/250 = 80 batches. Correct?

 

If you've also done the above calculation, the answer i.e. 80 batches is wrong. I asked the same question on Linkedin and 78% of the people voted for the wrong answer! 

 

Hello Trailblazers, Let me ask you a Batch Apex Interview Question: How many batches will be executed in Salesforce for 20,000 records with a specified batch size of 250 records?

 

The correct answer to this question is 100 batches. Curious to know WHY?

 

#NewVideo #SFDCStop How many batches will be executed? 20000 records & 250 batch size | Salesforce Batch Apex Interview

 

Find the detailed explanation of this answer showcasing the secret mechanism behind batch apex. Video Link: https://youtu.be/LgHxpR_6Vrs

 

#Salesforce #Salesforce Developer #TrailblazerCommunity #Apex

1 comentário
0/9000

#NewVideo #SFDCStop Google Interview Experience and Preparation Tips for Salesforce Application Engineer Role  

 

Video Link: https://youtu.be/BFNEtXddKaA  

 

Hello Trailblazers, I am currently working as a Salesforce Application Engineer at Google. In this podcast I am sharing my Google Interview Experience and preparation tips as well for different rounds that you may have, if you're applying for a Salesforce Application Engineer role at Google. I hope this podcast will be helpful for you in preparing for your interview. For more information about the hiring process, you can have a look here: https://careers.google.com/how-we-hire/  

 

Please note that all the information, experience details and tips that I shared in this podcast are my own and doesn't represent the views of my employer.  

 

Keep Learning!! and All the Best!!

 

Google Interview Experience and Preparation Tips for Salesforce Application Engineer Role Video Link: https://youtu.

#Salesforce #Salesforce Developer #TrailblazerCommunity

1 comentário
0/9000

#NewVideo #SFDCStop How to create a batch class in Salesforce Apex? | Batch Apex | Apex Tutorial Series by SFDC Stop

 

Video Link: https://youtu.be/1JyWuEQrHco

 

Hello Trailblazers, In this video we're going to learn about batch apex. We'll learn what is a batch class? why do we need a batch class? We'll also create a very simple batch class in salesforce and monitor it's execution.

 

#Salesforce #Salesforce Developer #TrailblazerCommunity #Apex

How to create a batch class in Salesforce Apex? | Batch Apex | Apex Tutorial Series by SFDC Stop Video Link: https://youtu.

1 comentário
0/9000

#NewVideo #SFDCStop Enums in Apex | What is Enum and where do we use it? | Salesforce Apex Tutorial Series by SFDC Stop

 

Video Link: https://youtu.be/N3du8bRbYSs

 

In this video we're going to learn about how we can define and use enums in apex. An enum is an abstract data type whose values consist of a finite set of identifiers. Enums are typically used to define a set of possible values that don’t otherwise have a numerical order.

 

#Salesforce #Salesforce Developer #TrailblazerCommunity #Apex

Enums in Apex | What is Enum and where do we use it? | Salesforce Apex Tutorial Series by SFDC Stop Video Link: In this video we're going to learn about how we can define and use enums in apex.

2 comentários
  1. 19 de dez. de 2021, 11:56
    Thanks everyone who welcomed me to the group. Sorry it took so long to reply back. Happy early Merry Christmas to everyone.
0/9000

#NewVideo #SFDCStop Sort a list of sObject records based on a field value | Salesforce Apex Tutorial Series by SFDC Stop

 

Video Link: https://youtu.be/4qyJfelUMjs

 

Hello Trailblazers, In this video we're going to learn how we can sort a list of sObject records based on a field value. In the previous two tutorials, we learned about enums and custom comparator. In this tutorial we're going to put those two concepts in action and solve a real world problem.

 

Custom Comparator Tutorial: https://youtu.be/Sf95Bl_zP2U

Enum Tutorial: https://youtu.be/N3du8bRbYSs

 

#Salesforce #Salesforce Developer #TrailblazerCommunity #Apex

 

Sort a list of sObject records based on a field value | Salesforce Apex Tutorial Series by SFDC Stop Video Link: Hello Trailblazers, In this video we're going to learn how we can sort a list of sObjec

1 comentário
0/9000

#NewVideo #SFDCStop Apex List Comparator | System.ListException: One or more of the items in this list is not Comparable Solution

 

Hello Trailblazers, In this video we're going to learn about how we can define a custom comparator for a list of user defined data type in apex. By implementing the comparable interface we'll also learn about the solution to the error: System.ListException: One or more of the items in this list is not Comparable

 

Video Link: https://youtu.be/Sf95Bl_zP2U

 

#Salesforce #Salesforce Developer #TrailblazerCommunity #Apex

Apex List Comparator | System.

1 comentário
0/9000

#NewVideo #SFDCStop Write efficient code using Data Structures in Salesforce Apex | Reduce Time Complexity using Map

 

Video Link: https://youtu.be/KJOt-QVNOds

 

In this video we're going to solve a real world problem using data structures in apex. First of all, we will solve it using a brute force approach, calculate the time complexity and we'll see the issue in using that approach. Finally, we'll solve it using an optimized approach and calculate the time complexity again to understand the difference.

 

Write efficient code using Data Structures in Salesforce Apex | Reduce Time Complexity using Map Video Link: https://youtu.

 

#Salesforce #Salesforce Developer #TrailblazerCommunity #Apex

1 comentário
0/9000

#NewVideo #SFDCStop Map Data Structure in Apex | Map Basic Methods | Apex Data Structures Tutorial by SFDC Stop

 

Hello Trailblazers, In this video we're going to learn how we can create and use map in apex. A map is a collection of key-value pairs where each unique key maps to a single value.

 

Video: https://youtu.be/MKqylTF4yGo

Map Data Structure in Apex | Map Basic Methods | Apex Data Structures Tutorial by SFDC Stop Hello Trailblazers, In this video we're going to learn how we can create and use map in apex.

#Salesforce #Salesforce Developer #TrailblazerCommunity #Apex

1 comentário
0/9000