Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Forms Question -
Eric Veilleux - Ers wrote:
> Lorie Lewis wrote in message <688t0u$svh$1_at_marshall.shentel.net>...
> >In FORMS 3.0
> >
> >How can you have multiple messages without having the please acknowlege
> >message phrase come up and not do a separate message line? We have tried
to
> >set the message level but that does not seem to eliminate having to respond
> >to the message.
> >
> >Any help would be appreciated. Email response to shifletb_at_wlrfoods.com or
> >lewisl_at_wlrfoods.com
> >
> >Thanks,
> >Lorie Lewis Powell and Bob Shiflett
> >
>
> Sorry, but no. well, if you set the system.messagel_level to 25 you
> won't see forms messages at all, but you should still see you're own
> messages...
>
> Eric Veilleux
> eveilleu_at_ers.ca
Hi, in Froms4.5 you can write On-Error trigger and catch your error_number,
error_message and error_type, and then re-write the message adding
NO_ACKNOWLEDGE key word.
Perhaps, you can do something similar in Forms3.0
The code below helped me to solve the similar problem.
Good luck.
Declare
errcod number := error_code;
errtyp varchar2(3) := error_type;
errtxt varchar2(80) := error_text;
Begin
IF errcod = 40783 THEN
message('This function is not currently available',NO_ACKNOWLEDGE);
ELSE
message(errtyp||'-'||to_char(errcod)||': '||errtxt,NO_ACKNOWLEDGE);
END IF;
End;
Received on Sat Jan 03 1998 - 00:00:00 CST
![]() |
![]() |