Detecting when users change values
Is there a way to detect when users change values that are stored in the extender tables? For example, we need to pull new rows or changed rows in order to update an external application.
Thanks
Thanks
Answers
Well, there is a modified date in the EXT01100 table. So if you knew when the last time you ran this other application you could check that date field.
but otherwise, there isn’t anything built into extender that tracks this. you’d have to do the above or write your own sql db triggers to track the insert/changes.
patrick
but otherwise, there isn’t anything built into extender that tracks this. you’d have to do the above or write your own sql db triggers to track the insert/changes.
patrick
Sounds good. Thanks.