The spaudit tag has no wiki summary.
0
votes
0answers
12 views
Adding/Modifying fields in the audit log excel report - Sharepoint 2010
I'm very new to Sharepoint development and currently working on Audit log reports in Sharepoint 2010.
Is it possible to add custom fields to the excel report that gets generated in Sharepoint 2010.For ...
1
vote
0answers
92 views
There's a way to sort the SPAuditQuery at Query construction level?
If we have
SPAuditQuery auditQuery = new SPAuditQuery(context.Site);
auditQuery.RestrictToListItem(item);
auditQuery.RowLimit = (uint)numberOfEvents;
auditQuery.SetRangeStart(startRange);
...
0
votes
1answer
156 views
Exception at Audit Custom Report
I've run into following issue when i try to execute Audit Custom Report on one of the site collections.
10/19/2012 09:30:02.03 w3wp.exe (0x211C) 0x12D8 SharePoint Foundation Runtime tkau ...
2
votes
1answer
270 views
Can I Access the SPAuditQuery from the JavaScript Class Library?
Or there's a SP2010 Built-in service to access Audit data?
[UPDATE]
Quick awnser, No, there's no way to access the SPAuditQuery from the SP JavaScript Class Library.
At the end I end up using a WCF ...
0
votes
2answers
197 views
Audit Logs - Document Library Folders are also counted
I have enabled Audit Logging for a MOSS 2007 site. This was done primarily to get reports for a document library which has folders and files inside them.
Everything works fine except that for every ...
1
vote
1answer
772 views
SP2010: Best Practices to use SPAudit
I would like to use the security audit log report of a site collection, and evaluate the entries e.g. each hour. The focuss lays on actions/events performed on the access rights on the site. Which ...