I am calling a routine from an UNDO-handler(with late binding) that may or may not exist. My problem is that if it does not exist, it “destroys” the UNDO chain. I have tried handling the error but it does not work.
If there is a possibility to check if a routine exist before actually calling it that would solve my problem.
Thank you!
I can’t believe I did not think of that!
I was so stuck in the fact that I can’t handle an error that occured in an undo handler that it did not occur to me to try the late binding call in a function.