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
gvgv 

Recursive triggers

Hi 

I have a situation in which a @future method called by 2 trigger is called recursively and I get a ' @future cannot be called from a @future method'

 

Is there a way to avoid this. I learnt that static variables can be used but I dont know how to use it correctly  

 

Thanks

 

srisomsrisom

Assume you have a class with static:

 

public class myClass {

public static Boolean running= false;

}

 

The in your trigger you have code like:

 

   if (!myClass.running) {   // will run first time obviously !

   // call future method

   }

 

Your future method

@future

public String myFuturemethod(params) {

    myClass.running = true; // will stop the trigger calling the future again

    // code that fires trigger

 

 

I think that will do it !