Blogs
-
Query specific object permission for all Profiles
Method 1 Method 2
-
How to access Compound field values in Apex Salesforce
What is compound field? Compound field – for example Address and Geolocation – binds together multiple information into a single unit. Like Address is one unit of information but actually it is comprises of different primitive information like Street Address, City, State, Country & Postal Code. Can we query/access address field without addressing individual field…
-
How to check Person Account is enabled in Salesforce org or not using Apex
If Person Account is enabled then there must be a field on Account object called: isPersonAccount. We simply need to check if exists as below. Method 1 METHOD 2