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
OxeneOxene 

Trigger on Task

Hi,

 

We have a scenario where we need to replicate a task created on an Account for the child accounts. So I have written a trigger on Task before update. Everything works fine till I create a recurring task. When I create a recurring task I get an error saying "Apex Task Trigger cannot handle batch operations on recurring tasks". Is there any work around to create recurring tasks?

VarunCVarunC

I'm kind of running into same issue of Updating Multiple events (including recurring events) in a Update DML statement, and I'm getting same error of "Apex Event trigger cannot handle batch operations on recurring events." ..

 

did you got any solutions for this?

airrick3airrick3

Same problem here, but with reoccurring events.

 

Doesn't anyone know of a work around or ideas for a work around

ctewellctewell

I have a painfully slow work around for recurring events.  I am using dataloader to update.  I set the batch size to 1.  There are 60,000 records to update at 9,000 per hour.  We just need to do this 1 time.