How to enable Sub Topics in Salesforce Community?
You can hide subtopics in Community Builder. Go to the Page Editor, and select the Topic Detail page. Choose the Headline component, and in the Property Editor deselect Show Subtopics.
You can hide subtopics in Community Builder. Go to the Page Editor, and select the Topic Detail page. Choose the Headline component, and in the Property Editor deselect Show Subtopics.
Multiple runTest tags can be used to mention multiple test classes in RunSpecifiedTests in ANT in Salesforce Metadata Migration. Sample code in Build.xml: <target name="deployProdSpecificTest"> <sf:deploy username="${sf.produsername}" password="${sf.prodpassword}" serverurl="${sf.serverurl}" deployroot="Retrieve" testLevel="RunSpecifiedTests"> <runTest>DS_CasePages_Test</runTest> ....
Omni-Channel is a comprehensive customer service solution that lets contact centers push work to their agents in real time. Omni-Channel lets you create work items from your Salesforce records―including cases, ....
If enabled, portal users in the same customer or partner portal account can see each other, regardless of the organization-wide defaults. Salesforce Experience Cloud site users can see other Experience Cloud ....
With the Winter ’18 release, Salesforce will no longer support Chatter Answers, and users of Chatter Answers will no longer be able to post, answer, comment, or view any of ....
1. Go to Opportunity Split --> Fields. 2. Click New and create a custom field. 3. Go to Opportunity Split --> Page Layouts. 4. Edit a layout and select Edit Multi-Line ....
Sample Code: public PageReference redirect() { String acctId = ApexPages.currentPage().getParameters().get('acc'); PageReference pr = new PageReference('salesforce_url/console#%2F' + accId); return pr; }
The Salesforce console is designed for users in fast-paced environments who need to find, update, and create records in Salesforce quickly. The Salesforce Console Integration Toolkit provides you with programmatic ....
Use the below query to query all private reports in Salesforce. Sample SOQL: SELECT Id, Name, Owner.Name FROM Report USING SCOPE allPrivate To know more about USING SCOPE, check the ....