Difference between Roles and Profiles
Roles Profiles A role is used to maintain the role hierarchy. Analyze the type of Salesforce.com license used by the user. Optional for User creation. Mandatory for User creation. Maintain ....
Roles Profiles A role is used to maintain the role hierarchy. Analyze the type of Salesforce.com license used by the user. Optional for User creation. Mandatory for User creation. Maintain ....
Sample Code: Visualforce page: <apex:page standardController="Account" extensions="sample"> <apex:form > <apex:pageMessages /> <apex:pageBlock > <apex:pageBlockSection > <apex:pageBlockSectionItem > Account Name: </apex:pageBlockSectionItem> <apex:pageBlockSectionItem > <apex:inputField value="{!Account.Name}"/> </apex:pageBlockSectionItem> </apex:pageBlockSection> <apex:pageblockButtons > ....
Sample code:Visualforce page: <apex:page controller="sample" id="mypage"> <apex:form > <apex:selectList id="selected_list" value="{!temp}" required="false" size="1"> <apex:selectOption itemvalue="None" itemLabel="--None--"/> <apex:selectOption itemvalue="a" itemLabel="a"/> <apex:selectOption itemvalue="b" itemLabel="b"/> <apex:actionSupport ....
The data type for currency field in Apex should be "Double" or "Decimal". Currency may contain fractional portions (decimal place), so we have to use Double data type while we ....
Visualforce page: <apex:page standardController="Blog__c" extensions="sample"> <apex:inputField value = "{!Blog__c.Name}"/> <apex:inputField value = "{!Blog__c.URL__c}"/> </apex:page> Apex Controller: Public Blog__c blg; public sample(ApexPages.StandardController controller) ....
To include external Javascript file in Visualforce page, follow the below steps 1. Add the JS file in Setup --> App Setup --> Develop --> Static Resources. 2. Add the ....
1. Go to My Settings. 2. Click "Chatter Desktop" under Desktop Addons. 3. Click "Download Chatter Desktop" link to download. 4. Install the application. 5. Click 'Accept'. 6. Click 'Authorize' ....
Sample Code1: Visualforce page: <apex:page docType="html-5.0" controller="Sample"> <apex:form > <apex:pageBlock > <apex:pageBlockSection> <apex:pageBlockSectionItem> Date: <apex:input type="date" value="{!dat}"/> </apex:pageBlockSectionItem> </apex:pageBlockSection> </apex:pageBlock> </apex:form> </apex:page> Apex Controller: public class Sample { public Date ....
Loads data from a data source into Salesforce, where existing records with a matching custom external ID field are updated; records without matches are inserted as new records. If you ....
Export : It is used to export the Salesforce Data(excluding recycle bin's data) into your local system. Export All : It is used to export the Salesforce Data(including recycle bin's ....