Blogs

  • Get the SObject Name from Record Id in Apex

    To retrieve the name of the object from a record’s Id in Apex, you can use the Id.getSObjectType() method. This method helps identify the type of Salesforce object associated with a given record Id. Steps to Get the Object Name from Id 1. Use getSObjectType() The Id.getSObjectType() method returns the Schema.SObjectType for the given Id.…

    Read more…

  • How to bypass two factor authentication for Salesforce login?

    Problem Workaround

    Read more…

  • Flow not triggering on Data Import

    Question I have a flow that is set to perform some set of action when Account is created. It is working expected when I am inserting manually however when doing the same using Data Import wizard, it is not working. What could be the reason? Solution While importing the data using Import Wizard, we need…

    Read more…