How to check installed packages usages in Salesforce?
1. Go to Package Usage under setup. 2. Click Submit New Request button.
1. Go to Package Usage under setup. 2. Click Submit New Request button.
The below code will open Contacts tab when the popup is closed. Sample Code: Lightning Component: <aura:component implements="flexipage:availableForRecordHome,force:hasRecordId" access="global" > <section role="dialog" tabindex="-1" aria-labelledby="modal-heading-01" aria-modal="true" aria-describedby="modal-content-id-1" class="slds-modal slds-fade-in-open"> <div class="slds-modal__container"> <!-- Modal/Popup Box Header--> <header class="slds-modal__header"> <lightning:buttonIcon iconName="utility:close" onclick="{! c.closeModel }" alternativeText="close" variant="bare-inverse" class="slds-modal__close"/> <h2 id="modal-heading-01" class="slds-text-heading_medium slds-hyphenate">Header</h2> ....
Add lightning:actionOverride and lightning:hasPageReference to the list of interfaces in the aura:component tag. Sample Code: Lightning Component: <aura:component implements="lightning:actionOverride, lightning:hasPageReference" > <aura:handler name="init" value="{!this}" action="{!c.doInit}"/> </aura:component> Lightning Component JavaScript Controller: ....
Schedule and Manage Scheduled Emails in Lightning Experience Sales reps can specify email arrival times to increase the chances of an email being read. They can schedule an email to ....
Navigate to a lightning component or standard record page creation based on Record Type in Salesforce Lightning NewContact Lightning Component: <aura:component implements="lightning:actionOverride, lightning:hasPageReference"> <aura:handler name="init" value="{!this}" action="{!c.doInit}"/> </aura:component> NewContact Lighting ....
1. Open Siri Shortcuts. 2. Click Create Shortcut. 3. Select Salesforce Actions.
1. Create a Report Type with LightningUsageByFlexiPageMetrics as the primary object. 2. Create a report using that report type. For additional report types, check the below link https://help.salesforce.com/articleView?id=lex_usage_reports.htm&type=5
When "Allow Users to Relate Multiple Contacts to Tasks and Events" is enabled, WhoId cannot be set through Apex. Once the event is created, create EventRelation record. EventRelation obj = ....
Sample Code: <apex:page StandardController="Opportunity"> GMT: <apex:outputText value=" {0,date,M/d/yyy h:mm a}"> <apex:param value="{!Opportunity.LastModifiedDate}"/> </apex:outputText> <br/> User Time Zone: <apex:outputField value="{!Opportunity.LastModifiedDate}"/> </apex:page> Output: For using apex:outputText tag use <apex:page> <table> <tr> <td><apex:outputText ....
1. Switch to the account by clicking Change Account. 2. Log Out from the app.