Blogs

  • Query list of apps installed in Salesforce

    Requirement We can get the list of items in the Force.com app menu or App Launcher from the ‘AppMenuItem’ sobject. So, purpose is to get the list of apps installed from appexchange or created in a salesforce organization. Solution There is a sobject ‘PackageLicense’ represents licenses for installed managed packages.

    Read more…

  • Bulk Lead Conversion using Apex

    Requirement The goal is being able to convert multiple leads into Accounts, Contacts, and Opportunities programmatically. This process utilizes the Database.LeadConvert class, which supports bulk processing to handle multiple leads efficiently. Technical Approach Using Apex for Bulk Lead Conversion Salesforce provides Database.LeadConvert in Apex which gets Lead Id as parameter and convert into Account, Contact…

    Read more…

  • Approval Process is not Triggering Flow

    Problem Statement A field is updated after Approval Process’s final step, there is flow with simple entry criteria which should qualify the flow after field update. Everything is correct but still flow is not being trigged and even debug log says same thing. Reason If Flow API version is less than 54.0, the flow will…

    Read more…