SharePoint / sp-dev-docs

SharePoint & Viva Connections Developer Documentation
https://docs.microsoft.com/en-us/sharepoint/dev/
Creative Commons Attribution 4.0 International
1.23k stars 992 forks source link

Bulk Delete action performed in OneDrive is not triggering Events in SharePoint #9505

Open subramanyastar opened 5 months ago

subramanyastar commented 5 months ago

Target SharePoint environment

SharePoint Online

What SharePoint development model, framework, SDK or API is this about?

💥 SharePoint Framework

Developer environment

Windows

What browser(s) / client(s) have you tested

Additional environment details

Describe the bug / error

  1. We register the following events in SP.

    private readonly Receiver[] _receivers = { new Receiver() { Name = $"sync-{Program.AppName}-itemadd", SyncType = EventReceiverSynchronization.Synchronous, Type = EventReceiverType.ItemAdded }, new Receiver() { Name = $"sync-{Program.AppName}-itemupdate", SyncType = EventReceiverSynchronization.Synchronous, Type = EventReceiverType.ItemUpdated }, new Receiver() { Name = $"sync-{Program.AppName}-itemdelete", SyncType = EventReceiverSynchronization.Synchronous, Type = EventReceiverType.ItemDeleting }, new Receiver() { Name = $"sync-{Program.AppName}-itemmove", SyncType = EventReceiverSynchronization.Asynchronous, Type = EventReceiverType.ItemFileMoved } };

Steps to reproduce

1.We sync files/folder from SharePoint to OneDrive in our platform, which will eventually sync to a third party application 2.Perform bulk delete action in OneDrive 3.SharePoint is not triggering events for bulk delete

Expected behavior

SharePoint needs to trigger delete events when a bulk delete action is performed in OneDrive

ghost commented 5 months ago

Thank you for reporting this issue. We will be triaging your incoming issue as soon as possible.

subramanyastar commented 5 months ago

Do you have any update on the above reported issue?

subramanyastar commented 5 months ago

Support team, its been one week this ticket is rasied. Appreciate if you can look into it and provide an update at the earliest.

subramanyastar commented 4 months ago

Following up if you have any updates on the reported issue?