Tuesday, 8 March 2016



What Is the Difference Between Sales Cloud and Services Cloud ?


1. "Sales Cloud" refers to the "sales" module in salesforce.com. It includes Leads, Accounts, Contacts, Contracts, Opportunities, Products, Price books, Quotes, and Campaigns . It includes features such as Web-to-lead to support online lead capture, with auto-response rules. It is designed to be a start-to-end setup for the entire sales process; you use this to help generate revenue.

WhileService Cloud" refers to the "service" (as in "customer service") module in salesforce.com. It includes Accounts, Contacts, Cases, and Solutions. It also encompasses features such as the Public Knowledge Base, Web-to-case, Call Center, and the Self-Service Portal, as well as customer service automation (e.g. escalation rules, assignment rules). It is designed to allow you to support past, current, and future clients' requests for assistance with a product, service, and billing. You use this to help make people happy.

2. Sales Cloud Implements Sales and Marketing while Service cloud implements Salesforce Knowledge.

3. Sales Cloud ,A great solution for small and value oriented mid-sized sales groups that want to rapidly and cost effectively deploy Salesforce While Service Cloud  provides Customer Support to the Clients and giving you the tools to provide a better customer experience for your clients. 

4. Sales Cloud gives you the ability to open Cases (issues) and relate them to Accounts, Contacts; etc. While The Service Cloud is a superset of Sales Cloud, meaning you get everything that is in Sales Cloud PLUS some other features.

5.When we develop product in force.com for sales then it comes in Sales Cloud Ex: - Account, Contacts, and Lead.  While when we want to provide some facility and also provides support to the clients then it comes in Service Cloud. Ex: - create cases is the example of Service Cloud in which client write his problem into cases instead of call.


Comparison table for Sales Cloud and Service Cloud functionality

Tuesday, 1 March 2016



How to delete existing Apex Scheduled jobs from Apex ?


         Step 1 : Create a Apex Class and copy past the below code in it

         public class CronTrigger
           {
                public List<CronTrigger> listCronTrigger;
               public void testing()
              {
                   listCronTrigger = [select Id from CronTrigger  where ( CronJobDetail.Name like 'yourjobname')  limit 10];
           
                    System.debug('No of jobs: '+listCronTrigger.size());
    
                    If (listCronTrigger.size() > 0)
                   {
                             for (Integer i = 0; i < listCronTrigger.size(); i++)
                            { 
                                   System.abortJob(listCronTrigger[i].Id);
                                   System.debug('Job details ::'+String.valueOf(listCronTrigger[i]));
                            }
                     }
               }
          }

          Step 2 : Create a VF page and call testing method on load 

       On every page refresh 10 jobs will be deleted.


Tools for Lightning Web Component Development

 Below are the tools required for Web Component Development 1. Chrome Browser (Prefered) You can download it from Google 2. Visual Studio Co...