Hi!
PL/SQL at the database (11g) server has 3 helpful functions in dbms_utility package:
dbms_utility.format_call_stack
dbms_utility.format_error_backtrace
dbms_utility.format_error_stack
Is there any similar function at Oracle Forms so I can log exceptions to find out where an error has occurred?
Sometimes is hard to reproduce the errors that happen in production in the development environment and log these
pieces of information help a lot.
I tried with trace but it's focused on timing and is not helpful to find errors.
Thanks!