Due to the nature of multitenancy and the fact we are sharing resources, governor limits are in place to ensure that all resources are allocated as expected to each. There are different types of governor limits Per-Transaction Apex Limits: These limits count for each Apex transaction. For Batch Apex, these limits are reset for each […]
Month: November 2022
Salesforce – what is the difference between Trigger and Workflow?
Trigger – Custom Code Workflow – Configuration – no code approach
Salesfore/SFDC/SF – How to enable flow access for Community/Experience Cloud Guest Profile
Guest User profile, go to Settings | General. Under Guest User Profile, click the profile name. Click Enabled Flow Access | Edit. If you cannot find the guest profile, here are the steps on how to navigate to guest profile. Navigate to setup => All Sites => select desired site => Experience Builder and go to Settings.On the […]
Salesforce Apex System.TypeException – Cannot have more than 10 chunks in single operation. Please rearrange the data to reduce chunking.
Solution: Please rearrange the data to reduce chunking. When I am trying to insert parent and child in same transaction while preparing the list of records to be inserted in a loop, I am getting this error as System.TypeException “Cannot have more than 10 chunks in a single operation. Please rearrange the data to reduce […]
Salesforce Batch apex Start did not return a valid iterable object
I have below batch apex code when I try to pass certain parameters through parameterized Constructor, I am getting apex batch error as “Start did not return a valid iterable object” Here is the apex batch code. Got it fixed by below change in the Apex Batch Class Constructor
substringAfter() in apex Salesforce
String beforedz = ‘doozy-spot’; String afterdz= StringName.substringAfter(‘-‘); System.assertEquals( ‘spot’, afterdz);