EXIT in OnDelete trigger on a table

Hi In table 5200 I have added a CONFIRM, if the user reject I want to terminate the OnDelete trigger i.e the record is not being deleted. The problem is, that ‘EXIT’ doesn’t seem to have an effect?? Jens

you should use ERROR e.g. ERROR(‘Record not deleted’);

From a form, you can use EXIT(False) to skip the physical delete. As the above user states, you need raise an error to skip the physical delete from the table level.