Hi Lascanary,
lastcanary (1/19/2012)
I would like to have an event at the Business Object level. I would not like to have a listview event so that my code resides only on Business Object
All the events are at the business object level, not the list view. If it is too hard to explain, I think that if you create a small sample application showing the issue it will be easier to help you find the correct event.
As Trent said, the Business Object Before/After Save/Add events are the logical places to write your code.
I was using Delphi AfterPost Event in my Delphi applications,
AfterPost event is fired after the data on the dataset is updated but before reflected to the database.
The Business Object BeforeSave would be the equivalent to Delphi AfterPost based on your statement above.