Salesforce TLS Login Report
Report: 1. Select Users Report Type. 2. Use TLS in the report filter. SOQL: SELECT Name FROM User WHERE Id IN ( SELECT UserId FROM LoginHistory WHERE LoginTime = LAST_N_DAYS:90 ....
Report: 1. Select Users Report Type. 2. Use TLS in the report filter. SOQL: SELECT Name FROM User WHERE Id IN ( SELECT UserId FROM LoginHistory WHERE LoginTime = LAST_N_DAYS:90 ....
On the Schedule Report page, specify a running user who has access to the folder where the report is stored. The access level of the running user determines what other ....
Component Filter using App Builder in Lightning Experience Component Filter in Lightning Experience allows us to define when the lightning component should display/hide. This helps us to design dynamic lightning ....
1. Only Last PushTopic Notification Sent for the Same Record In API version 36.0 and earlier, when multiple PushTopic notifications are generated for the same record within about one millisecond ....
In Process Builder time based actions are available when "only when a record is created" is selected. For "when a record is created or edited", if you select "Do you ....
Component HTML: <template> {TestParams} </template> Component JAVASCRIPT: import { LightningElement, track } from 'lwc'; export default class SampleLWC extends LightningElement { @track TestParams; connectedCallback() { this.TestParams = 'Testing' } } Output:
Lightning Web Components development requires Visual Studio Code. Check the below link if you want to set it up. https://www.infallibletechie.com/2018/09/how-to-install-and-set-up-vs-code-for.html 1. Make sure Lightning Web Components extension is installed and enabled. ....
Sample Code: String num = '(123) 456-7894'; system.debug( num.replaceAll( '[^0-9]', '' ) ); Debug Log:
Jest is a powerful tool with rich features for writing JavaScript tests. Use Jest to write unit tests for all of your Lightning web components. To run Jest tests, install ....
Admin Steps:1. In Setup, go to Chatter Settings. 2. Click Edit. 3. In the Out of Office section, enable Users can set Out of Office messages. 4. Click Save. User ....