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
BhavanaBhavana 

obtain who was the previous last modified user in salesforce

Hi,

We have accidentally made some record update in our org, but we now want to know who was the last modified user before we made the changes.
Is there a way to get this in Salesforce?

Thanks.
Adarsh.SharmaAdarsh.Sharma
Hi Bhavana,

 you'd need to view the history related list on the record itself.This is the only way.

Hope to have helped!

Don't forget to mark your thread as 'SOLVED' with the answer that best helps you.

let me know if any issue occured.

Regards.
 
BhavanaBhavana
Thanks Adarsh. We have already checked this option. Unfortunately history is not enabled on this object by our client.
Varun SinghVarun Singh
Hi Bhavna ,
Use the  Field Histort  tracking and enabled For filed for LastmodifiedBy  

I am Attaching Screenshots How can you do this
User-added image

User-added image

User-added image

User-added image


User-added image
 
Varun SinghVarun Singh
User-added image
User-added image

User-added image
User-added image
Varun SinghVarun Singh
User-added image

User-added image

Choose my answer is best if its works for you.
.
vijayabhaskarareddyvijayabhaskarareddy
hi@ Bhavana

Select Name, LastModifiedBy.Name, LastModifiedBy.email,LastModifiedBy.username FROM Account  where id='0017F000007SxHL'

I hope  it wil help u
regards,
vijay​
Varun SinghVarun Singh
Hi @bhavna

you can trasce records by day,hours,Minutes

try in developer concsole(query editor)
 
Select Id,name,LastModifiedBy.Name,SystemModStamp  from Account where SystemModStamp >= 2014-11-19T23:01:01Z

User-added image

You wiil get all records  with date time and  user name with record name

 
Joel Farinha 5Joel Farinha 5

Hello,
 

If someone deletes a report accidentaly is possible to know who did it?