No matching Contacts or Leads in Salesforce

Hi All, many of you are using Salesforce for Outlook functionality provided by Salesforce to integrate your outlook with Salesforce. But many users are facing a problem such as “No matching Contacts or Leads in Salesforce” in the Side Panel of Salesforce

Read More

Get related list without Action Column in visualforce page

Hi, When you want to display related list on visualforce page, you can use <apex:relatedList> tag, and it is very easy for ex: <apex:page standardController="MyMasterObject__c"> <apex:relatedList list="MyChildObjects__r" /> </apex:page> but this will display all the columns from related list including “Action” column

Read More

Custom Send Email button on custom Objects

Hi, If you want to add a custom button to send email on custom object then follow below mentioned steps: 1. Create Custom button on custom object; 2. in the content source, select URL; 3. in the value section, add following url

Read More

java.lang.OutOfMemoryError: Java heap space

add line to catalina.sh or catalina.bat: export CATALINA_OPTS=”-Xms512M -Xmx1024M” a) The -Xmx argument defines the max memory size that the heap can reach for the JVM. A low value can cause OutOfMemoryExceptions or a very poor performance if your program’s heap memory

Read More

java.security.AccessControlException: access denied (java.net.SocketPermission host connect,resolve)

The Simple solution is :search catalina.policy file and edit green line as // Precompiled JSPs need access to this system property. permission java.util.PropertyPermission”org.apache.jasper.runtime.BodyContentImpl.LIMIT_BUFFER”,”read”; permission java.net.SocketPermission “*”, “connect”; permission java.net.SocketPermission “*”, “connect”; permission java.net.SocketPermission “*”, “connect”; permission java.lang.RuntimePermission “accessDeclaredMembers”; permission java.lang.RuntimePermission “accessClassInPackage.org.apache.jasper.el”; permission

Read More