Skip to main content
Elise Ringo (Sefaria) a posé une question dans #Flow

I'm running into an error with one of my flows at the last step, which updates a boolean on the triggering record. The error message I'm receiving is:

 

This error occurred: CANNOT_EXECUTE_FLOW_TRIGGER: We can't save this record because the “Create or Update from JSON v2” process failed. Give your Salesforce admin these details. Limit Exceeded

You or your organization has exceeded the maximum limit for this feature. Error ID: 1134965525-256029 (1918713535)

 

The rest of the flow runs fine, and the error doesn't occur within any loops. I'm at a loss. Any tips?

9 réponses
  1. 17 oct. 2024, 12:56

    @Elise Ringo,

    To my knowledge, that API versioning below X value only matters for Flows, and not Apex triggers specifically. As such I would not imagine this is specifically causing your issue (I'm fairly certain that the transaction doesn't "regress" to the lowest API version of any piece of automation in the chain).

    That "Classy" group seems pretty large, so I have to imagine they are unlikely to roll out code that wouldn't work for their seemingly large user base. Have you verified that the Create or Update from JSON v2 runs without a ton of processing time, as does the parent Flow? It seems like the issue could be elsewhere, for instance if that parent Flow took 9.5 seconds to run and the ClassyContactTrigger took .6 seconds, the error message would read the same (that the Apex CPU time was exceeded on the ClassyContactTrigger), but in reality the process that took the most time was the trigger (not saying this is what is happening, but a possibility).

0/9000