Hide and Show components in Flow screen based on conditions in Salesforce?
Set Component Visibility in Salesforce Flow Screen. Output:
Set Component Visibility in Salesforce Flow Screen. Output:
Run the below Query SELECT Id, FolderName,Title FROM Dashboard WHERE Type IN ( 'LoggedInUser', 'MyTeamUser' ) (Or) SELECT Id, FolderName,Title FROM Dashboard WHERE Type = 'LoggedInUser' OR Type = 'MyTeamUser' ....
1. Go to Data Manager. 2. Select Monitor. 3. Select Schedule.
You need Salesforce login to get the Salesforce Compliance documents like SOC1 and SOC2. You can use your username and password in the following URL and download the documents. https://compliance.salesforce.com/en For ....
Static Query and Bind Variables The first and most recommended method to prevent SOQL injection is to use static queries with bind variables. Consider the following query. Static Query: SELECT ....
Use the below package.xml to deploy custom metadata type using Apache ANT tool in Salesforce. package.xml: <!-- Custom Metadata Type Data --> <types> <members>CustomMetadata__mdt.RecordName</members> <name>CustomMetadata</name> </types> <!-- Custom Metadata Type ....
How to find which license types/Profiles support OAuth login from external apps in Salesforce? 1. Go to App Manager. 2. Select the Connected App created for OAuth. Select Manage from ....
How to get the label Name for Object's field in Salesforce? Sample Code: system.debug( 'Field Label Name is ' + Opportunity.StageName.getDescribe().getLabel() ); Output:
Below formula can be used HYPERLINK("/sfc/servlet.shepherd/version/download/"&ContentVersionId, "Name" ,"_blank") ContentVersion Id starts with 068. ContentDocument Id starts with 069.
Sample Code: Aura Component: <aura:component implements="force:lightningQuickAction,force:hasRecordId"> <c:caseEscalation recId="{!v.recordId}"/> </aura:component> Lightning Web Component(LWC): LWC HTML: <template> <div class="slds-m-around_medium"> <template if:true={newBool}> <lightning-record-edit-form object-api-name="Case" onsuccess={handleCreate} record-type-id="0123i000000IC1dAAG"> <lightning-messages></lightning-messages> <div class="slds-grid slds-wrap"> <div class="slds-col slds-size_1-of-2"> ....