Skip to main content
Question

PLSQL procedure for show success, info, warning notifications

  • March 5, 2026
  • 2 replies
  • 23 views

Forum|alt.badge.img+4

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!

2 replies

Forum|alt.badge.img+17
  • Superhero (Partner)
  • March 5, 2026

Hi ​@pdollk 

 

Client_SYS.Add_Info or Client_SYS.Add_Warning but it has limited use.


Forum|alt.badge.img+4
  • Author
  • Do Gooder (Employee)
  • March 6, 2026

Hi ​@knepiosko ,

Thank you for your reply. What I want is to call a PL/SQL procedure through a BPA workflow and show an info or warning banner. I already tested this using a workflow, but nothing pops out.

In the technical documentation, it says that Client_SYS.Add_Info adds an information message to the stack. Client Information - Technical Documentation For IFS Cloud

Does this require additional client-side development to display the message as a notification or banner in the UI?