1 respuesta
HI ,Salesforce imposes a governor limit that states no more than 50 future calls may be made in a single request. The governor limit is not about 51 records being called/processed inside a future call, it's about the number of future calls in a single request.Reference:https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_gov_limits.htmThe code you have posted is of the trigger and it has code written in handler class named CampaignMemberHandler (See https://salesforce.stackexchange.com/questions/140659/trigger-handler-whats-its-purpose)You might need to coordinate with your development team to improve your code logic to fix the issue. See below links for exampleshttps://salesforce.stackexchange.com/questions/77965/userinsertupdate-system-limitexception-too-many-future-calls-51?rq=1https://salesforce.stackexchange.com/questions/69645/error-subscriberupdatetrigger-system-limitexception-too-many-future-calls-51?rq=1https://salesforce.stackexchange.com/questions/149688/system-limitexception-too-many-future-calls-51Hope this helps you. Please mark this answer as best so that others facing the same issue will find this information useful. Thank you