Is it possible in OutSystems to implement different processing logic based on the specific Oracle error code when a database error occurs?
You can try this approach:When an error occurs at the database layer, an exception will be thrown up to the server action.In the server action, handle the exception within your exception flow.If the database provides an error code, it will be included in the ExceptionMessage.Based on the error code or the message text in ExceptionMessage, handle your logic accordingly.