Tuples in Python
Tuples in Python are similar to list data type. It makes use of ( and ). List uses [ and ]. The significant difference is, once we create the Tuples, ....
Tuples in Python are similar to list data type. It makes use of ( and ). List uses [ and ]. The significant difference is, once we create the Tuples, ....
Exception:This record ID isn't valid Resolution:For Record Id reference in the Flow, we use Text data type variable. The "This record ID isn't valid" Salesforce Flow Exception is thrown when ....
Salesforce Pre-Chat API can be used to find the existing Case records using Custom Field for matching the records. Check the following for reference. Sample Case Custom Field for Matching ....
https://{Your_Domain_URL}/services/data/v56.0/limits/recordCount can be used to find the number of records in each Salesforce Object using REST API. Workbench: Postman Client: https://youtu.be/M9e5PhzqRx0
Salesforce Setup Audit trail: https://www.infallibletechie.com/2012/04/setup-audit-trail.html Login History: https://www.infallibletechie.com/2013/08/how-to-view-login-history-of.html Event Monitoring: https://www.infallibletechie.com/2018/01/event-monitoring-in-salesforce.html Lightning Usage App: https://www.infallibletechie.com/2018/11/how-to-view-page-performance-by-browser.html Salesforce Optimizer: https://www.infallibletechie.com/2017/02/salesforce-optimizer.html Health Check: https://www.infallibletechie.com/2016/05/health-check-in-salesforce.html Portal Health Report: https://www.infallibletechie.com/2014/12/portal-health-reports.html Apex Exception Notifications: https://www.infallibletechie.com/2018/08/apex-exception-email-in-salesforce.html API ....
There are few says to read lightning-input-field value from lightning-record-edit-form in Salesforce Lightning Web Component. Please check the following sample code for reference. Sample Code: Lightning Web Component: HTML: <template> ....
RegEx(Regular Expression) can be used to get URL without path in Python. Sample Code: import re serverUrl = 'https://infallibletechie.my.salesforce.com/services/Soap/c/29.0/00Di0000000icUB/0DFi00000008UYO'; strURL = re.findall( "(https://.*?)/", serverUrl )[ 0 ]; print( 'strURL is', strURL ....
Salesforce Login URLs for Production and Sandbox are the following: Production URL: https://login.salesforce.com/ Sandbox URL: https://test.salesforce.com/ To find out how Salesforce Login works, check the following: https://www.infallibletechie.com/2013/08/how-salesforce-login-works.html To brand your ....
RegEx(Regular Expression) can be used to parse to parse Salesforce Login SOAP Response in Python. Sample Code: import re strXMLString = '''<?xml version="1.0" encoding="UTF-8"?> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:enterprise.soap.sforce.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <soapenv:Body> <loginResponse> ....
FlexiPage should be used in the package.xml to retrieve and deploy Salesforce Lightning Record Page. Salesforce Lightning Record Page: Sample package.xml: <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <Package xmlns="http://soap.sforce.com/2006/04/metadata"> <types> <members>Sales_App_Account_Record_Page</members> <name>FlexiPage</name> </types> ....