How to customize fields on “Your lead has been converted” pop up in Salesforce?
Account Compact Layout: Contact Compact Layout: Output:
Account Compact Layout: Contact Compact Layout: Output:
If Salesforce Optimizer Report is not received, check your Files tab. Salesforce adds the file to the Files.
Jump Right into Your Most Important List View with Pinned Lists Do you have a go-to list view that you want to load as your default list? Now you can. ....
Regular Expression(RegEx) can be used for multiple Emails separated by coma validation rule in Salesforce. Syntax: OR( NOT( REGEX( Emails__c , "([a-zA-Z0-9._-]+@[a-zA-Z]+.[a-zA-Z,]{2,4})*" ) ), RIGHT( Emails__c , 1 ) = ....
Sample Code: Component: <aura:component implements="force:appHostable" controller="AccountListController"> <aura:attribute type = "Account[]" name = "acctList"/> <aura:attribute name = "mycolumns" type = "List"/> <aura:attribute name = "sortedBy" type = "String" default = "Name"/> <aura:attribute name = "sortedDirection" type = "String" default = "asc"/> <aura:handler name = "init" value ="{! this }" action = "{! c.fetchAccounts }"/> <lightning:datatable data = "{! v.acctList }" columns = "{! v.mycolumns }" keyField = "id" hideCheckboxColumn = "true" onsort = "{! c.updateColumnSorting }" sortedBy = "{! v.sortedBy }" sortedDirection = "{! v.sortedDirection }"/> </aura:component> Component Controller: ({ fetchAccounts : function( component, event, helper ) { component.set( 'v.mycolumns', [ {label: 'Account Name', fieldName: 'linkName', type: 'url', sortable: true, ....
1. Go to Data Manager. 2. Click Create Dataflow in Dataflows & Recipes.
1. Go to Community Builder. 2. Select User Profile page.
Each event message in Salesforce is assigned an opaque ID contained in the ReplayId field. The ReplayId field value, which is populated by the system refers to the position of ....
1. Edit the page layout. 2. Select multiple fields from the page layout by pressing command button. 3. Hover over one of the highlighted fields and click Wrench icon to edit ....
SOQL on the Login History object/entity can be used to find whether users have logged in to the Sandbox. Sample SOQL: SELECT Id, LoginTime, UserId FROM LoginHistory WHERE DAY_ONLY( LoginTime ....