Is it possible to use an EXEC_SP in a deletion rule? I have a stored procedure that works directly in the database, and I would like this to kick off when the user deletes a record. Can't find a way to tie a process to the delete button (as I can for Save), and using it in deletion rules doesn't seem to work. I tried EXEC_SP 'MySP* and IF 1=1 THEN EXEC_SP 'MySP'. Sadly it doens't do anything. I've tried to find out how the deletion rules are supposed to work by reading the documentation, but I could'nt find much. This means that I might not understand how it's supposed to work, and I might have tried to use it the wrong way.
If anyone have done somthing similar I would be greatful if you would share 🙂