Calculate the End date of the Month from Start Date
How to Calculate End Date of Month From Start Date in Salesforce? You need to create a formula field with Date Field Type and use Below formula field DATE( YEAR(Start_date__c), MONTH(Start_date__c), CASE( MONTH(Start_date__c), 1, 31, 2, IF( MOD( YEAR(Start_date__c), 4) = 0,
How to Track Salesforce HTML Emails?
How To Track/Enable HTML Email Tracking For Salesforce Users? Need to enable “Email Tracking (checkbox)” under Activity Settings Go to Setup | Build | Customize | Activities | Activity Settings | Enable Email Tracking (checkbox) HTML emails are sent as HTML File Refer salesforce
Converting Lookups to Master-Detail Relationships
Requirements of Converting Lookups to Master-Detail Relationships There are many reasons as to why you may want to convert a Lookup to a Master-Detail Relationship. You may need to roll-up data, simplify security settings, or maybe you had initially meant to
How to find list of custom object prefix decoder in your org?
Learn How to Find List of Custom Object Prefix Decoder in Your org Please run below script in your developer console Map<String, Schema.SObjectType> gd = Schema.getGlobalDescribe(); for(String str : gd.keySet()) { Schema.SObjectType obj = gd.get(str); Schema.DescribeSObjectResult objResult
How to create a custom field on Task and Event?
You can’t create a custom field directly under Task Fields to Event Fields. You have to create custom field under “Activity Custom Fields” so that same will be available for Task and Event. Setup -> Customize -> Activities -> Activity Custom
View and Edit Converted Lead
How to View & Edit Converted Lead on The User Profile in Salesforce Spring 17 release has ability to view and edit the converted lead. How to get access to view and edit the converted lead? Need to enable "View and Edit Converted
How to use Time(HH:MM) in email template from DateTime Field?
Create a Formula field and parse out the Time elements MID function. MID(TEXT(Date/Time Field API Name), 12, 5) use that formula field in your email template or report.
How to export Salesforce Object field name into CSV file?
Learn How to Export Salesforce Object Field Name Into CSV File? Please run below script through developer console you will receive a email with list of field for that object. Note: Please replace with your email address and object based on your
Salesforce Formula to Calculate Elapsed Time b/w 2 dates
Salesforce Elapsed Function/Formula to Calculate Time B/w 2 Dates Salesforce Elapsed Function/Formula to Calculate Time B/w 2 Dates IF (Now() - LastModifiedDate > 0, TEXT(FLOOR(Now() - LastModifiedDate)) & " days " & TEXT( FLOOR( 24 * (Now() - LastModifiedDate - FLOOR(Now() -
How to schedule apex job every 15 min?
Please use below code to schedule you job every to 15 min System.schedule('Scheduled Job 1', '0 0 * * * ?', new ScheduledClass()); System.schedule('Scheduled Job 2', '0 15 * * * ?', new ScheduledClass()); System.schedule('Scheduled Job 3', '0 30 * * * ?',