Hello,
I used this function to show messages from PL/SQL Process before, in Apex 4.2:
apex_application.g_print_success_message := '<span style="color:green;">Success!</span>';
It does not work for me now in Apex 19.2 same way it used to work in 4.2
It only works on page load and message disappear in few seconds, which is not what I need.
I need a message to stay until user close it.
I found this method: apex.message.showPageSuccess( pMessage ) but it seems to be JavaScript. I need something to use in PL/SQL
What is correct way to show messages from on-page PL/SQL Process in Apex now?
Thanks!