Creating custom Apex SOAP based on Web Services in Salesforce.com and accessing from Java Application

What Is SOAP API?

SOAP API is used to create, retrieve, update or delete records, such as accounts, leads, and custom objects. It supports data in the form of XML. Requires WSDL files for the integration.

[Read more…]

How to Use Debug Logs in Salesforce to Troubleshoot

This article will show you how you can use “Debug Logs” in Salesforce.com to Troubleshoot?

What is Debug Log in Salesforce.com?

A debug log records data base operations, system process, and errors that occur when executing a transaction or while running unit tests. We can monitor specific users in Debug log by adding them to list of Monitored Users. [Read more…]

Displaying Total Number of Contacts for each Account in Salesforce

If you want to display the “Total Number of Contacts” for each “Account” in Salesforce on the Account page you can not use the Roll Up Summary field. The Roll Up Summary fields on contact are not supported on Accounts. We have used a Trigger on the contact object to  find the sum of the number of contacts which are there in an Account. [Read more…]

Apex and Visualforce syntax highlighting in Notepad++

If you prefer to write your Apex and Visualforce code outside Salesforce.com or Force.com IDE – you may find tough time in finding the right code editor. I have not come across any other code editor that supports programming languages Apex and Visualforce.

Considering the fast growth of programmers working on Apex and Visualforce I am sure very soon we will have code editor programs supporting the Apex and Visualforce. [Read more…]