1. How to see the current ongoing issues in Salesforce ?
Go to --> https://status.salesforce.com/ --> Which provides transparency around service availability and performance for Salesforce products.
1. How to see the current ongoing issues in Salesforce ?
Go to --> https://status.salesforce.com/ --> Which provides transparency around service availability and performance for Salesforce products.
1. In the role hierarchy you have agents in different country and they are reporting to respective leads of each country & Organization-Wide Default (OWD) for objects set as private. So agents can't see each other records by default. What about country leads ? Can one country lead see other country agents owned records?
2. How to improve the slow running SOQL ?
1. How many number of items can be added into a Salesforce Collection (List/Set/Map)?
No Limit, Earlier it was 1000 but later it's been removed but keep in mind if you add more number of items it will lead to the Heap Size Error, Means too much data is being stored in memory during processing,6MB for synchronous transactions and 12MB for asynchronous transactions.
Fix have the SOQL query with as many as filter conditions and have the low number on the limit of records to be returned, To add to the list & Have the declaration with in required scope only.