Updating data into Salesforce using JAVA (Web Service API)
To update data in Salesforce using external application, update () method is used. update () Update one or more existing records in your organization’s data. Use this call to update ....
To update data in Salesforce using external application, update () method is used. update () Update one or more existing records in your organization’s data. Use this call to update ....
To delete data from Salesforce using external application, delete () method is used. delete() Delete one or more records from your organization’s data. Use delete () to delete one or ....
To insert data from external application to Salesforce, create() method is used. create () create () add one or more new records to your organization’s data. Use create () to ....
Step1: Generate or Obtain the Web ServiceWSDL To generate the WSDL file for your organization: a. Log in to your Enterprise,Unlimited, or Developer Edition Salesforce account. You must log in ....
For free signup of Database.com, visit https://database.secure.force.com/en/signup/
In order to increment apex:variable inside the apex:pageBlockTable, we have to include it inside apex:column in apex:pageBlockTable. <apex:page controller="sample"> <apex:pageBlock > <apex:variable var="i" value="{!0}"/> <apex:pageBlockTable value="{!acnt}" var="acc"> ....
Visualforce code: <apex:page controller="sample"> <apex:pageBlock > <apex:variable var="i" value="{!0}"/> <apex:pageBlockTable value="{!acnt}" var="acc"> <apex:column > <apex:variable var="i" value="{!i+1}"/> </apex:column> <apex:column value="{!acc.Name}" ....
We should add <chatter:feed/> to enable Chatter Follow/Un-Follow button before <apex:enhancedList/> Sample Code: <apex:page standardController="opportunity"> <chatter:feed entityId="{!$User.Id}" /> <apex:enhancedList type="opportunity" height="70"/></apex:page>
After creating or editing a page, when we click Save Button or 'Save All' Button, it will be automatically saved in the server. Verify it in your Salesforce Organization.
To create a Sandbox in Salesforce, Login into the Salesforce Production org and follow the steps. 1. Go to Setup. 2. Under Data Management --> Sandbox --> Click the 'New ....