How to find all the Subscribed or Scheduled Reports in Salesforce?
1. Go to Reports Tab. 2. Select All Reports. 3. Sort by Subscribed column.
1. Go to Reports Tab. 2. Select All Reports. 3. Sort by Subscribed column.
Fix the issue "ERROR: self signed certificate in certificate chain in VS Code" by doing the following steps: 1. Set System Environment Variable, NODE_TLS_REJECT_UNAUTHORIZED with value = 0. 2. Restart ....
If Users follow records, the entries are stored in EntitySubscription entity. SOQL: SELECT Id, ParentId, SubscriberId FROM EntitySubscription SubscriberId - ID of the User who is following the record or user. ParentId ....
for-in The for-in loop iterates over all the enumerable properties of an object. In each iteration the name of the property is stored in the variable. Syntax: for (variable in ....
Set Component Visibility in Salesforce Flow Screen. Output:
Run the below Query SELECT Id, FolderName,Title FROM Dashboard WHERE Type IN ( 'LoggedInUser', 'MyTeamUser' ) (Or) SELECT Id, FolderName,Title FROM Dashboard WHERE Type = 'LoggedInUser' OR Type = 'MyTeamUser' ....
1. Go to Data Manager. 2. Select Monitor. 3. Select Schedule.
You need Salesforce login to get the Salesforce Compliance documents like SOC1 and SOC2. You can use your username and password in the following URL and download the documents. https://compliance.salesforce.com/en For ....
Static Query and Bind Variables The first and most recommended method to prevent SOQL injection is to use static queries with bind variables. Consider the following query. Static Query: SELECT ....
Use the below package.xml to deploy custom metadata type using Apache ANT tool in Salesforce. package.xml: <!-- Custom Metadata Type Data --> <types> <members>CustomMetadata__mdt.RecordName</members> <name>CustomMetadata</name> </types> <!-- Custom Metadata Type --> <types> <members>CustomMetadata</members> <name>CustomObject</name> </types>