In the client file, we can show success, info or warning pop-up messages using functions like
info("Some Info.");,warning("Action was cancelled");success("Success!");.
examples


Similarly, I want to show such messages from a PL/SQL procedure. Is there an already created PL/SQL procedure for this, or how can I do it?
For errors, I found the Error_Sys package. However, I also need a way to show success, info, and warning messages.
Error_SYS.Record_General
Thank you!