Inbound Email – Creating record using email in Salesforce
You can use Apex to receive and process email and attachments. The email is received by the Apex email service and processed by Apex classes that utilize the InboundEmail object. ....
You can use Apex to receive and process email and attachments. The email is received by the Apex email service and processed by Apex classes that utilize the InboundEmail object. ....
1. How to reset password for particular users in SaleSforce? 2. How to grant your administrator or support personnel to login as you? 3. How to find out what Salesforce ....
1. How to add Row limit and Dashboard settings for Tabular report? 2. How to find total no of records using SOQL? 3. How to use a list variable in ....
A component that displays the status of an AJAX update request. An AJAX request can either be in progress or complete. Sample Code: <apex:page ><apex:form > <apex:pageBlock id="ab" > <apex:pageBlockSection ....
Using a simple web form, we can allow our customers to submit cases directly to our customer support group on-line. These cases will be automatically created in Salesforce.com. 1. Go ....
Using pre-existing pages on our company's website, we can capture contact and profile information from users and automatically generate new leads in Salesforce.com, enabling us to respond in real-time to ....
In order to avoid "Parser was expecting element" error in data loader, kindly check the following settings in Apex Data Loader 1. Check whether you have given the proxy correctly. ....
Example: SELECT Name,MAX(NumberofLocations__c) FROM Account GROUP BY name ORDER BY Name LIMIT 2 Field that are aggregated cannot be used in GROUP BY or ORDER BY. In the above example, ....
Select count(name) From Account - Returns the total number of Account records.
1. If the OWD for account is "Private", is it possible for a user in higher hierarchy to see the records owned by the user below his/her hierarchy? 2. If ....