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 * * * ?',
Salesforce Report Type and supported feature
Salesforce has 3 type of report Tabular (By default)SummaryMatrix * Row limit required.
Type of external salesforce connect
Ways to Connect External System Using Salesforce Connect in Apex Salesforce supports 3 way to connect external system using Salesforce Connect oData 2.0 or oData 4.0Cross Org AdapterCustom Adapter using Apex Connector Framework oData 2.0 or oData 4.0: oData is Open Data Protocol. REST
External Object vs Custom Objects
Difference Between Salesforce External Objects & Custom Objects Here is quick look