
Types of Investments

One of its kind in knowledge base

Personal Finance Order of Operations: 1) Create a budget to figure out expenses 2) Build a 1-month emergency fund 3) Maximize employer 401k matches to let free money compound 4) Pay off high-interest consumer debt 5) Save 3 to 6 months of expenses in an emergency fund The Financial Order of Operations: 6) Maximize Roth […]
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 […]
Trigger – Custom Code Workflow – Configuration – no code approach