The requested resource does not exist Salesforce Exception
Exception: The requested resource does not exist Resolution: Check whether any automation like Flows or Triggers is setting the Owner Id to a Queue where the current user is not ....
Exception: The requested resource does not exist Resolution: Check whether any automation like Flows or Triggers is setting the Owner Id to a Queue where the current user is not ....
1. Create a Custom Report Type on Topic Assignments object/Entity. 2. Create a Report from the Report Type created on Topic Assignments object/Entity. In the Report Filter, Filter by Record ....
To update Data Sensitivity Level for Salesforce uneditable Standard Fields, we have to set securityClassification through deployment. 1. Extract the Account Object BillingAddress field. <?xml version="1.0" encoding="UTF-8"?> <Package xmlns="http://soap.sforce.com/2006/04/metadata"> <types> ....
To retrieve and deploy Salesforce Messaging Components, ConversationMessageDefinition should be used. package.xml: <?xml version="1.0" encoding="UTF-8"?> <Package xmlns="http://soap.sforce.com/2006/04/metadata"> <types> <members>*</members> <name>ConversationMessageDefinition</name> </types> <version>59.0</version> </Package> https://youtu.be/Xc8Nm817sEM
To get Conversation Entries for Messaging Session in Salesforce Messaging Channels(SMS, WhatsApp, Facebook, etc..), we can query the ConversationEntry object/entity using the Messaging Session Id as the ConversationId. Sample SOQL: ....
Data Sensitivity Level(SecurityClassification) is stored in FieldDefinition object/entity. We can query the FieldDefinition object/entity to query Data Sensitivity Level for a Salesforce Field. Sample SOQL: SELECT Id, DeveloperName, SecurityClassification FROM ....
@salesforce/community/basePath gives us the Experience Cloud Site URL. We can append /secur/logout.jsp to develop Logout Link using Salesforce Lightning Web Component for Experience Cloud Users. Lightning Web Component: HTML: <template> ....
Compliance Categorization(ComplianceGroup) is stored in FieldDefinition object/entity. We can query the FieldDefinition object/entity to query Compliance Categorization for a Salesforce Field. Sample SOQL: SELECT Id, DeveloperName, ComplianceGroup FROM FieldDefinition WHERE ....
To update Compliance Categorization for Salesforce uneditable Standard Fields, we have to set complianceGroup through deployment. 1. Extract the Account Object BillingAddress field. <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <Package xmlns="http://soap.sforce.com/2006/04/metadata"> <types> ....
Exception:You don't have permission to change Encryption Policy settings. Contact your Salesforce admin to request access. Resolution:Disable "Restrict Access to Encryption Policy Settings" in Platform Encryption Advanced Settings. 1. Go ....