Unable to view Connected Apps OAuth Usage
If you are unable to view Salesforce Connected Apps OAuth Usage for any Connected app, make sure at least one user is using the app.
If you are unable to view Salesforce Connected Apps OAuth Usage for any Connected app, make sure at least one user is using the app.
A hierarchy field(Lookup to user object) can be used here. When a hierarchical field is selected, the same field will be available as an assigned approver option in approval steps.Automatically ....
Sample package.xml: <types> <members>Account.*</members> <name>SharingCriteriaRule</name> </types> <types> <members>Account.*</members> ....
Salesforce Shield lets customers see who is doing what with sensitive data, know the state and value of their data going back up to ten years, and encrypt sensitive data ....
With custom component, we can enable and disable buttons in Flow. Sample Flow: Screen - First and Last Name:We get the First and Last name from the user. Assignment - ....
HTML: <template> <lightning-datatable key-field="Id" data={contacts} columns={columns} hide-checkbox-column="true" show-row-number-column="true" onrowaction={handleRowAction}> </lightning-datatable> </template> JavaScript: import { LightningElement, api, track } from 'lwc'; import { NavigationMixin ....
Sample code: HTML: <template> <div class="slds-box slds-theme_default"> <table class="slds-table slds-table_cell-buffer slds-table_bordered slds-table_col-bordered"> <thead> <tr> <th scope="col"> <div class="slds-truncate" title="Account Name">Name</div> </th> <th class="" scope="col"> <div class="slds-truncate" title="Account Industry">Industry</div> </th> <th ....
Sample Code: XmlStreamWriter w = new XmlStreamWriter();w.writeStartDocument( null, '1.0' );w.writeStartElement( null, 'test', null );w.writeStartElement( null, 'example', null );w.writeAttribute( null, null, 'email', '[email protected]' );w.writeCharacters( 'sample' );w.writeEndElement();w.writeEndElement();w.writeEndDocument();String payload = w.getXmlString();system.debug( 'Payload is ....
By default, in Salesforce, the Chat API returns queue position information that we can relay to customers. However, we can also retrieve/receive the estimated wait time. Sometimes, the estimated wait ....