Blogs
-
Some Useful Apex Pointers I’ve Learned Along The Journey
Salesforce’s server-side language is known as Apex. It is a strongly typed, object-oriented language that bears resemblance to Java according to many developers. Apex is tightly integrated with the Salesforce database, other Salesforce objects, and its frontend counterpart, Lightning.As an additional point, having worked with loosely typed languages throughout my career, learning Apex presented a…
-
Develop A Class For Encryption Utilities.
Story from the User’s Perspective We aim to encrypt our data using an AES encryption key without having to spend money on the Salesforce Data Masking package. As an illustration, we are presenting at Forcelandia on March 23th and 24th, 2024, and intend to obscure certain phone numbers in our API project development organization. Resolution…
-
Regular Expression For Escaping SOQL/SOSL Inputs
User Narrative We aim to develop a table that incorporates search, sorting, and pagination features. In the upcoming posts, we’ll explore two approaches to achieve this, focusing on either server-side or client-side functionality. We’ll begin by addressing the fundamental aspect of searching, specifically writing our queries. If you prefer to jump directly to the regular…