Blogs

  • How to get Apex Job associated with Scheduled Job

    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

    Read more…

  • Starting With The Fundamentals Of Lightning Component Development.

    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…

    Read more…

  • Error: MISSING_ARGUMENT, Id not specified in an update call: []

    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…

    Read more…