Link to home
Start Free TrialLog in
Avatar of wasabi3689
wasabi3689Flag for United States of America

asked on

error message is too long, how to format it?

I am developing an oracle application (form) form version is 11.0.30
I have an error message popped up in  the toolbar and the message is just too long and I cannot read all, it's cut off. So, how can I make the message two line in the toolbar. I have the following code to catch error message (errbuf). How to automatically create second line in the toobar bar

IF retcode = 0 THEN
               message('a request created successfully');
      ELSE
               message(errbuf);
      END IF;

      EXCEPTION
            WHEN others THEN
         message(errbuf);
      
ASKER CERTIFIED SOLUTION
Avatar of Helena Marková
Helena Marková
Flag of Slovakia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial