Escalation Rule in Salesforce
1. Go to Build --> Customize --> Cases --> Escalation Rules. 2. Click "New" button. 3. Enter the Rule Name. 4. Check the "Set this as the active case escalation ....
1. Go to Build --> Customize --> Cases --> Escalation Rules. 2. Click "New" button. 3. Enter the Rule Name. 4. Check the "Set this as the active case escalation ....
Note: Kindly don't do this until it is really required. Doing this will send an email to all the users in your organization with a link to reset their password. ....
To check whether a String is null or empty or blank using Apex in Salesforce, we can use the following methods isBlank Returns true if the specified String is ....
Sample Code: Visualforce page: <apex:page showHeader="false" controller="Sample" > <apex:panelGrid width="100%" style="text-align:right;"> <apex:form > <apex:commandLink value="Print" onclick="window.print();"/> </apex:form> </apex:panelGrid> <apex:pageBlock title="Member Information"> <apex:pageBlockTable value="{!MemberList}" var="m"> <apex:column value="{!m.Name}"/> <apex:column value="{!m.City__c}"/> <apex:column value="{!m.Country__c}"/> ....
In order to rewrite URL of Force.com Site, Communities, etc, make use of "Site.UrlRewriter Interface". Syntax: global class yourClass implements Site.UrlRewriter { global PageReference mapRequestUrl(PageReference yourFriendlyUrl) { } ....
For profileId, we have to pass the Salesforce id of any profile in ChatterAnswersRegistration visualforce page. Sample Code: <chatteranswers:registration profileId="00e90000000X5DdAAK"/> Following SOQL can be used to get the profile id. ....
chatteranswers:allfeeds tag is used to add Chatter Answers in Visualforce page. Sample code: <apex:page showHeader="false" > <chatteranswers:allfeeds communityId="09a90000000d1Af"/></apex:page> here communityId is the Zone community id. Output:
Cannot change Referece To error in Salesforce occurs when lookup or master detail relationship has been modified. If Account__c was initially created as lookup to Account object and later if ....
In order to assign adjust width for columns in apex:panelGrid, we have to create different CSS styles for columns and we have to assign it to "columnClasses" attribute. Sample Code: ....