Is there any possibility to automatically execute some PL/SQL code right before stored procedure? Something like "on-before" execute?
Following business logic, every stored procedure should be executed only after some steps named "Login". This is not login to DB but to product, and we can not change this behavior, because of system is developed by another team. We should not forget to call that "login" every time.
Is there any solution to automate such thing in Oracle? Does packages have something like "initialization" section?