Mytutorialrack

Blogs

Home - Archives for 2017 - Archives for February

Salesforce

Exception Handling in Salesforce

I always had this bad feeling, that I wasn’t following the best practices handling exceptions in Apex. In most of the cases, I wasn’t doing any exception handling. What is an exception? An exception is a condition which changes the normal flow of program execution.That is when something bad happens which the program can’t handle

Read More »

Introduction to Force.com REST API

REST API provides a powerful, convenient and simple Web Services API to interact with Force.com platform. REST API uses same underlying data model and standard objects as those in SOAP API.They also follow the same limits as SOAP API. Advantages of using Force.com REST API Ease of integration. Ease of development. It works great with

Read More »

Actionfunction component with example

ActionFunction component triggers an action whenever a user clicks on a custom link or a button inside a visualforce page. In visualforce, actionFunction is used to call method inside a controllers as a JavaScript function. ActionFunction can be used anywhere inside a visualforce page to call action which include custom javascript code. ActionFunction is a

Read More »