Blogs

  • 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

    Read more…

  • UNKNOWN_EXCEPTION:portal users cannot own partner accounts

    ERROR DESCRIPTION WORKAROUND Follow us on LinkedIn: Click here

    Read more…

  • How to Query External Object in Salesforce?

    Introduction Query on external object is supported with some limitation. Here is Salesforce help article: https://developer.salesforce.com/docs/atlas.en-us.soql_sosl.meta/soql_sosl/sforce_api_calls_soql_limits.htm Sample Query SELECT Id, Name__c, OrderNumber__c FROM ExternalOrder__x WHERE Name__c LIKE ‘%Software%’ Additional Notes

    Read more…