Blogs

  • Salesforce Apex Class: An Overview of Apex

    Similar to Java Programming, Apex Programming utilizes classes to execute specific tasks through programs. A class serves as a blueprint or structure from which objects are instantiated. Objects are essentially representations of the class. For instance, consider a class named “Student” that encompasses all the pertinent student details. Instances of the “Student” class could include…

    Read more…

  • Incorporate A Lightning Component within A Visualforce Page

    A compelling rationale for embedding a Lightning Component within a Visualforce page lies in leveraging code reusability, especially for complex and frequently used functionalities. In my case, I’ve implemented a Lookup Component that serves across multiple Visualforce pages in the system. Presently, there isn’t a widely accepted method for seamless communication between a Lightning component…

    Read more…

  • A Fast Easy Neat ID Generator

    Certainly, Salesforce offers its built-in auto-number system, and you could simply utilize a Salesforce ID—ensuring its uniqueness. Yet, there might be instances where you require a number with a distinct format, a specific arrangement like XX-XXX-XXXX, steering clear of potentially awkward letter combinations that could cause unintended implications. Nobody wants an ID resembling something like…

    Read more…