Questions tagged [limits]
Salesforce imposes maximum limits on selected features. The stated limits for the features may vary based on the Edition.
471 questions
1 vote
1 answer
88 views
What is the way to find out the value of Daily Single Email messages used limit value?
What is the way to find out the value of Daily Single Email messages used limit value? I know we can do it through workbench and REST API like GET /services/data/v65.0/limits but I am looking for Apex ...
-1 votes
1 answer
211 views
Network IP Range Restriction
We are currently encountering an error when trying to add a new IP range: “You reached the limit of 16,777,216 IP addresses across all of your IP ranges. Reduce the size of the IP range you entered ...
0 votes
0 answers
58 views
How to check Limits Usage for Connect Rest API
I'm building an integration that will need to make some calls to the Connect REST API, to the Conversation Entries endpoint. Per the limits page in the Connect APIdocs: Requests to resources that don’...
1 vote
1 answer
170 views
Triggers and Apex Transactions
could you prove that my understanding is correct or point out if there is a mistake. Let say we have a trigger for Accounts. Then we have a class where we do this: update accs; //for a 1000 of records ...
0 votes
2 answers
64 views
Are there any limits on salesforce initiated system emails?
There is a limit to 5000 single emails sent to external email addressed from Apex code or flow. Does this limit count for the system generated email for Experience Cloud welcome email?
0 votes
0 answers
58 views
Activity Fields Limit and Certified Managed Package
I know that fields from certified managed package are not counted toward the subscriber org limit. But is that valid also for the activity object? Salesforce article state that Activity has special ...
0 votes
0 answers
92 views
How to stop automatic api callouts?
I have deactivated all the flows and asynchronous jobs, triggers, platform events, no connected apps, apex classes. But still api requests count is being increased. What would be the reason.
0 votes
1 answer
46 views
How to automate Incident Management broadcast emails
The Incident Management feature includes an option to send Broadcast Emails to a list view of Contacts, using what appears to be it's own 5000 emails-per-day limit (in testing, sending Apex emails ...
0 votes
0 answers
52 views
Too many queueable jobs added to the queue with unremovable queue [duplicate]
Im in desperate mode. The situation is following: there are three objects, Account, Publisher(child of account, master-detail), app(child of publisher, master-detail). Creating/updating app in a way ...
1 vote
1 answer
162 views
How to find out the web-to-lead limit?
As per the documentation, there is a 500 per 24 hour rolling limit of how many leads can be created via the web-to-lead functionality. Although the default lead creator is notified via email if this ...
2 votes
1 answer
343 views
How is HEAP_ALLOCATE related to actual heap size
Finest level log of a heap size limit exception log contains HEAP_ALLOCATE lines. Aggregating HEAP_ALLOCATE Byte values yields 2371721 bytes (2.37 MB). Right after that, the log is showing a ...
0 votes
1 answer
502 views
Limit string character limit to 250
I want to check the size of a string. If the size is greater than 255 characters, then reduce it to 252 and add three dots towards the end. For example. String1 = 'Suppose this is 255 characters'; ...
0 votes
1 answer
467 views
Flow Error ID: 64105330-17260 (738334238) organization has exceeded the maximum limit for this feature
I have a record-triggered flow (created or updated). The flow works fine when triggered by a single record, but gives the following error while multiple records are created/updated. Salesforce Output ...
0 votes
2 answers
119 views
Formula field syntax exceeds character length limit
I have the following formula field that uses nested if statements: IF ( AND ( NOT(ISBLANK(Last_SMS_Sent__c)), NOT(ISBLANK(MobilePhone)), NOT(ISBLANK(...
0 votes
1 answer
433 views
Aura Decimal Input value to match number field limit 16,2
I am trying to limit my input number field to exactly match the field values which are 16 digits to 2 decimal digits. Also I want to prevent user from putting something different into the field like a ...