How to add dependent picklist in salesforce

How to create Dependent Picklist in Salesforce? From the management settings for the object you want to add a field to, go to Fields. Custom task and event fields are accessible from the object management settings for Activities. Click Field Dependencies. Click New. Choose a controlling field and dependent field. Define Dependent Picklists From the … Read more

How to add dependencies in objects in salesforce

While still viewing the Account object in the Object Manager, select Fields & Relationships. Click Field Dependencies. Click New. Select Region as the Controlling Field. Select Zone as the Dependent Field. Click Continue. Select the appropriate zones in each column by double-clicking them. APAC: East Asia, Oceania, Southeast Asia EMEA: Africa, Europe, Middle East, UK … Read more

How to add delete all button salesforce

1. Click Setup➤Customize, select the appropriate object, and choose the Search Layoutslink. 2. Click Editnext to the list view layout. 3. Select “Mass Delete” in the Available Buttons list and click Addto add it to the list of buttons that display.This adds the button to all list views available for that object. 0:27 5:21 How … Read more

How to add delay salesforce

addDelay : function (component, event, helper) { var delay=4000; //4 seconds setTimeout (function () { console.log (‘Inside delay: ‘); var toastDiv= component.find (‘toastDiv’); console.log (‘toastDiv: ‘+ toastDiv); $A.util.removeClass (toastDiv, “slds-show”); $A.util.addClass (toastDiv, “slds-hide”); }, delay); Full Answer How do I create a future method in Salesforce? Future method syntaxUse @future annotation before the method declaration.Future … Read more

How to add delay in lightning salesforce

addDelay : function (component, event, helper) { var delay=4000; //4 seconds setTimeout (function () { console.log (‘Inside delay: ‘); var toastDiv= component.find (‘toastDiv’); console.log (‘toastDiv: ‘+ toastDiv); $A.util.removeClass (toastDiv, “slds-show”); $A.util.addClass (toastDiv, “slds-hide”); }, delay); Full Answer How to close deals faster with inbox now in Salesforce App? Pin the Salesforce Panel in Outlook Desktop … Read more

How to add days in salesforce formula

In Setup, use the quick find box to find the Object Manager. Click Account | Fields & Relationships and click New. Select Formula and click Next. In Field Label, enter Future Date. Field Name populates automatically. Select Date and click Next. Enter the following formula: TODAY() + 3 When adding days to a date, Salesforce … Read more

How to add day of week to date in salesforce

If you put your date into a datetime, you can use the format method to generate a string containing the day of the week. E.g. if you have your date in a variable called theDate: DateTime dt=DateTime.newInstance (theDate, Time.newInstance (0, 0, 0, 0)); String dayOfWeek=dt.format (‘eee’); DateTime dt = DateTime. newInstance(myDate, Time. newInstance(0,0,0,0)); String dayOfWeek … Read more