New Task button is missing issue in Lightning Experience Record Page in Salesforce
Add the New Task button to the Salesforce Mobile and Lightning Experience Actions section of page layouts.
Add the New Task button to the Salesforce Mobile and Lightning Experience Actions section of page layouts.
Check the below link for Salesforce Feature Retirements schedule https://help.salesforce.com/articleView?id=000313062&language=en_US&type=1&mode=1 For each release, go to the release notes and search retire keyword.
To create a MessageChannel, use the below steps 1. Open VS Code. 2. Create a Folder with the name "messageChannels" under force-app\main\default. 3. Create a file with Channel name followed ....
1. Enable the "Run Flows" Permission on the User Profiles who were not able to see the buttons. 2. If you are running a flow from a quick action using ....
Aura Component Code: FlowComponent.cmp: <aura:component implements="lightning:availableForFlowScreens"> <aura:attribute name="RecordId" type="String"/> <lightning:recordViewForm recordId="{! v.RecordId }" objectApiName="Account"> <div class="slds-box"> <lightning:outputField fieldName="Name" /> <lightning:outputField fieldName="Industry" /> </div> </lightning:recordViewForm> </aura:component> FlowComponent.design: <design:component> <design:attribute name="RecordId" label="Record ....
Sample Code:Example.cmp:<aura:component implements="force:appHostable" controller="AccountListController"> <aura:attribute name="gridColumns" type="List" /> <aura:attribute name="gridData" type="Object" /> <aura:attribute name="selectedRows" type="list" /> <aura:handler name="init" value="{!this}" action="{!c.fetchAccounts}"/> <lightning:treeGrid columns="{! v.gridColumns }" data="{! v.gridData }" ....
This feature "Perform Synchronous Compile on Deploy in Salesforce" is enabled automatically for production orgs but it's an opt-in feature for sandboxes. Previously, installation and upgrades with large packages resulted ....
Sample Code:<aura:component implements="forceCommunity:themeLayout" access="global" description="Sample Custom Theme Layout"> <aura:attribute name="AppearInAll" type="Aura.Component[]" required="false"/> <div> <div> <!-- This will be ....
Entitlement templates let you predefine terms of support that users can add to products. If Entitlement template is assigned to ProductA and if Asset is created with the ProductA, Entitlement ....