Category Archives: Salesforce

This is all about technical aspects of Salesforce.com.

How to retrieve all the fields of entity details in Salesforce using SOQL

Step 1: First create the salesforce API. Please refer to my my previous post. Step 2: Pass the account ids as array.. as  GetAccountDetails(new string {“6ghgg687ihh”, “9hhj789899n”}) public List<Account> GetAccountDetails(string[] accountIds) { List<Account> objAccountList = new List<Account>(); Account objAccount = … Continue reading

Posted in Salesforce | Tagged , , | Leave a comment

How to integrate Salesforce with third party ERP, finance systems or any external application.

Step 1: Create an account on Developer Edition of Salesforce.Developer Edition provides access to all of the features available with Enterprise Edition. Step 2: Regenerate the WSDL file (Generate or Obtain the Web Service WSDL) To generate the WSDL file … Continue reading

Posted in Salesforce | Tagged , , | Leave a comment