开发者

create an eventreceiver for logging changes made by users in lists

开发者 https://www.devze.com 2022-12-21 14:07 出处:网络
I\'m working on a SharePoint publishing site and I want to \"log\" all the changes made by users in a SharePoint list.

I'm working on a SharePoint publishing site and I want to "log" all the changes made by users in a SharePoint list.

Some searches on the web guided me to the EventReceiver. But my EventReceiver must be generic and attached to all lists in the site collection. The "log list" has several columns like开发者_开发问答 the name of the list in which the event occurred, the name of the modified item, its old value and its new value.

Can someone guides me on how to achieve this?


There's already a provided answer for you on StackOverflow, hurrayy!!


It sounds possible. Create a class that inherits from SPItemEventReceiver and override ItemUpdating. You can use the following code to get the list:

    using (SPWeb web = properties.OpenWeb())
    {
        SPList list = web.Lists[properties.ListId];
    }

You can then use list to grab the list's title and URL. Next, compare each DictionaryEntry entry in properties.AfterProperties to the corresponding value in properties.ListItem to get your differences. Then save it to your log list. The trick would be automatically attaching your Event Receiver to each newly created list. Perhaps a timer job would work.

That said...

Before trying any of that, go to your site collection's Site Settings. Under Site Collection Administration, click Site collection audit settings. Under Specify the Document and Item events to audit, check Editing items. Only go with a custom solution if that does not give you what you need.


Would Version history not achieve the same functionality?

You can see what fields were changed by who and when. Though you would have to look at a list by list basis.

You can also access the version history information via the object model if you want to generate reports web part.

Otherwise using Janis Veinbergs link on how to attach a event handler to all lists and Rich Bennema method of getting the values from the updated item in a generic way, though I would use ItemUpdated as you don’t want to change the data that was updated only copy it to another location so there is no need to catch the data before it is submitted to the SharePoint database

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号