All Products
Demos
Pricing
Services
Blogs
Docs & Support
Search
Shopping cart
Login
Contact Us
Get A Free Trial
close mobile menu
Telerik Forums
/
Data Access Forum
/
General Discussions
/
Change/Creation Tracking
Cancel
Data Access
Resources
Buy
Try
Thread is closed for posting
Feed for this thread
2 posts, 0 answers
Ed
4 posts
Member since:
Apr 2009
Posted 17 Apr 2009
Link to this post
I have a requirement that key objects have some change tracking capabilities.
The current plan is to have the key objects have the following columns:
[version] int DEFAULT 1 NOT NULL, -- Current version number.
[versionUserID] uniqueidentifier NOT NULL, -- The user id of the last person to edit the record. (ASP.NET User ID)
[versionDate] datetime NOT NULL, -- The UTC Date Time the version was saved
[creatingUserID] uniqueidentifier NOT NULL, -- The user id of the person that created the record. (ASP.NET User ID)
[createdDate] datetime NOT NULL -- The UTC date/time the record was created.
I would then need to track when a property gets changed and record the values. I understand that I can quickly do this via the ITracking interface.
I could use some recommendations/advice since I am a OA newbie.
Thanks,
Ed
PetarP
Admin
754 posts
Posted 21 Apr 2009
Link to this post
Hello Ed,
I believe that our help topic on how to
Execute Business Logic When Tracking Changes
will provide useful information to you. If you face any difficulties please do not hesitate to contact us.
Best wishes,
PetarP
the Telerik team
Instantly find answers to your questions on the new
Telerik Support Portal
.
Check out the tips
for optimizing your support resource searches.
Back to Top