Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Event triggered on table update.

0 Likes
726

Is there a way to trigger an event when a database table have been updated ? I've been reading similar questions but nothing seems to work for me.

Is there a way to trigger an event when a database table have been updated ? I've been reading similar questions but nothing seems to work for me.

1 REPLY 1
Read only

DoanManhQuynh
Active Contributor
0 Likes
617

if table updated through table maintain, there is event to handle it:

https://wiki.scn.sap.com/wiki/display/ABAP/TABLE+MAINTENANCE+GENERATOR+and+ITS+EVENTS?original_fqdn=...

if you write update logic in a class, you can raise event as you wish:

https://help.sap.com/doc/abapdocu_751_index_htm/7.51/en-US/abapraise_event.htm

if you expect an event automatically raised after INSERT, UPDATE...statement, i can tell i don't see anything like that before.