New course Apex Test Fest is released!

Grab Now

Timeline of the episodes!

You can find when and what topics are published here to get a better hang of the roadmap.

Timeline

  1. What is the latest suggested approach in applying FLS to a SOQL query?

    Interview Questions

  2. How to apply field level security [FLS] in a SOQL query?

    Interview Questions

  3. Difference between SOQL and SOSL?

    Interview Questions

  4. Maximum no of records that can be queried in a single transaction?

    Interview Questions

  5. What is SOQL 101 exception and how do you handle it?

    Interview Questions

  6. Difference between SOQL and SOSL?

    Interview Questions

  7. Let’s have a look at all ways to mass run test classes

    Apex Test Fest

  8. Doing the code coverage for Apex Classes generated from WSDL 3/3

    Apex Test Fest

  9. Doing the code coverage for Apex Classes generated from WSDL 2/3

    Apex Test Fest

  10. Doing the code coverage for Apex Classes generated from WSDL 1/3

    Apex Test Fest

  11. Why is RestResponse instantiated in test method?

    Apex Test Fest

  12. Doing the negation testing for the previous Alex Class 4/4

    Apex Test Fest

  13. Doing code coverage for custom REST API created using Apex 3/4

    Apex Test Fest

  14. Doing code coverage for custom REST API created using Apex 2/4

    Apex Test Fest

  15. Doing code coverage for custom REST API created using Apex 1/4

    Apex Test Fest

  16. Test class coverage for callouts made in Apex

    Apex Test Fest

  17. A quick hack - How can Assert statements be helpful in debugging

    Apex Test Fest

  18. How can we use isInsatnceOfType() in Assert class?

    Apex Test Fest

  19. Assert class in Apex

    Apex Test Fest

  20. Getting your hands dirty with System.Assert statements

    Apex Test Fest

  21. System.runAs() in apex 2/2

    Apex Test Fest

  22. System.runAs() in apex 1/2

    Apex Test Fest

  23. Another advantage of startTest() and stopTest()

    Apex Test Fest

  24. Code coverage for chained Batch Apex Classes

    Apex Test Fest

  25. Doing the code coverage for Queueable method

    Apex Test Fest

  26. Doing the code coverage for Future method

    Apex Test Fest

  27. Doing the code coverage for Schedule Apex Class

    Apex Test Fest

  28. Doing the code coverage for Batch Apex Class

    Apex Test Fest

  29. Code coverage for a method throwing mixed DML exception 2/2

    Apex Test Fest

  30. Code coverage for a method throwing mixed DML exception 1/2

    Apex Test Fest

  31. Code coverage for a method having Callout and DML in the same transaction

    Apex Test Fest

  32. What is Test.isRunningTest() and how to use it for our advantage?

    Apex Test Fest

  33. What is (SeeAllData = true) and when to use it?

    Apex Test Fest

  34. How to create and work with Test Factory Design Pattern

    Apex Test Fest

  35. @TestSetup in Test Classes

    Apex Test Fest

  36. Writing the Test suite class for Triggers

    Apex Test Fest

  37. How to do the code coverage for a private Apex method?

    Apex Test Fest

  38. Testing the business logic using negation testing

    Apex Test Fest

  39. Doing the code coverage for an Apex Trigger

    Apex Test Fest

  40. Test coverage for an Apex Method with params

    Apex Test Fest

  41. Start the code coverage

    Apex Test Fest

  42. Creating a basic Apex Test Class

    Apex Test Fest

  43. Why can we not see data in sandbox and production?

    Apex Test Fest

  44. What should be your thought process before you write the Test Classes?

    Apex Test Fest

  45. Introduction

    Apex Test Fest

  46. Why do we have to write Test Classes?

    Apex Test Fest

  47. Data model for the hands-on project

    Learn lightning flows with me

  48. Introduction, when and where it is used, scenario and hands on

    Learn lightning flows with me

  49. From home page, app page and record page

    Learn lightning flows with me

  50. Why, When & How to use Flow Trigger Explorer

    Learn lightning flows with me

  51. Subflows in Flows

    Learn lightning flows with me

  52. How to debug as a different user in Flows

    Learn lightning flows with me

  53. Testing update scenario - [Part 6/6]

    Learn lightning flows with me

  54. Taking the flow or a ride and testing insert scenario - [Part 5/6]

    Learn lightning flows with me

  55. Missing piece of the puzzle - [Part 4/6]

    Learn lightning flows with me

  56. What happens when an existing record is updated - [Part 3/6]

    Learn lightning flows with me

  57. Trigger notifications when a new record is inserted - Part [2/6]

    Learn lightning flows with me

  58. What's the requirement?

    Learn lightning flows with me

  59. When and how to add fault path to make the flow foolproof & wrap up - Part [9/9]

    Learn lightning flows with me

  60. Send funds to a Pal - [Part 8/9]

    Learn lightning flows with me

  61. Insert data to move on to the next step - Part [7/9]

    Learn lightning flows with me

  62. Follow DRY design pattern and refactor the flow - Part [6/9]

    Learn lightning flows with me

  63. What if the user wants to make the payment using Credit Card? - [Part 5/9]

    Learn lightning flows with me

  64. Update Wallet balance after successful transaction & error handling - Part [4/9]

    Learn lightning flows with me

  65. Select a Bill and Payment mode to pay the bill - Part [3/9]

    Learn lightning flows with me

  66. Do you want to pay bills or send money to pal? - Part [2/9]

    Learn lightning flows with me

  67. Understanding the Data Model - Part [1/9]

    Learn lightning flows with me

  68. Making progress, Testing & Wrapping it up

    Learn lightning flows with me

  69. Ask is to move all the child contacts from one Account to another Account

    Learn lightning flows with me

  70. From LWC

    Learn lightning flows with me

  71. From Global Actions

    Learn lightning flows with me

  72. From a Visualforce Page

    Learn lightning flows with me

  73. From Utility Bar Item

    Learn lightning flows with me

  74. From Quick Actions

    Learn lightning flows with me

  75. From the App Page

    Learn lightning flows with me

  76. From the List Views

    Learn lightning flows with me

  77. Fine tuning the Flow to provide better user experience

    Learn lightning flows with me

  78. Send data back to the flow form LWC component

    Learn lightning flows with me

  79. Send data to LWC component from a Flow

    Learn lightning flows with me

  80. Using wrapper classes to send and receive params of complex types from a Flow to an Apex method

    Learn lightning flows with me

  81. Send data back to the Lightning Flow from an Apex method

    Learn lightning flows with me

  82. Process list of account records in the apex method sent by a Flow

    Learn lightning flows with me

  83. Sending parameters of type primitive datatypes to apex methods

    Learn lightning flows with me

  84. Invoke an Apex method from the Flow

    Learn lightning flows with me

  85. Invoke the Auto launched flow from third party system using a REST API Callout

    Learn lightning flows with me

  86. Invoking the Auto-launched flow from another flow

    Learn lightning flows with me

  87. All you need to know about Auto-launched flows

    Learn lightning flows with me

  88. Get a grasp of Scheduled triggered flow by working on...

    Learn lightning flows with me

  89. The last pointer before end-to-end testing

    Learn lightning flows with me

  90. Let's battle test the flow we created

    Learn lightning flows with me

  91. Handling null pointers in the flow we created so far

    Learn lightning flows with me

  92. FYI - Why I took this route?

    Learn lightning flows with me

  93. Handling the update scenario (both when the amount is...

    Learn lightning flows with me

  94. Handling the delete child records scenario in Roll-Up...

    Learn lightning flows with me

  95. Handle bottlenecks when a record is inserted

    Learn lightning flows with me

  96. Advanced Scenario: Create Roll-Up summary using record...

    Learn lightning flows with me

  97. Enhance the created flow by using best practices [2/2]

    Learn lightning flows with me

  98. Enhance the created flow using best practices [1/2]

    Learn lightning flows with me

  99. Scenario: Update child records when parent record is ...

    Learn lightning flows with me

  100. Let's look at Before vs After event flows with examples

    Learn lightning flows with me

Keep me in the loop!

Email me when a new episode is published( Promise, I will not spam you)

You're signing up to receive emails from Salesforce Casts