Chatter Answers in Salesforce
Enabling Chatter Answers: 1. Go to Setup --> Build --> Customize --> Chatter Answers --> Settings. 2. Click "Edit" button. 3. Select "Enable" check box. 4. Click "Save" button. Configuring ....
Enabling Chatter Answers: 1. Go to Setup --> Build --> Customize --> Chatter Answers --> Settings. 2. Click "Edit" button. 3. Select "Enable" check box. 4. Click "Save" button. Configuring ....
Other Address Fields: OtherStreet OtherPostalCode OtherCity OtherCountry OtherState Mailing Address Fields: MailingStreet MailingCity MailingCountry MailingState MailingPostalCode Sample Code: Visualforce page: <apex:page controller="Sample" sidebar="false"><apex:form > <apex:pageblock mode="edit"> <apex:pageblockSection title="Contact Information"> <apex:inputField ....
Messaging.EmailFileAttachment can be used to trigger to send a pdf along with email in Salesforce. Sample Trigger: trigger sendEmail on Employee__c (after insert, after update) { List<Messaging.SingleEmailMessage> mails = new ....
Sandbox Templates Salesforce Communities Enhanced Site.com features Force.com Canvas Enhanced Report and Dashboard folder sharing feature Actions User Interface features
Sandbox templates provide control over the objects copied to your sandbox. You can create a sandbox template that defines the object data you want in your sandbox. When you create ....
Actions let you use Chatter in new ways, like create records directly in the feed. Enabling Actions in Salesforce: 1. Go to Setup --> Customize --> Chatter --> Settings. 2. ....
1. Make the File in Google Drive accessible to Public. 2. Copy the Document Id. 3. Create a Link as below <a href="https://docs.google.com/uc?export=download&id=0B36Q9KSdCf-6N0wtV2tUUDRCTmM">Download File</a>
For PopUp using Lightning Web Component, check https://www.infallibletechie.com/2020/03/popup-using-lightning-web-component-lwc.html. Following example is for Salesforce classic only. 1. Add the below .zip file in Static Resources. Click this link to download the ....
created, and every time it’s edited created, and any time it’s edited to subsequently meet criteria in Salesforce Fired whenever the record is created or edited and match the criteria. ....
In order to show help text in apex:inputText, "title" attribute is used. Sample Code:<apex:page sidebar="false" ><apex:form > <apex:panelGrid columns="2" width="100%" cellpadding="5" cellspacing="5" > <apex:outputtext value="Name"/> <apex:inputtext title="Enter your Name" /> ....