How to Remove the Salesforce Adv Notification Banner from Salesforce.com Instance for Summer ’14 release, salesforce introduced to display some of the advertisment banner after logged in salesforce.com instance. its …
July 2014
- ReleaseSALESFORCESalesforce Configuration
-
How to set the Login IP Ranges in Professional Salesforce Edition? For Personal, Professional and Group Salesforce.com Edition: Click Setup -> Security Controls -> Session Settings -> Click the New …
- APEXSALESFORCESalesforce CustomizationSalesforce.comSOQL
How to get the Current Date and Year Using Apex Class?
How to get the Current Date and Year Using Apex Class? System.debug(‘************ ‘ + system.today().format()); System.debug(‘************ ‘ + date.today().format()); Output:- ************ 07/16/2014 ************ 07/16/2014 How to get current year using …
-
What is Salesforce to Salesforce? Salesforce to Salesforce is a mechanism for connecting two separate orgs (same or different companies) and enabling the sharing of leads, opportunities, contact, task, product, …
-
there are some best Salesforce.com workbooks available, see the following salesforce.com Workbook:: Force.com Workbook Security Workbook Analytics Workbook
- APEXForce.comSALESFORCESalesforce CustomizationSalesforce.com
How to identify the Future Calls limits using Apex Class?
How to identify the Future Calls limits using Apex Class? We can get the Future Call limits using Defug log like below: Number of SOQL queries: 10 out of 100 …
-
How to detect my running Internet Explorer Browser using Javascript? We can easily detect the running user browser versions like the user is running IE6 (or earlier) or IE7 (or …
-
How to detect my running Browser using Javascript? Using following Javascript code, we can detect the Browsers & Browsers Version, like either running the current url is Google Chrome or …
- CertificationForce.comSALESFORCESalesforce CertificationSalesforce.com
How to vertify the Salesforce.com Certification
How to vertify the Salesforce.com Certification Salesforce.com recently provided the option to check the certifications either the particular person have or not using the two methods of verification 1) Full …
- APEXSALESFORCESalesforce CustomizationSalesforce.comSOQL
How to Access Query Results (SOQL) Values using MAP in Apex Class?
How to Access Query Results (SOQL) Values using MAP in Apex Class? For Example: This is a After Trigger in Account: for (Account acc : Trigger.new) { accId.add(acc.Id); } map<Id, …