Save all modification operations for custom list

140 Views Asked by At

I have custom list in SharePoint 2013, there are many edit operation on each item for the list , I want to save all the operation’s, then I can extract to Excel file ( like report for these operations ).

My question is:

Can I do it with No-Code solution ? if yes , how?

If I need to do it with Code, what’s an appropriate solution to do it , using ( client-side object model (CSOM) , build an application by .Net ,etc.) ?

2

There are 2 best solutions below

0
On

You can try to use SharePoint audit logging functionality.

2
On

There are several ways to do that.

  1. use the inbuilt audit log functionality

  2. Create an event reciver in the code which will make an entry in the log file as per your requiremnet

  3. Create a workflow for the Item Added and Updated events and generate a log file for the same.