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
SA_DevSA_Dev 

How to delete Account Share records?

Hi All,

 

I am trying to delete Account Share records using apex. Kindly le me know, if it is possible and how.

 

 

Note:- The is no AccountTeamMember record for those share record. we just need to delete AccountShare records.

 

 

 

Regards

Sunil Arora

David VPDavid VP

Query for the Share records and then issue a delete against them.

 

The Apex ref guide gives and example :

http://www.salesforce.com/us/developer/docs/apexcode/Content/apex_bulk_sharing_recalc.htm

 

Look closely at the code : in there you'll find deletes of the JobShare record.