How to display multiple Dashboards in home page in Salesforce
To display multiple Dashboards in home page, just add the charts to the space adjacent to the chart. Click 'Save' and check your home page now.
To display multiple Dashboards in home page, just add the charts to the space adjacent to the chart. Click 'Save' and check your home page now.
1. Create a button with label 'Add Employee'. 2. Select 'Detail page button' as display type. 3. Select 'Execute JavaScript' as a behaviour. 4. Add the below code {!REQUIRESCRIPT("/soap/ajax/20.0/connection.js")}var newRecords ....
To track field history in Salesforce, follow the below steps 1. Select the object. 2. In the Custom fields section, click 'Set History Tracking' button. 3. Select the fields and ....
To change the dashboard to be displayed in Home page in Salesforce, follow the below steps 1. Click 'Customize page' link. 2. Select the dashboard to be displayed.
Salesforce Lightning: Add Dashboard component to the Home Page.Salesforce Classic: Go to Setup-> App setup ->customize-> Home -> Home page layout -> DE Default, Click 'Edit' and check the 'Dashboard ....
Step 1: Generate Partner WSDL. Save the generated Partner WSDL. Step 2: Generate Apex code using the generated Partner WSDL. Copy the generated code and create a new ....
Date: Sunday, December 9, 2012 Time: 2:00 PM to 5:00 PM Link: http://www.meetup.com/Bangalore-Force-com-Cloud-Apps-Developer-Meetup/events/83799842/ Forward it to your friends.
How to get a count of million records from object? Maximum how many extensions can use in VF page? Tasks are storing in which object? Explain about batch apex? Best ....
Sample code: Visualforce page: <apex:page standardController="Account" extensions="sample"> <!-- Dynamic creation of Section Header --> <apex:dynamicComponent componentValue="{!secHead}"/> <apex:form > <!-- Dynamic creation of pageBlock --> <apex:dynamicComponent componentValue="{!formSample}"/> </apex:form> ....
Sample code: Integer result; //Finding minimum value result = math.min(a,b); //Finding maximum value result = math.max(a,b); //Modulo division result = math.mod(a,b); For more info, http://www.salesforce.com/us/developer/docs/apexcode/Content/apex_methods_system_math.htm