function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Melissa Driscoll 14Melissa Driscoll 14 

Error Occurred: This error occurred when the flow tried to create records: CANNOT_INSERT_UPDATE_ACTIVATE_ENTITY: BQECaseTrigger: System.LimitException: Too many future calls: 51. You can look up ExceptionCode values in the SOAP API Developer Guide.

the full email was to many characters to paste here but is there away around this error?

Error element Create_Additional_Session_2 (FlowRecordCreate).
This error occurred when the flow tried to create records: CANNOT_INSERT_UPDATE_ACTIVATE_ENTITY: BQECaseTrigger: System.LimitException: Too many future calls: 51. You can look up ExceptionCode values in the SOAP API Developer Guide (https://developer.salesforce.com/docs/atlas.en-us.api.meta/api/sforce_api_calls_concepts_core_data_objects.htm" style="color:blue; text-decoration:underline).


Result
Failed to create record.

 
AnkaiahAnkaiah (Salesforce Developers) 
Hi Melissa,

You need to pass pass list of records to the future method instead of single record.

Refer the below link have solution for similar kind of issue.
https://salesforce.stackexchange.com/questions/149688/system-limitexception-too-many-future-calls-51

Thanks!!