How to edit Report folder?
1. Go to Report tab. 2. Search the report folder. 3. Click down arrow next to folder name to edit the report folder.
1. Go to Report tab. 2. Search the report folder. 3. Click down arrow next to folder name to edit the report folder.
1. Give the report folder access to all users. 2. Add your user as recipient in the report now. 3. Finally don't forget to re-restrict access to desired roles and/or ....
1. What are sharing rules, when do you used sharing rules? 2. Explain lead to opportunity conversion? 3. What are record types? Why are the record types used? 4. When ....
Components which cannot be deployed using force.com IDE or change sets are Profiles Roles Users
1. Go to Setup --> Administration Setup --> Data Mangement --> Data Export. 2. Click 'Schedule Export' button. 3. Fill the details as per your wish. 4. Click 'Save' Button. ....
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) ....