Author: doozyspot
Retirement Planning
What are my options: Roth IRA Index Funds Source: Image source twitter
Insurances needs for day to day life
– Life – car – Health – Umbrella – Long term disability – ID theft (“insurance”) – Audit Insurance – Property Insurance
Query to find Permission sets assigned to Users
DescriptionBelow is the SOQL query we can create using Workbench to capture the Permission Sets associated with a given User or Profile via the Permission Set Assignment object ResolutionQuery: SELECT Id, PermissionSetId, PermissionSet.Name, PermissionSet.ProfileId, PermissionSet.Profile.Name, AssigneeId, Assignee.Name FROM PermissionSetAssignment WHERE Assignee.Name = ‘JOHN SMITH’ Or retrieve all users associated with a specific PermissionSet like: SELECT Id, PermissionSetId, PermissionSet.Name, PermissionSet.ProfileId, PermissionSet.Profile.Name, AssigneeId, Assignee.Name FROM PermissionSetAssignment WHERE PermissionSet.Name = ‘Custom […]
Salesforce Retire | End of life (EOL) of Permissions on Profiles
Salesforce announcing the end of life (EOL) of permissions on profiles/ Retire Permissions on Profile that will be the Spring ’26 releaseProfiles will still exist; however, permissions on profiles will EOL and permissions will be available only on permission sets. Before we dive into what’s new with Spring ‘23, here’s a quick reminder of what […]
Individual Retirement Accounts (IRAs)
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 […]