Save and New feature using Apex in Salesforce
Visualforce page: <apex:page standardController="Contact" extensions="Sample"> <apex:form > <apex:pageBlock > <apex:pageBlockButtons > <apex:commandButton value="Save" action="{!save}"/> ....
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 ....
1. Open the user's profile. 2. Select "System Permissions". 3. Enable or disable "View Global Header" check box to enable and disable global header. Cheers!!!
Salesforce Knowledge is a knowledge base where users can easily create and manage content, known as articles, and quickly find and view the articles they need. After you set up ....
Dyanamic Appoval basically to allocate the Approver dynamically. Dynamic approval process is used to route approval requests to users listed in lookup fields on the record requiring approval. In this, ....
Profile is a collection of Settings and Permissions which determines 1. What users can see on the UI 2. What functionality users can access 3. What records users can view, ....
The new USING SCOPE clause for SOQL queries lets you limit results by filterScope. Syntax: SELECT column_name FROM table_name USING SCOPE filterScope_value filterScope_value can take one of the following enumeration ....