This is a migrated thread and some comments may be shown as answers.

Change/Creation Tracking

1 Answer 74 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Ed
Top achievements
Rank 1
Ed asked on 17 Apr 2009, 07:34 PM
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


1 Answer, 1 is accepted

Sort by
0
PetarP
Telerik team
answered on 21 Apr 2009, 06:31 AM
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.
Tags
General Discussions
Asked by
Ed
Top achievements
Rank 1
Answers by
PetarP
Telerik team
Share this question
or