Salesforce Development: How to Setup Illuminated Cloud 2 with the IntelliJ IDE
| |

Salesforce Development: How to Setup Illuminated Cloud 2 with the IntelliJ IDE

What is an IDE? IDE stands for Integrated Development Environment. Its primary purpose is to make your life as a developer considerably easier by doing things like: 1) Syntax Highlighting2) Auto-completing functions names, field names, object names, etc.3) Integrating git easily4) Improving debugging functionality5) Putting your command line in the same place you develop.6) Tons…

Salesforce Development: Creating a Self-Scheduling Apex Class
|

Salesforce Development: Creating a Self-Scheduling Apex Class

Why This Is Useful Have you ever wondered, “How do I effectively schedule an apex class to run every single minute of the day?” or maybe every hour or second (please don’t schedule anything every second, lol). Well there’s a great way to do it, by having your scheduled apex class reschedule itself! This method…