Blogs
-
How to mass reassign approval requests in Salesforce
Requirement Need to be able to mass transfer pending approval requests. Solution APPROACH 1: Standard Salesforce Approach APPROACH 2: Using Apex Code
-
Transform Your APEX Development With Template Components
Craft Your HTML Component You have the option to utilize platforms like codepen.io for this purpose if you require a custom design, or it’s also an excellent resource for finding boilerplate code that you can customize to fit your needs. Here’s an example I crafted for our card design: You’ll observe the incorporation of APEX…
-
APEX Execution Chain Procedure
Preceding Execution Chains On an APEX application page, I’ve established a straightforward procedure to mimic a possibly longer-running process by utilizing sys.dbms_session.sleep. This procedure doesn’t employ the new Execution Chain; rather, it’s a standard Execute Code process type designed to execute the specified PL/SQL code. The duration of the sleep is determined by the user,…