How to Enable Multiple Currencies in Salesforce?
1. Go to Company Information. 2. Click Edit and enable Activate Multiple Currencies. 3. Click Currency Setup Button. 4. Click New button. 5. Create new currency. 6. While creating user under ....
1. Go to Company Information. 2. Click Edit and enable Activate Multiple Currencies. 3. Click Currency Setup Button. 4. Click New button. 5. Create new currency. 6. While creating user under ....
Opportunities Forecasts Quotes Reports Cheers!!!
Apex Code: global class batchAccountUpdate implements Database.Batchable<sObject> { global Database.QueryLocator start( Database.BatchableContext BC ) { String query = 'SELECT Id,Name FROM Account'; ....
When you want to access the external sites in your Salesforce application using callouts, webservices, etc... You need to add that in the Remote Site Settings. This is just a ....
1. Go to Setup --> Administration Setup --> Monitoring --> Email Log Files. 2. Click "Request an email log" button. 3. Fill in the details and click "Submit Request" button. ....
Click the below link to get Salesforce documents http://wiki.developerforce.com/page/Documentation
Below is the link for Warehouse Application http://www.salesforce.com/us/developer/docs/workbook/index_Left.htm#CSHID=create_app_intro.htm|StartTopic=Content%2Fcreate_app_intro.htm|SkinName=webhelp This workbook helps us to understand and explore Salesforce.com. Cheers!!!
Sample SOQL: SELECT Count(Name), OwnerId From Opportunity Where OwnerId in ('005A0000002U5TcIAK','005A0000002U5U1IAK', '005A0000002U5ULIA0') and StageName in ('Active - Low Probability','Active - Med. Probability','Active - High Probability','Active - Commit') GROUP BY OwnerId
Sample Code: Visualforce page: <apex:page controller="Sample" sidebar="false"> <apex:pagemessages /> <apex:dynamicComponent componentValue="{!lbl}"/></apex:page> Apex Code: public class Sample { public Component.Apex.OutputLabel getlbl() { Component.Apex.OutputLabel lb = new Component.Apex.OutputLabel(); lb.Value = 'Sample'; return ....
Exception: Callout not allowed from this future method. Resolution: Please enable callout by annotating the future method with callout=true. Example: @future(callout=true) Sample Code: @future(callout=true) public static void post(String u, String ....