You need to sign in to do that
Don't have an account?

Intermediate calls during @future method execution
How system handles intemediate calls to the record those are a part of @future method?
Like if I have a record id passed in the future method and that record is actually deleted from the system before it is processed by @future method.
TIA
Sunny
Like if I have a record id passed in the future method and that record is actually deleted from the system before it is processed by @future method.
TIA
Sunny
If you update the record based on the record id you pass, it will be error.
So the best way is: in your future class, do a query based on your record id,
to have the latest data.