Individual Retirement Accounts (IRA) provide tax advantages for retirement savings. You can contribute each year up to the maximum amount allowed by the Internal Revenue Service. There are several types of IRAs available: Rollovers A rollover is a tax-free distribution of cash or other assets from one retirement plan to another retirement plan. The distribution to […]
Salesforce Governor Limits – Apex, Platform, Event and callout
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 […]
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);
Chrome Browser Extensions for Web Page Auto Refresh
Auto Refresh Plus Refresh page automatically with powerful page monitor features Auto Refresh Plus comes in handy to any user who needs to perform automatic web page refresh at certain times efficiently. It also provides content detection support, which is useful when monitoring content included in a dynamic web page. Key Features (1) Default Time […]
Salesforce Quick bytes / Cheat Sheet
When we had issue with one of the users complaining about his access, we can find easily whether user has access or not with below SOQL SELECT RecordId,HasReadAccess,HasEditAccess FROM UserRecordAccess WHERE UserId=’00541000005yQ1V’ AND RecordId IN (‘5001L00001J9OC4QAN’) Salesforce NOOVERRIDE=1Use /e?nooverride=1 for classicUse /edit?nooverride=1 for lightning edit Use /view?nooverride=1 for lightning record view
Salesforce Lightning Record Edit Form – Aura and LWC
use record edit form component to create a form that’s used to add a Salesforce record or update fields in an existing record on an object. The component displays fields with their labels and the current values and enables you to edit their values. lightning record edit form supports the following features. Editing a record’s specified […]