Skip to main content
Barkha Jajoo (Infosys Pvt Ltd) a posé une question dans #Apex
Hi All, how can I get deleted date of a record from Recycle bin using SQL in apex?
2 réponses
  1. 6 janv. 2023, 07:16
    Hi Barkha,

    Yes you can retrive it if you know some details about the record like name or id .. etc. You just need to refer lastmodifieddate field like below.

     

    List<Account> acclist=[SELECT Id, Name,LastmodifiedDate FROM Account WHERE Name = '5777883422dad' ALL ROWS];

    system.debug('sass'+acclist);

    Let me know if you face any issues.

    If this solution helps, Please mark it as best answer.

    Thanks,

     
0/9000