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
Requirement Need to be able to mass transfer pending approval requests. Solution APPROACH 1: Standard Salesforce Approach APPROACH 2: Using Apex Code
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 …
Transform Your APEX Development With Template Components Read More »
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, …
I assume you are familiar with Dynamic Actions. If not, please read this. I also assume you have a basic understanding of AJAX Callbacks, even if you’re not well-versed in the details. Both Dynamic Actions and AJAX Callbacks allow developers to call PL/SQL from JavaScript, a highly powerful capability. Technically, an APEX Callback can only …
When To Use AJAX Callbacks Vs. When To Use Dynamic Actions Read More »
In the domain of database management, efficient data retrieval is crucial. Among the many indexing techniques used to improve query performance, bitmap indexing is especially notable, particularly in data warehousing and analytical processing contexts. This article examines the complexities of bitmap indexing, discussing its structure, implementation, benefits, and applications. What is Bitmap Indexing? Bitmap indexing …
Method 1 Method 2 Important Notes
Introduction You might have stumbled up upon a requirement to know the apex class behind the scheduled job (or even apex job) which is found under Setup >> Scheduled Job and this does not show the name of Apex. Solution
In this post, we’ll delve into the fundamentals of Lightning components and explore how Lightning applications, components, controllers, helpers, and Apex controllers are interconnected. The Lightning components framework is a user interface framework used for creating web applications for both mobile and desktop devices. It’s a modern framework that enables the development of single-page applications …
Starting With The Fundamentals Of Lightning Component Development. Read More »
Description This error may take place in Apex while updating the records. Reason When we update the record, the record must be existing in the database – means there should be Record Id and it should be specfied. The above given code will throw error as Id is not mentioned. The above given code will …
Error: MISSING_ARGUMENT, Id not specified in an update call: [] Read More »
Users can manually add, delete, or update the values of a custom picklist field. However, there are instances where updating and adding these values programmatically becomes necessary. This is where the metadata API proves invaluable. For a deeper understanding of the metadata API, you can refer to resources on Metadata, Custom Metadata Types, and Metadata …
What’s The Process For Modifying Custom Picklist Field Values With The Metadata API? Read More »