Case Management in Salesforce
Case management enables you to make the most of each interaction and become a true champion of customer success. Automating the distribution of cases in your service organization ensures that ....
Case management enables you to make the most of each interaction and become a true champion of customer success. Automating the distribution of cases in your service organization ensures that ....
1. Go to the object's buttons and links section and click edit to the button to be overridden. 2. Select the Visualforce page to be opened when the button is ....
To check the login histories of all the users in Salesforce, go to Setup --> Administer --> Manage Users --> Login History. SOQL: SELECT Id, LoginTime, UserId FROM LoginHistory WHERE ....
1. Go to Deployment Settings. 2. Enable the below check box and Save it. Cheers!!!
isNumeric() can be used to check whether a string is numeric using Apex in Salesforce. Sample Code: String str = 'abc'; if ( str.isNumeric() ) { Integer intVal = Integer.ValueOf( ....
Visualforce page: <apex:page standardController="Contact" extensions="Sample"> <apex:form > <apex:pageBlock > <apex:pageBlockButtons > <apex:commandButton value="Save" action="{!save}"/> ....
To merge PDF files online, check the below link http://www.pdfmerge.com/ Cheers!!!
If you face "Error: Record Currently Unavailable" issue while saving a Visualforce page, kindly use the below soloution. 1. Enable Development Mod check box in user details. https://www.infallibletechie.com/2012/11/how-to-enable-developer-mode-in.html 2. Open ....
Sample Trigger: trigger LeadTrigger on Lead (after update) { List<Attachment> listAttachments = new List<Attachment>(); List<Attachment> listInsertAttachments = new List<Attachment>(); set<Id> leadIds = new set<Id>(); ....
Salesforce Lightning Experience:1. Go to Setup. 2. Select Object Manager.3. Select Lead object.4. Select Fields & Relationships.5. Click "Map Lead Fields".6. Select the fields to Map.Salesforce Classic:1. Go to Setup ....