• Simple guide to setup SSL in Tomcat

    I have enabled SSL in tomcat many times however initially I struggled to get it in running condition. So I thought to share a simple approach I am following now days. Step 1: Run tool “Keytool“ provided by the JRE to create a “keystore file”. The command to run tool is: keytool -genkey -alias tomcat

    Read more…

  • My Favorite Top 10 Features of Winter 13 release – Salesforce

    Dear Friends, I am very excited to write this article about the cool Winter 13 features which i have added in My List. There are lots of lots of new features added in this release and i have made the list of my top 10 favorite features. Yesterday Salesforce published its Winter 13 release notes

    Read more…

  • Salesforce Interview Questions – Part 11

    101. How to force lead assignment rule via Apex while updating or adding the Lead? Ans : To enforce Assignment Rules in Apex you will need to perform following steps: Instantiate the “Database.DMLOptions” class. Set the “useDefaultRule” property of “assignmentRuleHeader” to True. Finally call a native method on your Lead called “setOptions”, with the Database.DMLOptions

    Read more…

  • How to Sort Wrapper class Collection in Apex

    There is inbuilt functionality in Apex to sort the primitive datatypes supported by force.com. I am sure maximum of developers must have come across the situations where they need to sort custom datatype built by them i.e. custom class or I would say wrapper class in terms of force.com. But think, How force.com will come

    Read more…

  • Salesforce Interview Questions – Part 10

    This Part of Salesforce interview question series depict on browser compatibility issue (Internet Explorer 9) and Visualforce normally for AJAX, Group By and Having Clause. 91. How to add the Document Header in Visualforce page? Ans : Directly there is no way to add the document type in visualforce. However in most of the cases

    Read more…

  • Apex based record sharing in Salesforce

    Working with Apex based sharing in Salesforce

    Read more…

  • Create Web to Lead form in Salesforce

    I decided to write this article because of lots of comments received from the newbies in Salesforce community. We know that the Lead is the pillar object in CRM from where everything is started. And every CRM related software tries their best to offer best and reusable feature to work with lead and same thing

    Read more…

  • Salesforce Interview Questions – Part 9

    81. Which type of report can be used for dashboard components? Ans : Summary and matric report. 82. How many types of dashboard components are available? Ans : Chart, Table, Metric and Gauge. 83. Explain dynamic Dashboard. Ans : Dashboard which is running under current logged in user permission are known as “dynamic Dasboard”. At

    Read more…

  • Salesforce Interview Questions – Part 8

    Part 8 interview question is going to be around reports and profiles related question as i have seen this type of questions in lot of interviews. 71. If user doesn’t have any right on particular record and have only read level access at object level. Can he change the record owner? Ans : Yes. In

    Read more…

  • APEX based DDP generation using LOOPlus

    Example of generating dynamic document packages (DDP) using Apex and LOOPlus in Salesforce

    Read more…