How to create New Sub Folder in Salesforce Reports and Dashboards?
1. Go to Reports tab. 2. Select the Folder where you wan to create the Sub Folder. 3. Click New Folder inside the Parent folder. Sample Sub Folder view in ....
1. Go to Reports tab. 2. Select the Folder where you wan to create the Sub Folder. 3. Click New Folder inside the Parent folder. Sample Sub Folder view in ....
On the Reports or Dashboards page, select Move from the row level action menu. A select folder dialog box opens where you can navigate to the destination folder and save. ....
Constructor can be used for passing parameters to Batch Apex in Salesforce. Sample Batch Class: global class SampleBatchClassWithParams implements Database.Batchable<sObject>, Database.Stateful { private String strParam; private Set < Id > ....
From Lightning component controller or helper: var uri = "URI_Value"; var enc = encodeURI(uri);//to encode var dec = decodeURI(enc);// to decode From Apex: https://www.infallibletechie.com/2016/10/how-to-encode-special-characters-for.html
Sample Requests using Workbench: Inserting Data Through REST API URL - /services/data/v20.0/sobjects/Employee__c/ Request Body: { "Employee__c":"Test", "Age__c":19 } View Data Through REST API with Specified Fields /services/data/v20.0/sobjects/Employee__c/a00f200000Tfgpq?fields=Name,Employee_Name__c,Age__c View Data Through REST ....
1. Switch to Classic. 2. Enable Lightning Knowledge.
Enable "Delete synced events" to delete events in Salesforce if the events are deleted in Gmail Calendar.
Check whether the object's New button is overridden by the Visualforce page. If yes, then make sure your Visualforce page which overrides the "New" action on the object is marked ....
Sample Code: Component: <aura:component implements="force:appHostable" > <aura:attribute name="options" type="List" default="[ {'label': 'India', 'value': 'IN'}, {'label': 'Unites States of America', 'value': 'US'}, ....
Sample Code: Component: <aura:component implements="force:appHostable" > <aura:attribute name="options" type="List" default="[ {'label': 'India', 'value': 'IN'}, {'label': 'Unites States of America', 'value': 'US'}, ....