Tag Archives: Salesforce
How to create a sample account in Salesforce using Salesforce API
Step 1: First create the salesforce API. Please refer to my my previous post. Step 2: Try this sample code: //Verify that we are already authenticated, if not //call the login function to do so try { Account account; sObject[] … Continue reading
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
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