Tag Archives: Salesforce Technical

Easily Creating Force.com sites

Force.com sites enables developers to build and deploy public web sites /web applications. It supports for custom pages using Visualforce, JavaScript, CSS. Also, it supports both authenticated and public websites. All the objects are accessible in force.com sites so that we can display any information. Steps to create Force.com sites:- -> Create Force.com Domain First,… Read More »

Invoke Future Methods through Apex Trigger for web service callout

While developing applications in force.com, sometimes we need to consume external web service in apex trigger. But, callouts cannot be made from apex triggers as that restricts database transaction until the callout is completed and the time limit for this is up to 120 seconds.You can find other callout limits here. The only way to… Read More »

Create Button for List View

Salesforce provides some built in buttons while showing the list of records. Similarly we can add additional buttons for our custom functionality. We had a requirement wherein we needed to validate the records in the list with external web services. For this we created a custom button in the list view so that when the… Read More »