Phone number with dial icon in Salesforce
Add the dial icon to the Static Resources. Formula field: Output:
Add the dial icon to the Static Resources. Formula field: Output:
To refer static resource in image formula field in Salesforce, IMAGE() with the Static Resource Name should be used. Check the following sample formula for reference. Sample formula: IMAGE( '/resource/InfallibleTech__Dial', 'Dial' ....
Full copy sandbox can be refreshed only 29 days once i.e 29 days after last refresh completion date. Starting date of the last refresh will not be considered for the 29 ....
Sample Code: Batch Class: global class CaseEscalation implements Database.Batchable <sObject>{ global Database.QueryLocator start(Database.BatchableContext bc){ String SOQL = 'SELECT Id, IsEscalated FROM Case WHERE Status ....
Sample Code: Visualforce page: <apex:page controller="SampleController"> <script> function callSave(){ var r = confirm("Are you sure want to save?"); if(r == true) { callSav(); } } </script> <apex:form > <apex:actionFunction name="callSav" ....
Sample Code: Datetime myDate = Datetime.newInstanceGMT(2008, 12, 1, 0, 0, 0); system.debug('Value is ' + myDate); Output:
Just add n days to the Date field in the formula field. Kindly select Date while creating a formula field.
Sample Trigger: trigger emailCheck on Employee__c (before update){ Map<Id,Employee__c> o = new Map<Id,Employee__c>(); o = trigger.oldMap; for(Employee__c n : trigger.new) { Employee__c old = new Employee__c(); old = o.get(n.Id); if(n.Email__c ....
Knowledge User checkbox on the user detail: By default, all internal users with Read permission can read published articles.Lightning Knowledge uses user profile permissions or permissions sets to give agents ....