How to change the logo on the Salesforce Home page?
1. Go to Apps. 2. Edit the App. 3. Select "Insert an Image". Note: For standard app, you cannot customize its label or logo.
1. Go to Apps. 2. Edit the App. 3. Select "Insert an Image". Note: For standard app, you cannot customize its label or logo.
Salesforce Lightning Aura Component makes use of aura:if and aura:set for expressions to hide and show the content. Please check the following code for reference. Sample Code: <aura:component > <aura:attribute ....
Sample Code: <aura:component > <aura:attribute name="DayOfTheWeek" type="String" default="Monday" /> <aura:if isTrue="{!v.DayOfTheWeek == 'Monday'}"> Today is {!v.DayOfTheWeek} ....
If Lightning Component Tabs Section missing in Salesforce, follow the below steps 1. Go to My Domain. 2. Click "Click here to login". 3. Click "Deploy to Users". Still if ....
The Lightning Component framework is a UI framework for developing dynamic web apps for mobile and desktop devices. It’s a modern framework for building single-page applications engineered for growth. The ....
Sample SOQL: SELECT Id, Name FROM Account WHERE CreatedDate = YESTERDAY To get records created today, use the below query Sample SOQL: SELECT Id, Name FROM Account WHERE CreatedDate = ....
System.schedule() method can be used to schedule a Schedulable class at specified time instantly in Salesforce. Check the following sample code for reference. Sample Code: AccountUpdateScheduler obj = new AccountUpdateScheduler(); ....
Sample Batch: global class AccountUpdate Implements Database.Batchable <sObject> { global Database.queryLocator start(Database.BatchableContext bc) { String SOQL = 'SELECT Id, Description FROM Account'; ....
Whether you’re already certified or pursuing an advanced credential, there are certain key dates to keep in mind. Below you’ll find information about the important dates for release exams, the ....
Whether you’re already certified or pursuing an advanced credential, there are certain key dates to keep in mind. Below you’ll find information about the important dates for release exams, the ....