How to run SOQL using Salesforce REST API with WHERE Condition?
Sample Endpoint: https://infallibletechie-b-dev-ed.my.salesforce.com/services/data/v53.0/query/?q=SELECT+Id,Name,Type,Industry+FROM+Account+WHERE+Name=%27InfallibleTechie%27
Sample Endpoint: https://infallibletechie-b-dev-ed.my.salesforce.com/services/data/v53.0/query/?q=SELECT+Id,Name,Type,Industry+FROM+Account+WHERE+Name=%27InfallibleTechie%27
1. Create a Public Group. 2. Assign Users to the Public Group. 3. Go to Supervisor Configurations under Setup. 4. Click New. 5. Enter the Details. 6. Select the Supervisor Profiles. ....
1. Complete the Following Trailhead Resource: https://trailhead.salesforce.com/en/content/learn/trails/volunteer-your-salesforce-expertise 2. Complete a Salesforce Certification. Trailhead is free resource to learn for certification. 3. Check the following opportunities. Salesforce Trailhead Group for Non-Profit ....
Record Page Settings helps us to decide how to configure New Task and New Event with Record Type selection. Note: If Einstein Activity Captured in your org, then by default ....
Overflow Assignee in the Routing Configuration help us to set an user or queue so that Omni-Channel routes the items to it when your org reaches Omni-Channel limits. We can ....
The maximum number of Asynchronous Processes per a 24-hour period is 250,000 or the number of user licenses in your organization multiplied by 200, whichever is greater. Asynchronous Apex: Batch ....
If "With Sharing" keyword is used in the Apex Class, then the SOQL won't run in System Mode. It will run in User Mode and respect the Restriction Rules configured. ....
Sample Code:Integer i = 0;Long total = 0;for ( LiveChatTranscript chat : [ SELECT Id, CreatedDate, RequestTime FROM LiveChatTranscript WHERE OwnerID = '00G5f000000aT2F' ] ){ i += 1; total ....
Sample SOQL:SELECT Name, Format, LastRunDate, LastViewedDate, LastModifiedDate, CreatedDate FROM Report Output: SOQL to find reports that last ran last year:SELECT Name, Format, LastRunDate, LastViewedDate, LastModifiedDate, CreatedDate FROM Report WHERE LastRunDate = ....
1.Service Setup has all Service related setup and it will be easy for Service Cloud Developers/Admins to access it. Whereas, the Standard Setup shows all the setups. So, it makes ....