The changelog tag has no wiki summary.
2
votes
1answer
38 views
Custom BCS indexing connector and changelog inremental crawl: ChangedIdEnumerator method is not working
I am writing a custom indexing connector using changelog incremental crawl approach.
The full crawl is working perfectly. All atems are indexed and queryable.
The problem is that incremental crawl ...
0
votes
0answers
10 views
getting userprofile from changelog at a particular change time
After i modify a user profile in different time intervals in sharepoint, I am able to get the change collection containing what has changed. Let me say, I modifed the profile 2 times (04/04/2013 05:00 ...
0
votes
0answers
22 views
Getting user who has changed profile
I would like to get the user who has changed a user profile from the change log. For e.x. I edit my profile and change some fields, next the admin edits the profile and changes something else. I would ...
1
vote
2answers
166 views
User Profile Property : Latest change value for a single property
i want to log the changes done on a single Propety value change for ex : VOIP number. i should be able to log the recent change that was done on this property in a day for all the employees.
i am ...
2
votes
2answers
156 views
How to get changes from SP server 2010 in client object model?
Below is the code:
ClientContext context = new ClientContext("http://SPSite");
context.Credentials = new NetworkCredential("user", "pwd", "domain");
ChangeQuery cq = new ...
1
vote
1answer
325 views
Displaying SPChange data in visual webpart
Here is some code I've been playing with to display all items that have been changed in a web and all subwebs in a visual webpart (it grabs a heap of info and chucks it in a label):
protected ...
0
votes
0answers
62 views
How do you get the user who made a change from the SharePoint change log (e.g., SPList.GetChanges())?
The content database has the change log details in the EventCache table. This includes a "ModifiedBy" column which has user display names. However, when I run SPList.GetChanges() I get back an ...